From ab6c81021234b22fc0ad8d8bc729d5c4301759e7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 10 Dec 2011 20:10:28 +0000 Subject: [PATCH 01/70] remove unused function, found when syncing with bmesh, also remove/comment some unused defines --- .../editors/transform/transform_conversions.c | 34 +++---------------- source/blender/makesdna/DNA_curve_types.h | 2 +- source/blender/makesdna/DNA_meshdata_types.h | 12 +------ source/blender/makesdna/DNA_object_force.h | 4 +-- source/blender/makesdna/DNA_space_types.h | 19 +---------- source/blender/makesdna/DNA_texture_types.h | 2 +- 6 files changed, 10 insertions(+), 63 deletions(-) diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 5527ab0d331..802e6cd7374 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -294,7 +294,8 @@ static void createTransTexspace(TransInfo *t) /* ********************* edge (for crease) ***** */ -static void createTransEdge(TransInfo *t) { +static void createTransEdge(TransInfo *t) +{ EditMesh *em = ((Mesh *)t->obedit->data)->edit_mesh; TransData *td = NULL; EditEdge *eed; @@ -1919,8 +1920,8 @@ static void get_face_center(float *cent, EditMesh *em, EditVert *eve) } } -//way to overwrite what data is edited with transform -//static void VertsToTransData(TransData *td, EditVert *eve, BakeKey *key) +/* way to overwrite what data is edited with transform + * static void VertsToTransData(TransData *td, EditVert *eve, BakeKey *key) */ static void VertsToTransData(TransInfo *t, TransData *td, EditMesh *em, EditVert *eve) { td->flag = 0; @@ -1952,33 +1953,6 @@ static void VertsToTransData(TransInfo *t, TransData *td, EditMesh *em, EditVert } } -#if 0 -static void createTransBMeshVerts(TransInfo *t, BME_Mesh *bm, BME_TransData_Head *td) { - BME_Vert *v; - BME_TransData *vtd; - TransData *tob; - int i; - - tob = t->data = MEM_callocN(td->len*sizeof(TransData), "TransObData(Bevel tool)"); - - for (i=0,v=bm->verts.first;v;v=v->next) { - if ( (vtd = BME_get_transdata(td,v)) ) { - tob->loc = vtd->loc; - tob->val = &vtd->factor; - copy_v3_v3(tob->iloc,vtd->co); - copy_v3_v3(tob->center,vtd->org); - copy_v3_v3(tob->axismtx[0],vtd->vec); - tob->axismtx[1][0] = vtd->max ? *vtd->max : 0; - tob++; - i++; - } - } - /* since td is a memarena, it can hold more transdata than actual elements - * (i.e. we can't depend on td->len to determine the number of actual elements) */ - t->total = i; -} -#endif - static void createTransEditVerts(bContext *C, TransInfo *t) { ToolSettings *ts = CTX_data_tool_settings(C); diff --git a/source/blender/makesdna/DNA_curve_types.h b/source/blender/makesdna/DNA_curve_types.h index 8214a32e9fb..545829911e5 100644 --- a/source/blender/makesdna/DNA_curve_types.h +++ b/source/blender/makesdna/DNA_curve_types.h @@ -255,7 +255,7 @@ typedef struct Curve { #define CU_STRETCH 128 #define CU_OFFS_PATHDIST 256 #define CU_FAST 512 /* Font: no filling inside editmode */ -#define CU_RETOPO 1024 +/* #define CU_RETOPO 1024 */ /* DEPRECATED */ #define CU_DS_EXPAND 2048 #define CU_PATH_RADIUS 4096 /* make use of the path radius if this is enabled (default for new curves) */ #define CU_DEFORM_FILL 8192 /* fill 2d curve after deformation */ diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h index d772324cd72..66e1333bf66 100644 --- a/source/blender/makesdna/DNA_meshdata_types.h +++ b/source/blender/makesdna/DNA_meshdata_types.h @@ -94,7 +94,7 @@ typedef struct MSticky { typedef struct MSelect { int index; - int type; + int type; /* EDITVERT/EDITEDGE/EDITFACE */ } MSelect; typedef struct MTFace { @@ -196,11 +196,6 @@ typedef struct MRecast{ #define ME_SHARP (1<<9) /* only reason this flag remains a 'short' */ /* puno = vertexnormal (mface) */ -/* render assumes flips to be ordered like this */ -#define ME_FLIPV1 1 -#define ME_FLIPV2 2 -#define ME_FLIPV3 4 -#define ME_FLIPV4 8 #define ME_PROJXY 16 #define ME_PROJXZ 32 #define ME_PROJYZ 64 @@ -216,11 +211,6 @@ typedef struct MRecast{ #define ME_SMOOTH 1 #define ME_FACE_SEL 2 /* flag ME_HIDE==16 is used here too */ -/* mselect->type */ -#define ME_VSEl 0 -#define ME_ESEl 1 -#define ME_FSEL 2 - /* mtface->flag */ #define TF_SELECT 1 /* use MFace hide flag (after 2.43), should be able to reuse after 2.44 */ #define TF_ACTIVE 2 /* deprecated! */ diff --git a/source/blender/makesdna/DNA_object_force.h b/source/blender/makesdna/DNA_object_force.h index d45a8f83f76..61fc44d94ff 100644 --- a/source/blender/makesdna/DNA_object_force.h +++ b/source/blender/makesdna/DNA_object_force.h @@ -421,8 +421,8 @@ typedef struct SoftBody { #define OB_SB_SELF 512 #define OB_SB_FACECOLL 1024 #define OB_SB_EDGECOLL 2048 -#define OB_SB_COLLFINAL 4096 /* deprecated */ -#define OB_SB_BIG_UI 8192 +/* #define OB_SB_COLLFINAL 4096 */ /* deprecated */ +/* #define OB_SB_BIG_UI 8192 */ /* deprecated */ #define OB_SB_AERO_ANGLE 16384 /* sb->solverflags */ diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h index 6bcea71b5e9..29967dfc1bd 100644 --- a/source/blender/makesdna/DNA_space_types.h +++ b/source/blender/makesdna/DNA_space_types.h @@ -553,23 +553,6 @@ typedef struct SpaceClip { #define BUTS_CONSTRAINT 13 #define BUTS_EFFECTS 14 -/* sbuts->tab new (deprecated) */ -#define TAB_SHADING_MAT 0 -#define TAB_SHADING_TEX 1 -#define TAB_SHADING_RAD 2 -#define TAB_SHADING_WORLD 3 -#define TAB_SHADING_LAMP 4 - -#define TAB_OBJECT_OBJECT 0 -#define TAB_OBJECT_PHYSICS 1 -#define TAB_OBJECT_PARTICLE 2 - -#define TAB_SCENE_RENDER 0 -#define TAB_SCENE_WORLD 1 -#define TAB_SCENE_ANIM 2 -#define TAB_SCENE_SOUND 3 -#define TAB_SCENE_SEQUENCER 4 - /* buts->mainb new */ #define BCONTEXT_RENDER 0 #define BCONTEXT_SCENE 1 @@ -684,7 +667,7 @@ enum FileSortTypeE { /* Selection Flags in filesel: struct direntry, unsigned char selflag */ -#define ACTIVE_FILE (1<<1) +/* #define ACTIVE_FILE (1<<1) */ /* UNUSED */ #define HILITED_FILE (1<<2) #define SELECTED_FILE (1<<3) #define EDITING_FILE (1<<4) diff --git a/source/blender/makesdna/DNA_texture_types.h b/source/blender/makesdna/DNA_texture_types.h index cb545d2ee73..8f7db2a570f 100644 --- a/source/blender/makesdna/DNA_texture_types.h +++ b/source/blender/makesdna/DNA_texture_types.h @@ -510,7 +510,7 @@ typedef struct ColorMapping { #define MTEX_BLEND_SAT 11 #define MTEX_BLEND_VAL 12 #define MTEX_BLEND_COLOR 13 -#define MTEX_NUM_BLENDTYPES 14 +/* free for use */ #define MTEX_SOFT_LIGHT 15 #define MTEX_LIN_LIGHT 16 From 3998e2878bf1a762cd191235d23a7c48dcad8b54 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 11 Dec 2011 00:01:04 +0000 Subject: [PATCH 02/70] delta scale default was still left at 0.0 --- source/blender/makesrna/intern/rna_object.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index f7df7c3928e..f920cfb5aec 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -2072,6 +2072,8 @@ static void rna_def_object(BlenderRNA *brna) prop= RNA_def_property(srna, "delta_scale", PROP_FLOAT, PROP_XYZ); RNA_def_property_float_sdna(prop, NULL, "dscale"); + RNA_def_property_ui_range(prop, -FLT_MAX, FLT_MAX, 1, 3); + RNA_def_property_float_array_default(prop, default_scale); RNA_def_property_ui_text(prop, "Delta Scale", "Extra scaling added to the scale of the object"); RNA_def_property_update(prop, NC_OBJECT|ND_TRANSFORM, "rna_Object_internal_update"); From 9b762a51b1e3419771afa1e14247573ec0c23432 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 11 Dec 2011 00:53:37 +0000 Subject: [PATCH 03/70] missing config_freebsd.h from cmake file list --- extern/libmv/CMakeLists.txt | 58 ++++++++++++++++++++----------------- 1 file changed, 31 insertions(+), 27 deletions(-) diff --git a/extern/libmv/CMakeLists.txt b/extern/libmv/CMakeLists.txt index 0e74c41195b..76fb36709cb 100644 --- a/extern/libmv/CMakeLists.txt +++ b/extern/libmv/CMakeLists.txt @@ -148,23 +148,23 @@ if(WIN32) third_party/glog/src/vlog_is_on.cc third_party/glog/src/windows/port.cc - third_party/glog/src/utilities.h - third_party/glog/src/stacktrace_generic-inl.h + third_party/glog/src/config.h third_party/glog/src/stacktrace.h - third_party/glog/src/stacktrace_x86_64-inl.h - third_party/glog/src/base/googleinit.h - third_party/glog/src/base/mutex.h - third_party/glog/src/base/commandlineflags.h + third_party/glog/src/stacktrace_generic-inl.h + third_party/glog/src/stacktrace_libunwind-inl.h third_party/glog/src/stacktrace_powerpc-inl.h third_party/glog/src/stacktrace_x86-inl.h - third_party/glog/src/config.h - third_party/glog/src/stacktrace_libunwind-inl.h + third_party/glog/src/stacktrace_x86_64-inl.h + third_party/glog/src/utilities.h + third_party/glog/src/base/commandlineflags.h + third_party/glog/src/base/googleinit.h + third_party/glog/src/base/mutex.h + third_party/glog/src/windows/config.h + third_party/glog/src/windows/port.h + third_party/glog/src/windows/glog/log_severity.h + third_party/glog/src/windows/glog/logging.h third_party/glog/src/windows/glog/raw_logging.h third_party/glog/src/windows/glog/vlog_is_on.h - third_party/glog/src/windows/glog/logging.h - third_party/glog/src/windows/glog/log_severity.h - third_party/glog/src/windows/port.h - third_party/glog/src/windows/config.h ) list(APPEND INC @@ -184,7 +184,7 @@ if(WIN32) string(REPLACE "${FLAG}" "Od" CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO}") endforeach() endif() -else(WIN32) +else() list(APPEND SRC third_party/glog/src/utilities.cc third_party/glog/src/symbolize.cc @@ -194,25 +194,26 @@ else(WIN32) third_party/glog/src/demangle.cc third_party/glog/src/raw_logging.cc - third_party/glog/src/utilities.h - third_party/glog/src/stacktrace_generic-inl.h + third_party/glog/src/config.h + third_party/glog/src/config_freebsd.h + third_party/glog/src/config_linux.h third_party/glog/src/config_mac.h + third_party/glog/src/demangle.h third_party/glog/src/stacktrace.h - third_party/glog/src/stacktrace_x86_64-inl.h - third_party/glog/src/symbolize.h - third_party/glog/src/base/googleinit.h - third_party/glog/src/base/mutex.h - third_party/glog/src/base/commandlineflags.h + third_party/glog/src/stacktrace_generic-inl.h + third_party/glog/src/stacktrace_libunwind-inl.h third_party/glog/src/stacktrace_powerpc-inl.h third_party/glog/src/stacktrace_x86-inl.h - third_party/glog/src/config.h - third_party/glog/src/demangle.h - third_party/glog/src/stacktrace_libunwind-inl.h + third_party/glog/src/stacktrace_x86_64-inl.h + third_party/glog/src/symbolize.h + third_party/glog/src/utilities.h + third_party/glog/src/base/commandlineflags.h + third_party/glog/src/base/googleinit.h + third_party/glog/src/base/mutex.h + third_party/glog/src/glog/log_severity.h + third_party/glog/src/glog/logging.h third_party/glog/src/glog/raw_logging.h third_party/glog/src/glog/vlog_is_on.h - third_party/glog/src/glog/logging.h - third_party/glog/src/glog/log_severity.h - third_party/glog/src/config_linux.h ) list(APPEND INC @@ -220,6 +221,9 @@ else(WIN32) ) endif() -add_definitions(-DV3DLIB_ENABLE_SUITESPARSE -DGOOGLE_GLOG_DLL_DECL=) +add_definitions( + -DV3DLIB_ENABLE_SUITESPARSE + -DGOOGLE_GLOG_DLL_DECL= +) blender_add_lib(extern_libmv "${SRC}" "${INC}" "${INC_SYS}") From 2da7066caa23c9376f8260e96c08bf4bf13f2c72 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Sun, 11 Dec 2011 10:39:41 +0000 Subject: [PATCH 04/70] SCA: Scene Actuator text error copy+paste bug when creating the rnas --- source/blender/makesrna/intern/rna_actuator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_actuator.c b/source/blender/makesrna/intern/rna_actuator.c index 392aa6a7f5a..612c34d1c92 100644 --- a/source/blender/makesrna/intern/rna_actuator.c +++ b/source/blender/makesrna/intern/rna_actuator.c @@ -1404,7 +1404,7 @@ static void rna_def_scene_actuator(BlenderRNA *brna) prop= RNA_def_property(srna, "mode", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "type"); RNA_def_property_enum_items(prop, prop_type_items); - RNA_def_property_ui_text(prop, "Scene", ""); + RNA_def_property_ui_text(prop, "Mode", ""); RNA_def_property_update(prop, NC_LOGIC, NULL); //XXX filter only camera objects From 2a426d3eff56310617cdd7ebcf11ec8eb5fccaea Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sun, 11 Dec 2011 15:42:39 +0000 Subject: [PATCH 05/70] Fix #29574: Strange crash using translated Blender Description can be NULL for properties like enum items. Just added NULL-check here --- source/blender/makesrna/intern/rna_access.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c index a31984dfc29..02b1fa300fb 100644 --- a/source/blender/makesrna/intern/rna_access.c +++ b/source/blender/makesrna/intern/rna_access.c @@ -469,7 +469,7 @@ static const char *rna_ensure_property_description(PropertyRNA *prop) } #ifdef WITH_INTERNATIONAL - if((U.transopts&USER_DOTRANSLATE) && (U.transopts&USER_TR_TOOLTIPS)) + if(description && (U.transopts&USER_DOTRANSLATE) && (U.transopts&USER_TR_TOOLTIPS)) description= BLF_gettext(description); #endif From 357c3a14d981bc0862f2a5515d9b8469f55f78f8 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sun, 11 Dec 2011 15:48:15 +0000 Subject: [PATCH 06/70] Set lens settings to blender's camera on "Setup Tracking Scene" operator Helps in cases camera was removed from scene after solve before setting scene up. --- release/scripts/startup/bl_operators/clip.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/release/scripts/startup/bl_operators/clip.py b/release/scripts/startup/bl_operators/clip.py index 11d545849ef..061c66dc1fa 100644 --- a/release/scripts/startup/bl_operators/clip.py +++ b/release/scripts/startup/bl_operators/clip.py @@ -413,7 +413,12 @@ class CLIP_OT_setup_tracking_scene(Operator): @staticmethod def _setupCamera(context): + sc = context.space_data + clip = sc.clip + tracking = clip.tracking + camob = CLIP_OT_setup_tracking_scene._findOrCreateCamera(context) + cam = camob.data # Remove all constraints to be sure motion is fine camob.constraints.clear() @@ -423,6 +428,9 @@ class CLIP_OT_setup_tracking_scene(Operator): con.use_active_clip = True con.influence = 1.0 + cam.sensor_width = tracking.camera.sensor_width + cam.lens = tracking.camera.focal_length + @staticmethod def _setupViewport(context): sc = context.space_data From 4b66bd37485fe629d58cb66e582e21038ac99427 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 11 Dec 2011 17:10:46 +0000 Subject: [PATCH 07/70] fix for accessing the keying set menu as an enum rather than in int --- source/blender/editors/animation/keyingsets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/animation/keyingsets.c b/source/blender/editors/animation/keyingsets.c index 3b65e777200..682b40affc2 100644 --- a/source/blender/editors/animation/keyingsets.c +++ b/source/blender/editors/animation/keyingsets.c @@ -798,7 +798,7 @@ void ANIM_keying_sets_menu_setup (bContext *C, const char title[], const char op for (ks= builtin_keyingsets.first; ks; ks=ks->next, i--) { /* only show KeyingSet if context is suitable */ if (ANIM_keyingset_context_ok_poll(C, ks)) - uiItemEnumO_value(layout, ks->name, ICON_NONE, op_name, "type", i); + uiItemIntO(layout, ks->name, ICON_NONE, op_name, "type", i); } uiPupMenuEnd(C, pup); From c280002879174e3f0fe5eb91501cfa0cc407358f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 11 Dec 2011 19:23:02 +0000 Subject: [PATCH 08/70] fix [#29579] Redo brolken when jobs are running changes * undo now checks screen jobs only, was checking all jobs before so a material preview could make an undo fail. now this is only limiteds for render/fluid bake/bake. * the redo UI is now disabled when screen operators run. --- .../blender/editors/space_clip/clip_toolbar.c | 3 ++- .../editors/space_view3d/view3d_toolbar.c | 3 ++- source/blender/editors/util/undo.c | 17 ++++++++++++++--- source/blender/windowmanager/WM_api.h | 1 + .../blender/windowmanager/intern/wm_operators.c | 11 ++++++++++- 5 files changed, 29 insertions(+), 6 deletions(-) diff --git a/source/blender/editors/space_clip/clip_toolbar.c b/source/blender/editors/space_clip/clip_toolbar.c index fe09c5cd829..941c12df4aa 100644 --- a/source/blender/editors/space_clip/clip_toolbar.c +++ b/source/blender/editors/space_clip/clip_toolbar.c @@ -212,6 +212,7 @@ static void clip_panel_operator_redo_operator(const bContext *C, Panel *pa, wmOp } } +/* TODO de-duplicate redo panel functions - campbell */ static void clip_panel_operator_redo(const bContext *C, Panel *pa) { wmOperator *op= WM_operator_last_redo(C); @@ -224,7 +225,7 @@ static void clip_panel_operator_redo(const bContext *C, Panel *pa) block= uiLayoutGetBlock(pa->layout); - if(ED_undo_valid(C, op->type->name)==0) + if (!WM_operator_check_ui_enabled(C, op->type->name)) uiLayoutSetEnabled(pa->layout, 0); /* note, blockfunc is a default but->func, use Handle func to allow button callbacks too */ diff --git a/source/blender/editors/space_view3d/view3d_toolbar.c b/source/blender/editors/space_view3d/view3d_toolbar.c index 5d65202d7df..49b1b3f723e 100644 --- a/source/blender/editors/space_view3d/view3d_toolbar.c +++ b/source/blender/editors/space_view3d/view3d_toolbar.c @@ -96,6 +96,7 @@ static void view3d_panel_operator_redo_operator(const bContext *C, Panel *pa, wm } } +/* TODO de-duplicate redo panel functions - campbell */ static void view3d_panel_operator_redo(const bContext *C, Panel *pa) { wmOperator *op= WM_operator_last_redo(C); @@ -108,7 +109,7 @@ static void view3d_panel_operator_redo(const bContext *C, Panel *pa) block= uiLayoutGetBlock(pa->layout); - if(ED_undo_valid(C, op->type->name)==0) + if (!WM_operator_check_ui_enabled(C, op->type->name)) uiLayoutSetEnabled(pa->layout, 0); /* note, blockfunc is a default but->func, use Handle func to allow button callbacks too */ diff --git a/source/blender/editors/util/undo.c b/source/blender/editors/util/undo.c index f0055bd6008..3ec99ca7508 100644 --- a/source/blender/editors/util/undo.c +++ b/source/blender/editors/util/undo.c @@ -126,8 +126,8 @@ static int ed_undo_step(bContext *C, int step, const char *undoname) ScrArea *sa= CTX_wm_area(C); /* undo during jobs are running can easily lead to freeing data using by jobs, - or they can just lead to freezing job in some other cases */ - if(WM_jobs_has_running(CTX_wm_manager(C))) { + * or they can just lead to freezing job in some other cases */ + if (WM_jobs_test(CTX_wm_manager(C), CTX_data_scene(C))) { return OPERATOR_CANCELLED; } @@ -341,13 +341,24 @@ int ED_undo_operator_repeat(bContext *C, struct wmOperator *op) int ret= 0; if(op) { + wmWindowManager *wm= CTX_wm_manager(C); + struct Scene *scene= CTX_data_scene(C); + ARegion *ar= CTX_wm_region(C); ARegion *ar1= BKE_area_find_region_type(CTX_wm_area(C), RGN_TYPE_WINDOW); if(ar1) CTX_wm_region_set(C, ar1); - if(WM_operator_repeat_check(C, op) && WM_operator_poll(C, op->type)) { + if ( (WM_operator_repeat_check(C, op)) && + (WM_operator_poll(C, op->type)) && + /* note, undo/redo cant run if there are jobs active, + * check for screen jobs only so jobs like material/texture/world preview + * (which copy their data), wont stop redo, see [#29579]], + * + * note, - WM_operator_check_ui_enabled() jobs test _must_ stay in sync with this */ + (WM_jobs_test(wm, scene) == 0)) + { int retval; if (G.f & G_DEBUG) diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h index 2c0e22337c0..5bd95ac2106 100644 --- a/source/blender/windowmanager/WM_api.h +++ b/source/blender/windowmanager/WM_api.h @@ -206,6 +206,7 @@ void WM_operator_properties_gesture_border(struct wmOperatorType *ot, int exten void WM_operator_properties_gesture_straightline(struct wmOperatorType *ot, int cursor); void WM_operator_properties_select_all(struct wmOperatorType *ot); +int WM_operator_check_ui_enabled(const struct bContext *C, const char *idname); wmOperator *WM_operator_last_redo(const struct bContext *C); /* MOVE THIS SOMEWHERE ELSE */ diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index fa6521b3ec0..31d276fee01 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -907,6 +907,15 @@ int WM_operator_winactive(bContext *C) return 1; } +/* return FALSE, if the UI should be disabled */ +int WM_operator_check_ui_enabled(const bContext *C, const char *idname) +{ + wmWindowManager *wm= CTX_wm_manager(C); + Scene *scene= CTX_data_scene(C); + + return !(ED_undo_valid(C, idname)==0 || WM_jobs_test(wm, scene)); +} + wmOperator *WM_operator_last_redo(const bContext *C) { wmWindowManager *wm= CTX_wm_manager(C); @@ -940,7 +949,7 @@ static uiBlock *wm_block_create_redo(bContext *C, ARegion *ar, void *arg_op) uiBlockSetHandleFunc(block, ED_undo_operator_repeat_cb_evt, arg_op); layout= uiBlockLayout(block, UI_LAYOUT_VERTICAL, UI_LAYOUT_PANEL, 0, 0, width, UI_UNIT_Y, style); - if(ED_undo_valid(C, op->type->name)==0) + if (!WM_operator_check_ui_enabled(C, op->type->name)) uiLayoutSetEnabled(layout, 0); if(op->type->flag & OPTYPE_MACRO) { From b22405fa6f763d13feb2b28901ed8e1cf27034f2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 11 Dec 2011 19:48:56 +0000 Subject: [PATCH 09/70] fix for bpy.path.abspath() on windows when the library argument was set and its self a relative path too. --- release/scripts/modules/bpy/path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/modules/bpy/path.py b/release/scripts/modules/bpy/path.py index 4173d71b39c..98a3c81d65a 100644 --- a/release/scripts/modules/bpy/path.py +++ b/release/scripts/modules/bpy/path.py @@ -54,7 +54,7 @@ def abspath(path, start=None, library=None): """ if path.startswith("//"): if library: - start = abspath(_os.path.dirname(library.filepath)) + start = _os.path.dirname(abspath(library.filepath)) return _os.path.join(_os.path.dirname(_bpy.data.filepath) if start is None else start, path[2:], From 5600cf9dd92ebf7f256a5996db080c4721779b36 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 11 Dec 2011 21:23:29 +0000 Subject: [PATCH 10/70] not all filepaths had the FILE_PATH subtype, this means using non utf8 paths would give errors. --- release/scripts/startup/bl_operators/anim.py | 2 +- release/scripts/startup/bl_operators/image.py | 4 +--- release/scripts/startup/bl_operators/wm.py | 17 +++++------------ 3 files changed, 7 insertions(+), 16 deletions(-) diff --git a/release/scripts/startup/bl_operators/anim.py b/release/scripts/startup/bl_operators/anim.py index e1d33198142..01103aede0d 100644 --- a/release/scripts/startup/bl_operators/anim.py +++ b/release/scripts/startup/bl_operators/anim.py @@ -38,7 +38,7 @@ class ANIM_OT_keying_set_export(Operator): bl_label = "Export Keying Set..." filepath = StringProperty( - name="File Path", + subtype='FILE_PATH', ) filter_folder = BoolProperty( name="Filter folders", diff --git a/release/scripts/startup/bl_operators/image.py b/release/scripts/startup/bl_operators/image.py index c97f6eae6c7..55ad8a77d43 100644 --- a/release/scripts/startup/bl_operators/image.py +++ b/release/scripts/startup/bl_operators/image.py @@ -30,9 +30,7 @@ class EditExternally(Operator): bl_options = {'REGISTER'} filepath = StringProperty( - name="File Path", - description="Path to an image file", - maxlen=1024, + subtype='FILE_PATH', ) def _editor_guess(self, context): diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py index 89029e3af01..1da5e2ca381 100644 --- a/release/scripts/startup/bl_operators/wm.py +++ b/release/scripts/startup/bl_operators/wm.py @@ -748,8 +748,6 @@ class WM_OT_path_open(Operator): bl_label = "" filepath = StringProperty( - name="File Path", - maxlen=1024, subtype='FILE_PATH', ) @@ -1085,8 +1083,7 @@ class WM_OT_keyconfig_activate(Operator): bl_label = "Activate Keyconfig" filepath = StringProperty( - name="File Path", - maxlen=1024, + subtype='FILE_PATH', ) def execute(self, context): @@ -1116,8 +1113,7 @@ class WM_OT_appconfig_activate(Operator): bl_label = "Activate Application Configuration" filepath = StringProperty( - name="File Path", - maxlen=1024, + subtype='FILE_PATH', ) def execute(self, context): @@ -1203,8 +1199,7 @@ class WM_OT_keyconfig_import(Operator): bl_label = "Import Key Configuration..." filepath = StringProperty( - name="File Path", - description="Filepath to write file to", + subtype='FILE_PATH', default="keymap.py", ) filter_folder = BoolProperty( @@ -1270,8 +1265,7 @@ class WM_OT_keyconfig_export(Operator): bl_label = "Export Key Configuration..." filepath = StringProperty( - name="File Path", - description="Filepath to write file to", + subtype='FILE_PATH', default="keymap.py", ) filter_folder = BoolProperty( @@ -1513,8 +1507,7 @@ class WM_OT_addon_install(Operator): ) filepath = StringProperty( - name="File Path", - description="File path to write file to", + subtype='FILE_PATH', ) filter_folder = BoolProperty( name="Filter folders", From 4a364d23629c8dcc66f7a8478153cb4b86fa562f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 12 Dec 2011 03:25:10 +0000 Subject: [PATCH 11/70] fix for 2 crashes running operators in background mode. --- .../editors/interface/interface_handlers.c | 5 +++++ source/blender/editors/interface/interface_ops.c | 15 ++++++++++----- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c index aee23626787..6ebfddff5c1 100644 --- a/source/blender/editors/interface/interface_handlers.c +++ b/source/blender/editors/interface/interface_handlers.c @@ -5492,6 +5492,11 @@ wmOperator *uiContextActiveOperator(const struct bContext *C) ARegion *ar_ctx= CTX_wm_region(C); uiBlock *block; + /* background mode */ + if (ar_ctx == NULL) { + return NULL; + } + /* scan active regions ui */ for(block=ar_ctx->uiblocks.first; block; block=block->next) { if (block->ui_operator) { diff --git a/source/blender/editors/interface/interface_ops.c b/source/blender/editors/interface/interface_ops.c index 2a75c2a26c1..b50df29918d 100644 --- a/source/blender/editors/interface/interface_ops.c +++ b/source/blender/editors/interface/interface_ops.c @@ -458,11 +458,16 @@ static int reports_to_text_exec(bContext *C, wmOperator *UNUSED(op)) * - otherwise, up to info (which is what users normally see) */ str = BKE_reports_string(reports, (G.f & G_DEBUG)? RPT_DEBUG : RPT_INFO); - - write_text(txt, str); - MEM_freeN(str); - - return OPERATOR_FINISHED; + + if (str) { + write_text(txt, str); + MEM_freeN(str); + + return OPERATOR_FINISHED; + } + else { + return OPERATOR_CANCELLED; + } } static void UI_OT_reports_to_textblock(wmOperatorType *ot) From 237f6fc3b373a7ddea0b030a5715a2a84ba02f41 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 12 Dec 2011 14:52:00 +0000 Subject: [PATCH 12/70] Fix #29599: Side of Active tool not working in Faces/Edges Added warning message if there's no last selected vertex in the selection stack. --- source/blender/editors/mesh/editmesh_tools.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index df81f80ade8..04a24951659 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -7510,8 +7510,10 @@ static int select_axis_exec(bContext *C, wmOperator *op) EditSelection *ese = em->selected.last; - if(ese==NULL) + if(ese==NULL || ese->type!=EDITVERT) { + BKE_report(op->reports, RPT_WARNING, "This operator requires selected vertex"); return OPERATOR_CANCELLED; + } if(ese->type==EDITVERT) { EditVert *ev; From cd0608aff5958e6fc59aad10730255d3cac48622 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 12 Dec 2011 14:54:28 +0000 Subject: [PATCH 13/70] Fix #29600: Hook actions wrong Tool Shelf adjust Do not register hook_assign and hook_remove operators in the redo panel. --- source/blender/editors/object/object_hook.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/object/object_hook.c b/source/blender/editors/object/object_hook.c index 2a827091fde..773974d0cc0 100644 --- a/source/blender/editors/object/object_hook.c +++ b/source/blender/editors/object/object_hook.c @@ -608,7 +608,9 @@ void OBJECT_OT_hook_remove(wmOperatorType *ot) ot->poll= hook_op_edit_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + /* this operator removes modifier which isn't stored in local undo stack, + so redoing it from redo panel gives totally weird results */ + ot->flag= /*OPTYPE_REGISTER|*/OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "modifier", DummyRNA_NULL_items, 0, "Modifier", "Modifier number to remove"); @@ -794,7 +796,9 @@ void OBJECT_OT_hook_assign(wmOperatorType *ot) ot->poll= hook_op_edit_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + /* this operator changes data stored in modifier which doesn't get pushed to undo stack, + so redoing it from redo panel gives totally weird results */ + ot->flag= /*OPTYPE_REGISTER|*/OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "modifier", DummyRNA_NULL_items, 0, "Modifier", "Modifier number to assign to"); From 3e7ad0e2714009509004669d8da8ea8c71fa0d04 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 12 Dec 2011 18:06:36 +0000 Subject: [PATCH 14/70] fix [#29537] file/save crashes when target path isnt found bug was that uiPupMenuSaveOver(...) could run the WM API call function which freed the operator, within the low level invoke function which kept using the freed memory. Changed uiPupMenuSaveOver(...) to only show a popup so the caller needs to check if the file exists and should be immediately written (which was done everywhere except for blend saving anyway). * added note that operators invoke/exec funcs cant call WM_operator_call(...) on themselves, ends up using freed memory. * added BLI_is_file(path), checks the file exists and isnt a directory. --- source/blender/blenlib/BLI_fileops.h | 1 + source/blender/blenlib/intern/storage.c | 6 ++++++ .../editors/interface/interface_regions.c | 20 ++++++------------- source/blender/editors/space_file/file_ops.c | 6 +++--- .../windowmanager/intern/wm_event_system.c | 4 +++- .../windowmanager/intern/wm_operators.c | 15 +++++++++----- 6 files changed, 29 insertions(+), 23 deletions(-) diff --git a/source/blender/blenlib/BLI_fileops.h b/source/blender/blenlib/BLI_fileops.h index 712429716a6..2e8f1a5512e 100644 --- a/source/blender/blenlib/BLI_fileops.h +++ b/source/blender/blenlib/BLI_fileops.h @@ -56,6 +56,7 @@ int BLI_create_symlink(const char *path, const char *to); struct direntry; int BLI_is_dir(const char *path); +int BLI_is_file(const char *path); void BLI_dir_create_recursive(const char *dir); double BLI_dir_free_space(const char *dir); char *BLI_current_working_dir(char *dir, const int maxlen); diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c index 1ef254d355f..001b191155d 100644 --- a/source/blender/blenlib/intern/storage.c +++ b/source/blender/blenlib/intern/storage.c @@ -471,6 +471,12 @@ int BLI_is_dir(const char *file) return S_ISDIR(BLI_exists(file)); } +int BLI_is_file(const char *path) +{ + int mode= BLI_exists(path); + return (mode && !S_ISDIR(mode)); +} + LinkNode *BLI_file_read_as_lines(const char *name) { FILE *fp= fopen(name, "r"); diff --git a/source/blender/editors/interface/interface_regions.c b/source/blender/editors/interface/interface_regions.c index 58c3c0130b8..b89a80bb0d7 100644 --- a/source/blender/editors/interface/interface_regions.c +++ b/source/blender/editors/interface/interface_regions.c @@ -2481,22 +2481,14 @@ void uiPupMenuOkee(bContext *C, const char *opname, const char *str, ...) va_end(ap); } +/* note, only call this is the file exists, + * the case where the file does not exist so can be saved without a + * popup must be checked for already, since saving from here + * will free the operator which will break invoke(). + * The operator state for this is implicitly OPERATOR_RUNNING_MODAL */ void uiPupMenuSaveOver(bContext *C, wmOperator *op, const char *filename) { - size_t len= strlen(filename); - - if(len==0) - return; - - if(filename[len-1]=='/' || filename[len-1]=='\\') { - uiPupMenuError(C, "Cannot overwrite a directory"); - WM_operator_free(op); - return; - } - if(BLI_exists(filename)==0) - operator_cb(C, op, 1); - else - confirm_operator(C, op, "Save Over", filename); + confirm_operator(C, op, "Save Over", filename); } void uiPupMenuNotice(bContext *C, const char *str, ...) diff --git a/source/blender/editors/space_file/file_ops.c b/source/blender/editors/space_file/file_ops.c index 69c192b077b..daa2031bb5f 100644 --- a/source/blender/editors/space_file/file_ops.c +++ b/source/blender/editors/space_file/file_ops.c @@ -715,7 +715,7 @@ int file_draw_check_exists(SpaceFile *sfile) if(RNA_boolean_get(sfile->op->ptr, "check_existing")) { char filepath[FILE_MAX]; BLI_join_dirfile(filepath, sizeof(filepath), sfile->params->dir, sfile->params->file); - if(BLI_exists(filepath) && !BLI_is_dir(filepath)) { + if(BLI_is_file(filepath)) { return TRUE; } } @@ -1143,8 +1143,8 @@ int file_directory_exec(bContext *C, wmOperator *UNUSED(unused)) BLI_dir_create_recursive(sfile->params->dir); } - /* special case, user may have pasted a fulepath into the directory */ - if(BLI_exists(sfile->params->dir) && BLI_is_dir(sfile->params->dir) == 0) { + /* special case, user may have pasted a filepath into the directory */ + if(BLI_is_file(sfile->params->dir)) { char path[sizeof(sfile->params->dir)]; BLI_strncpy(path, sfile->params->dir, sizeof(path)); BLI_split_dirfile(path, sfile->params->dir, sfile->params->file, sizeof(sfile->params->dir), sizeof(sfile->params->file)); diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c index 9d8f68115cf..38f26897998 100644 --- a/source/blender/windowmanager/intern/wm_event_system.c +++ b/source/blender/windowmanager/intern/wm_event_system.c @@ -597,7 +597,9 @@ static int wm_operator_exec(bContext *C, wmOperator *op, int repeat) } -/* for running operators with frozen context (modal handlers, menus) */ +/* for running operators with frozen context (modal handlers, menus) + * + * warning: do not use this within an operator to call its self! [#29537] */ int WM_operator_call(bContext *C, wmOperator *op) { return wm_operator_exec(C, op, 0); diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index 31d276fee01..fb375f1d61f 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -2003,6 +2003,7 @@ static int wm_save_mainfile_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED( { char name[FILE_MAX]; int check_existing=1; + int ret; /* cancel if no active window */ if (CTX_wm_window(C) == NULL) @@ -2027,16 +2028,20 @@ static int wm_save_mainfile_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED( check_existing = 0; if (G.save_over) { - if (check_existing) + if (check_existing && BLI_exists(name)) { uiPupMenuSaveOver(C, op, name); - else { - wm_save_as_mainfile_exec(C, op); + ret= OPERATOR_RUNNING_MODAL; } - } else { + else { + ret= wm_save_as_mainfile_exec(C, op); + } + } + else { WM_event_add_fileselect(C, op); + ret= OPERATOR_RUNNING_MODAL; } - return OPERATOR_RUNNING_MODAL; + return ret; } static void WM_OT_save_mainfile(wmOperatorType *ot) From ba3c6d4d34e9f36f572b63efe7d8ed4914421726 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 12 Dec 2011 18:25:52 +0000 Subject: [PATCH 15/70] Fix #29603: Mode switch on linked objects Do not allow to enter to weight paint mode for proxied objects. --- source/blender/editors/sculpt_paint/paint_vertex.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c index fa791665eb8..52d1cf0b012 100644 --- a/source/blender/editors/sculpt_paint/paint_vertex.c +++ b/source/blender/editors/sculpt_paint/paint_vertex.c @@ -1763,10 +1763,13 @@ static int set_wpaint(bContext *C, wmOperator *UNUSED(op)) /* toggle */ /* for switching to/from mode */ static int paint_poll_test(bContext *C) { + Object *ob= CTX_data_active_object(C); if(CTX_data_edit_object(C)) return 0; if(CTX_data_active_object(C)==NULL) return 0; + if(!ob->data || ((ID *)ob->data)->lib) + return 0; return 1; } From 7abc66ba4232a1718d5eb67313f600ed5d77956f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 12 Dec 2011 18:52:18 +0000 Subject: [PATCH 16/70] add WM_operator_call_notest() for operators that need to call themselves within invoke functions without being freed. --- source/blender/windowmanager/WM_api.h | 1 + .../windowmanager/intern/wm_event_system.c | 22 +++++++++++++++++++ .../windowmanager/intern/wm_operators.c | 4 ++-- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h index 5bd95ac2106..61c3da36203 100644 --- a/source/blender/windowmanager/WM_api.h +++ b/source/blender/windowmanager/WM_api.h @@ -191,6 +191,7 @@ struct wmOperatorTypeMacro *WM_operatortype_macro_define(struct wmOperatorType * int WM_operator_poll (struct bContext *C, struct wmOperatorType *ot); int WM_operator_poll_context(struct bContext *C, struct wmOperatorType *ot, int context); int WM_operator_call (struct bContext *C, struct wmOperator *op); +int WM_operator_call_notest(struct bContext *C, struct wmOperator *op); int WM_operator_repeat (struct bContext *C, struct wmOperator *op); int WM_operator_repeat_check(const struct bContext *C, struct wmOperator *op); int WM_operator_name_call (struct bContext *C, const char *opstring, int context, struct PointerRNA *properties); diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c index 38f26897998..1593f14a76c 100644 --- a/source/blender/windowmanager/intern/wm_event_system.c +++ b/source/blender/windowmanager/intern/wm_event_system.c @@ -597,6 +597,20 @@ static int wm_operator_exec(bContext *C, wmOperator *op, int repeat) } +/* simply calls exec with basic checks */ +static int wm_operator_exec_notest(bContext *C, wmOperator *op) +{ + int retval= OPERATOR_CANCELLED; + + if(op==NULL || op->type==NULL || op->type->exec==NULL) + return retval; + + retval= op->type->exec(C, op); + OPERATOR_RETVAL_CHECK(retval); + + return retval; +} + /* for running operators with frozen context (modal handlers, menus) * * warning: do not use this within an operator to call its self! [#29537] */ @@ -605,6 +619,14 @@ int WM_operator_call(bContext *C, wmOperator *op) return wm_operator_exec(C, op, 0); } +/* this is intended to be used when an invoke operator wants to call exec on its self + * and is basically like running op->type->exec() directly, no poll checks no freeing, + * since we assume whoever called invokle will take care of that */ +int WM_operator_call_notest(bContext *C, wmOperator *op) +{ + return wm_operator_exec_notest(C, op); +} + /* do this operator again, put here so it can share above code */ int WM_operator_repeat(bContext *C, wmOperator *op) { diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index fb375f1d61f..004b71307df 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -802,7 +802,7 @@ int WM_operator_confirm(bContext *C, wmOperator *op, wmEvent *UNUSED(event)) int WM_operator_filesel(bContext *C, wmOperator *op, wmEvent *UNUSED(event)) { if (RNA_property_is_set(op->ptr, "filepath")) { - return WM_operator_call(C, op); + return WM_operator_call_notest(C, op); /* call exec direct */ } else { WM_event_add_fileselect(C, op); @@ -1637,7 +1637,7 @@ static void WM_OT_open_mainfile(wmOperatorType *ot) static int wm_link_append_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(event)) { if(RNA_property_is_set(op->ptr, "filepath")) { - return WM_operator_call(C, op); + return WM_operator_call_notest(C, op); } else { /* XXX TODO solve where to get last linked library from */ From 01478a3743f1d1fe3d641ff498953af027ca2e60 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 12 Dec 2011 20:57:10 +0000 Subject: [PATCH 17/70] correction to report message --- source/blender/editors/mesh/editmesh_tools.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index 04a24951659..2e5fc515330 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -7510,12 +7510,11 @@ static int select_axis_exec(bContext *C, wmOperator *op) EditSelection *ese = em->selected.last; - if(ese==NULL || ese->type!=EDITVERT) { - BKE_report(op->reports, RPT_WARNING, "This operator requires selected vertex"); + if (ese==NULL || ese->type != EDITVERT) { + BKE_report(op->reports, RPT_WARNING, "This operator requires an active vertex (last selected)"); return OPERATOR_CANCELLED; } - - if(ese->type==EDITVERT) { + else { EditVert *ev; EditVert *act_vert= (EditVert*)ese->data; float value= act_vert->co[axis]; From 94bc2b0cffd27dc74f428aee86ca9e2782a14e0a Mon Sep 17 00:00:00 2001 From: Jens Verwiebe Date: Mon, 12 Dec 2011 22:17:02 +0000 Subject: [PATCH 18/70] OSX: proper scons config and linking weak for jackOSX and errorhandling --- SConstruct | 12 +++++++++++- build_files/scons/config/darwin-config.py | 10 +++++----- intern/audaspace/jack/AUD_JackDevice.h | 4 ++++ 3 files changed, 20 insertions(+), 6 deletions(-) diff --git a/SConstruct b/SConstruct index 0bd7dc70446..d8db597d1c6 100644 --- a/SConstruct +++ b/SConstruct @@ -272,7 +272,7 @@ if 'blenderlite' in B.targets: if k not in B.arguments: env[k] = v -# Extended OSX_SDK and 3D_CONNEXION_CLIENT_LIBRARY detection for OSX +# Extended OSX_SDK and 3D_CONNEXION_CLIENT_LIBRARY and JAckOSX detection for OSX if env['OURPLATFORM']=='darwin': print B.bc.OKGREEN + "Detected Xcode version: -- " + B.bc.ENDC + env['XCODE_CUR_VER'][:9] + " --" print "Available " + env['MACOSX_SDK_CHECK'] @@ -291,6 +291,16 @@ if env['OURPLATFORM']=='darwin': else: env.Append(LINKFLAGS=['-Xlinker','-weak_framework','-Xlinker','3DconnexionClient']) + # for now, Mac builders must download and install the JackOSX framework + # necessary header file lives here when installed: + # /Library/Frameworks/Jackmp.framework/Versions/A/Headers/jack.h + if env['WITH_BF_JACK'] == 1: + if not os.path.exists('/Library/Frameworks/Jackmp.framework'): + print "JackOSX install not found, disabling WITH_BF_JACK" # avoid build errors ! + env['WITH_BF_JACK'] = 0 + else: + env.Append(LINKFLAGS=['-Xlinker','-weak_framework','-Xlinker','Jackmp']) + if env['WITH_BF_OPENMP'] == 1: if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'): env['CCFLAGS'].append('/openmp') diff --git a/build_files/scons/config/darwin-config.py b/build_files/scons/config/darwin-config.py index e0b8822ce36..b84890fbba3 100644 --- a/build_files/scons/config/darwin-config.py +++ b/build_files/scons/config/darwin-config.py @@ -148,12 +148,12 @@ BF_CXX = '/usr' WITH_BF_STATICCXX = False BF_CXX_LIB_STATIC = '${BF_CXX}/lib/libstdc++.a' -# TODO - set proper paths here (add precompiled to lib/ ? ) -WITH_BF_JACK = False -BF_JACK = '/usr' -BF_JACK_INC = '${BF_JACK}/include/jack' +# we use simply jack framework +WITH_BF_JACK = True +BF_JACK = '/Library/Frameworks/Jackmp.framework' +BF_JACK_INC = '${BF_JACK}/headers' BF_JACK_LIB = 'jack' -BF_JACK_LIBPATH = '${BF_JACK}/lib' +BF_JACK_LIBPATH = '${BF_JACK}' WITH_BF_SNDFILE = True BF_SNDFILE = LIBDIR + '/sndfile' diff --git a/intern/audaspace/jack/AUD_JackDevice.h b/intern/audaspace/jack/AUD_JackDevice.h index 3813685dbb6..6373d4f9d6d 100644 --- a/intern/audaspace/jack/AUD_JackDevice.h +++ b/intern/audaspace/jack/AUD_JackDevice.h @@ -36,6 +36,10 @@ #include +#if defined(__APPLE__) // always first include for jack weaklinking ! +#include +#endif + #include #include From 9e01abf7779a9272530d392767bdf9630544d519 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 12 Dec 2011 22:51:35 +0000 Subject: [PATCH 19/70] Cycles: require Experimental to be set to enable CUDA on cards with shader model lower than 1.3, since we're not officially supporting these. We're already not providing CUDA binaries for these, so better make it clear when compiling from source too. --- intern/cycles/blender/blender_sync.cpp | 6 +++--- intern/cycles/device/device.h | 2 +- intern/cycles/device/device_cuda.cpp | 24 +++++++++++++++++++++--- intern/cycles/device/device_multi.cpp | 4 ++-- intern/cycles/device/device_opencl.cpp | 2 +- intern/cycles/render/session.cpp | 2 +- intern/cycles/render/session.h | 3 +++ 7 files changed, 32 insertions(+), 11 deletions(-) diff --git a/intern/cycles/blender/blender_sync.cpp b/intern/cycles/blender/blender_sync.cpp index b66004bee58..4c8fe350b88 100644 --- a/intern/cycles/blender/blender_sync.cpp +++ b/intern/cycles/blender/blender_sync.cpp @@ -257,7 +257,7 @@ SessionParams BlenderSync::get_session_params(BL::Scene b_scene, bool background PointerRNA cscene = RNA_pointer_get(&b_scene.ptr, "cycles"); /* feature set */ - bool experimental = (RNA_enum_get(&cscene, "feature_set") != 0); + params.experimental = (RNA_enum_get(&cscene, "feature_set") != 0); /* device type */ params.device_type = DEVICE_CPU; @@ -266,14 +266,14 @@ SessionParams BlenderSync::get_session_params(BL::Scene b_scene, bool background vector types = Device::available_types(); DeviceType dtype; - if(!experimental || RNA_enum_get(&cscene, "gpu_type") == 0) + if(!params.experimental || RNA_enum_get(&cscene, "gpu_type") == 0) dtype = DEVICE_CUDA; else dtype = DEVICE_OPENCL; if(device_type_available(types, dtype)) params.device_type = dtype; - else if(experimental && device_type_available(types, DEVICE_OPENCL)) + else if(params.experimental && device_type_available(types, DEVICE_OPENCL)) params.device_type = DEVICE_OPENCL; else if(device_type_available(types, DEVICE_CUDA)) params.device_type = DEVICE_CUDA; diff --git a/intern/cycles/device/device.h b/intern/cycles/device/device.h index 5552e6ab7e2..5b87b11b6b8 100644 --- a/intern/cycles/device/device.h +++ b/intern/cycles/device/device.h @@ -112,7 +112,7 @@ public: virtual void *osl_memory() { return NULL; } /* load/compile kernels, must be called before adding tasks */ - virtual bool load_kernels() { return true; } + virtual bool load_kernels(bool experimental) { return true; } /* tasks */ virtual void task_add(DeviceTask& task) = 0; diff --git a/intern/cycles/device/device_cuda.cpp b/intern/cycles/device/device_cuda.cpp index 83d3f79d96f..eb0e20db355 100644 --- a/intern/cycles/device/device_cuda.cpp +++ b/intern/cycles/device/device_cuda.cpp @@ -214,6 +214,21 @@ public: return string("CUDA ") + deviceName; } + bool support_device(bool experimental) + { + if(!experimental) { + int major, minor; + cuDeviceComputeCapability(&major, &minor, cuDevId); + + if(major <= 1 && minor <= 2) { + cuda_error(string_printf("CUDA device supported only with shader model 1.3 or up, found %d.%d.", major, minor)); + return false; + } + } + + return true; + } + string compile_kernel() { /* compute cubin name */ @@ -236,11 +251,11 @@ public: if(path_exists(cubin)) return cubin; -#ifdef WITH_CUDA_BINARIES +#if defined(WITH_CUDA_BINARIES) && defined(_WIN32) if(major <= 1 && minor <= 2) cuda_error(string_printf("CUDA device supported only with shader model 1.3 or up, found %d.%d.", major, minor)); else - cuda_error("CUDA binary kernel for this graphics card not found."); + cuda_error("CUDA binary kernel for this graphics card shader model (%d.%d) not found.", major, minor); return ""; #else /* if not, find CUDA compiler */ @@ -283,12 +298,15 @@ public: #endif } - bool load_kernels() + bool load_kernels(bool experimental) { /* check if cuda init succeeded */ if(cuContext == 0) return false; + if(!support_device(experimental)) + return false; + /* get kernel */ string cubin = compile_kernel(); diff --git a/intern/cycles/device/device_multi.cpp b/intern/cycles/device/device_multi.cpp index 128c80ac396..fc5348ad168 100644 --- a/intern/cycles/device/device_multi.cpp +++ b/intern/cycles/device/device_multi.cpp @@ -132,10 +132,10 @@ public: return desc.str(); } - bool load_kernels() + bool load_kernels(bool experimental) { foreach(SubDevice& sub, devices) - if(!sub.device->load_kernels()) + if(!sub.device->load_kernels(experimental)) return false; return true; diff --git a/intern/cycles/device/device_opencl.cpp b/intern/cycles/device/device_opencl.cpp index d783ae6c174..8eaaebc6629 100644 --- a/intern/cycles/device/device_opencl.cpp +++ b/intern/cycles/device/device_opencl.cpp @@ -365,7 +365,7 @@ public: return md5.get_hex(); } - bool load_kernels() + bool load_kernels(bool experimental) { /* verify if device was initialized */ if(!device_initialized) { diff --git a/intern/cycles/render/session.cpp b/intern/cycles/render/session.cpp index 73ac033623d..42b4a2bb7e4 100644 --- a/intern/cycles/render/session.cpp +++ b/intern/cycles/render/session.cpp @@ -410,7 +410,7 @@ void Session::run() /* load kernels */ progress.set_status("Loading render kernels (may take a few minutes the first time)"); - if(!device->load_kernels()) { + if(!device->load_kernels(params.experimental)) { string message = device->error_message(); if(message == "") message = "Failed loading render kernel, see console for errors"; diff --git a/intern/cycles/render/session.h b/intern/cycles/render/session.h index 82c14227d03..ce7f420096a 100644 --- a/intern/cycles/render/session.h +++ b/intern/cycles/render/session.h @@ -43,6 +43,7 @@ public: string output_path; bool progressive; + bool experimental; int samples; int tile_size; int min_size; @@ -59,6 +60,7 @@ public: output_path = ""; progressive = false; + experimental = false; samples = INT_MAX; tile_size = 64; min_size = 64; @@ -75,6 +77,7 @@ public: && output_path == params.output_path /* && samples == params.samples */ && progressive == params.progressive + && experimental == params.experimental && tile_size == params.tile_size && min_size == params.min_size && threads == params.threads From 57a39c3a0c2d8e0c7fd714c5046e9b8c65f67fc3 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 13 Dec 2011 00:00:26 +0000 Subject: [PATCH 20/70] Fix #29594: cycles NaN values with window coordinates mapping. --- intern/cycles/util/util_transform.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/intern/cycles/util/util_transform.h b/intern/cycles/util/util_transform.h index 8f4e2b46616..4bf3759dd75 100644 --- a/intern/cycles/util/util_transform.h +++ b/intern/cycles/util/util_transform.h @@ -41,8 +41,9 @@ __device_inline float3 transform(const Transform *t, const float3 a) { float4 b = make_float4(a.x, a.y, a.z, 1.0f); float3 c = make_float3(dot(t->x, b), dot(t->y, b), dot(t->z, b)); + float w = dot(t->w, b); - return c/dot(t->w, b); + return (w != 0.0f)? c/w: make_float3(0.0f, 0.0f, 0.0f); } __device_inline float3 transform_direction(const Transform *t, const float3 a) From 5e586fa0ca07242c2c42f59174acfb17dbd94073 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 13 Dec 2011 09:54:48 +0000 Subject: [PATCH 21/70] Buildbot tweaks: - Enable SSE/SSe2 for 64bit builds - Build CUDA binaries --- build_files/buildbot/config/user-config-i686.py | 1 + build_files/buildbot/config/user-config-player-x86_64.py | 2 +- build_files/buildbot/config/user-config-x86_64.py | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build_files/buildbot/config/user-config-i686.py b/build_files/buildbot/config/user-config-i686.py index 34817ed0ae9..f7190b3dedb 100644 --- a/build_files/buildbot/config/user-config-i686.py +++ b/build_files/buildbot/config/user-config-i686.py @@ -96,6 +96,7 @@ WITH_BF_JACK = True # Cycles WITH_BF_CYCLES = True +WITH_BF_CYCLES_CUDA_BINARIES = True WITH_BF_OIIO = True WITH_BF_STATICOIIO = True diff --git a/build_files/buildbot/config/user-config-player-x86_64.py b/build_files/buildbot/config/user-config-player-x86_64.py index ad3839a2434..60c8060e78e 100644 --- a/build_files/buildbot/config/user-config-player-x86_64.py +++ b/build_files/buildbot/config/user-config-player-x86_64.py @@ -95,5 +95,5 @@ WITH_BF_OCEANSIM = True # Compilation and optimization BF_DEBUG = False -REL_CCFLAGS = ['-O2'] # C & C++ +REL_CCFLAGS = ['-O2', '-msse', '-msse2'] # C & C++ PLATFORM_LINKFLAGS = ['-L/home/sources/staticlibs/lib64'] diff --git a/build_files/buildbot/config/user-config-x86_64.py b/build_files/buildbot/config/user-config-x86_64.py index e090ddfbfd6..ac2342057fb 100644 --- a/build_files/buildbot/config/user-config-x86_64.py +++ b/build_files/buildbot/config/user-config-x86_64.py @@ -96,6 +96,7 @@ WITH_BF_JACK = True # Cycles WITH_BF_CYCLES = True +WITH_BF_CYCLES_CUDA_BINARIES = True WITH_BF_OIIO = True WITH_BF_STATICOIIO = True @@ -116,5 +117,5 @@ WITH_BF_OCEANSIM = True # Compilation and optimization BF_DEBUG = False -REL_CCFLAGS = ['-O2'] # C & C++ +REL_CCFLAGS = ['-O2', '-msse', '-msse2'] # C & C++ PLATFORM_LINKFLAGS = ['-L/home/sources/staticlibs/lib64'] From 8b6100aa26d20d0f8ded4df4550e35749dd803eb Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 13 Dec 2011 10:07:22 +0000 Subject: [PATCH 22/70] Fixed crash when tracking several tracks manually Crash was caused by non-threadsafe guarded allocatio which becomes threadsafe only when thread was started using BLI_threads module. --- source/blender/blenkernel/intern/tracking.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/blender/blenkernel/intern/tracking.c b/source/blender/blenkernel/intern/tracking.c index cacea980fe2..3543d361ab0 100644 --- a/source/blender/blenkernel/intern/tracking.c +++ b/source/blender/blenkernel/intern/tracking.c @@ -48,6 +48,7 @@ #include "BLI_ghash.h" #include "BLI_path_util.h" #include "BLI_string.h" +#include "BLI_threads.h" #include "BKE_global.h" #include "BKE_tracking.h" @@ -830,6 +831,8 @@ MovieTrackingContext *BKE_tracking_context_new(MovieClip *clip, MovieClipUser *u context->clip= clip; context->user= *user; + BLI_begin_threaded_malloc(); + return context; } @@ -856,6 +859,8 @@ static void track_context_free(void *customdata) void BKE_tracking_context_free(MovieTrackingContext *context) { + BLI_end_threaded_malloc(); + tracks_map_free(context->tracks_map, track_context_free); MEM_freeN(context); From ccd916e100389c6a047ecc35d19a152103ae23ba Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 13 Dec 2011 10:15:14 +0000 Subject: [PATCH 23/70] Small typo fix for tooltip of FModifier.blend_out Cheers to "Lockal" for finding this one! --- source/blender/makesrna/intern/rna_fcurve.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_fcurve.c b/source/blender/makesrna/intern/rna_fcurve.c index 56f1efe3fed..98c6b269b5f 100644 --- a/source/blender/makesrna/intern/rna_fcurve.c +++ b/source/blender/makesrna/intern/rna_fcurve.c @@ -1080,7 +1080,7 @@ static void rna_def_fmodifier(BlenderRNA *brna) prop= RNA_def_property(srna, "blend_out", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "blendout"); RNA_def_property_float_funcs(prop, NULL, NULL, "rna_FModifier_blending_range"); - RNA_def_property_ui_text(prop, "Blend Out", "Number of frames from start frame for influence to fade out"); + RNA_def_property_ui_text(prop, "Blend Out", "Number of frames from end frame for influence to fade out"); RNA_def_property_update(prop, NC_ANIMATION|ND_KEYFRAME_PROP, NULL); /* influence */ From 5466befb38cf4ba21e4cf97f0318aaa7f2b10938 Mon Sep 17 00:00:00 2001 From: Miika Hamalainen Date: Tue, 13 Dec 2011 10:17:17 +0000 Subject: [PATCH 24/70] Fix cycles compile for win32. --- intern/cycles/device/device_cuda.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern/cycles/device/device_cuda.cpp b/intern/cycles/device/device_cuda.cpp index eb0e20db355..177c90ba2df 100644 --- a/intern/cycles/device/device_cuda.cpp +++ b/intern/cycles/device/device_cuda.cpp @@ -255,7 +255,7 @@ public: if(major <= 1 && minor <= 2) cuda_error(string_printf("CUDA device supported only with shader model 1.3 or up, found %d.%d.", major, minor)); else - cuda_error("CUDA binary kernel for this graphics card shader model (%d.%d) not found.", major, minor); + cuda_error(string_printf("CUDA binary kernel for this graphics card shader model (%d.%d) not found.", major, minor)); return ""; #else /* if not, find CUDA compiler */ From 50d05a2a584d13883568fa9b79922e87cc6b9359 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 13 Dec 2011 12:51:40 +0000 Subject: [PATCH 25/70] Disallow link/append when in edit mode Linking changes active object which is pretty useful in general, but which totally confuses edit mode (i.e. it becoming not so obvious to leave from edit mode and inwalid tools in toolbar might be displayed) so disable link/append when in edit mode --- .../windowmanager/intern/wm_operators.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index 004b71307df..b6f59418f0a 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -1634,6 +1634,22 @@ static void WM_OT_open_mainfile(wmOperatorType *ot) /* **************** link/append *************** */ +int wm_link_append_poll(bContext *C) +{ + if(WM_operator_winactive(C)) { + /* linking changes active object which is pretty useful in general, + but which totally confuses edit mode (i.e. it becoming not so obvious + to leave from edit mode and inwalid tools in toolbar might be displayed) + so disable link/append when in edit mode (sergey) */ + if(CTX_data_edit_object(C)) + return 0; + + return 1; + } + + return 0; +} + static int wm_link_append_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(event)) { if(RNA_property_is_set(op->ptr, "filepath")) { @@ -1796,7 +1812,7 @@ static void WM_OT_link_append(wmOperatorType *ot) ot->invoke= wm_link_append_invoke; ot->exec= wm_link_append_exec; - ot->poll= WM_operator_winactive; + ot->poll= wm_link_append_poll; ot->flag |= OPTYPE_UNDO; From 6c90a192c60d836b314c24a15547de6acee6aac7 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 13 Dec 2011 16:37:52 +0000 Subject: [PATCH 26/70] Do not switch to safe malloc if tracking sequence Malloc is getting to be safe on sequence tracking by the jobs system, so no additional set up are necessary. This hopefully fixes crash on OSX with OpenMP enabled when compiling by older gcc --- source/blender/blenkernel/BKE_tracking.h | 2 +- source/blender/blenkernel/intern/tracking.c | 11 +++++++---- source/blender/editors/space_clip/tracking_ops.c | 4 ++-- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/source/blender/blenkernel/BKE_tracking.h b/source/blender/blenkernel/BKE_tracking.h index e55d40ebfe5..973922d4223 100644 --- a/source/blender/blenkernel/BKE_tracking.h +++ b/source/blender/blenkernel/BKE_tracking.h @@ -85,7 +85,7 @@ void BKE_tracking_projection_matrix(struct MovieTracking *tracking, int framenr, /* 2D tracking */ struct MovieTrackingContext *BKE_tracking_context_new(struct MovieClip *clip, struct MovieClipUser *user, - short backwards, short disable_failed); + short backwards, short disable_failed, short sequence); void BKE_tracking_context_free(struct MovieTrackingContext *context); void BKE_tracking_sync(struct MovieTrackingContext *context); void BKE_tracking_sync_user(struct MovieClipUser *user, struct MovieTrackingContext *context); diff --git a/source/blender/blenkernel/intern/tracking.c b/source/blender/blenkernel/intern/tracking.c index 3543d361ab0..e2b0e823905 100644 --- a/source/blender/blenkernel/intern/tracking.c +++ b/source/blender/blenkernel/intern/tracking.c @@ -736,11 +736,11 @@ typedef struct MovieTrackingContext { MovieTrackingSettings settings; TracksMap *tracks_map; - short backwards, disable_failed; + short backwards, disable_failed, sequence; int sync_frame; } MovieTrackingContext; -MovieTrackingContext *BKE_tracking_context_new(MovieClip *clip, MovieClipUser *user, short backwards, short disable_failed) +MovieTrackingContext *BKE_tracking_context_new(MovieClip *clip, MovieClipUser *user, short backwards, short disable_failed, short sequence) { MovieTrackingContext *context= MEM_callocN(sizeof(MovieTrackingContext), "trackingContext"); MovieTracking *tracking= &clip->tracking; @@ -753,6 +753,7 @@ MovieTrackingContext *BKE_tracking_context_new(MovieClip *clip, MovieClipUser *u context->disable_failed= disable_failed; context->sync_frame= user->framenr; context->first_time= 1; + context->sequence= sequence; /* count */ track= tracking->tracks.first; @@ -831,7 +832,8 @@ MovieTrackingContext *BKE_tracking_context_new(MovieClip *clip, MovieClipUser *u context->clip= clip; context->user= *user; - BLI_begin_threaded_malloc(); + if(!sequence) + BLI_begin_threaded_malloc(); return context; } @@ -859,7 +861,8 @@ static void track_context_free(void *customdata) void BKE_tracking_context_free(MovieTrackingContext *context) { - BLI_end_threaded_malloc(); + if(!context->sequence) + BLI_end_threaded_malloc(); tracks_map_free(context->tracks_map, track_context_free); diff --git a/source/blender/editors/space_clip/tracking_ops.c b/source/blender/editors/space_clip/tracking_ops.c index 3d004ab73da..b0e7f1b4def 100644 --- a/source/blender/editors/space_clip/tracking_ops.c +++ b/source/blender/editors/space_clip/tracking_ops.c @@ -1302,7 +1302,7 @@ static int track_markers_initjob(bContext *C, TrackMarkersJob *tmj, int backward else if(settings->speed==TRACKING_SPEED_DOUBLE) tmj->delay/= 2; } - tmj->context= BKE_tracking_context_new(clip, &sc->user, backwards, 1); + tmj->context= BKE_tracking_context_new(clip, &sc->user, backwards, 1, 1); clip->tracking_context= tmj->context; @@ -1413,7 +1413,7 @@ static int track_markers_exec(bContext *C, wmOperator *op) return OPERATOR_CANCELLED; /* do not disable tracks due to threshold when tracking frame-by-frame */ - context= BKE_tracking_context_new(clip, &sc->user, backwards, sequence); + context= BKE_tracking_context_new(clip, &sc->user, backwards, sequence, sequence); while(framenr != efra) { if(!BKE_tracking_next(context)) From 60eba4077332257e1adcd71f6c8baa68c828c783 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Tue, 13 Dec 2011 16:44:31 +0000 Subject: [PATCH 27/70] First Blender 2.61 commit! (Sneaked in quick tooltop fix too). A tag will happen after this commit. --- release/datafiles/splash.png | Bin 153933 -> 195415 bytes source/blender/blenkernel/BKE_blender.h | 8 +- source/blender/editors/datafiles/splash.png.c | 10920 +++++++++------- source/blender/editors/space_clip/clip_ops.c | 2 +- 4 files changed, 6113 insertions(+), 4817 deletions(-) diff --git a/release/datafiles/splash.png b/release/datafiles/splash.png index 5de3f868d1a2b4198be3231196815908d70abe74..852a389b390053e5683180257e64c3a39da8aaed 100644 GIT binary patch delta 194209 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

oUc7gSUJ5WI%!h>?kc`*ofBA@K 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íQ4Z%ekD}8DEzDiXp(w!DqzroeC#rd;_%U#23 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

`Z102Bqlg-4$d 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 diff --git a/source/blender/blenkernel/BKE_blender.h b/source/blender/blenkernel/BKE_blender.h index 1e679d6fe4b..3662a30e8ec 100644 --- a/source/blender/blenkernel/BKE_blender.h +++ b/source/blender/blenkernel/BKE_blender.h @@ -41,17 +41,17 @@ extern "C" { /* these lines are grep'd, watch out for our not-so-awesome regex * and keep comment above the defines. * Use STRINGIFY() rather than defining with quotes */ -#define BLENDER_VERSION 260 -#define BLENDER_SUBVERSION 8 +#define BLENDER_VERSION 261 +#define BLENDER_SUBVERSION 0 #define BLENDER_MINVERSION 250 #define BLENDER_MINSUBVERSION 0 /* used by packaging tools */ /* can be left blank, otherwise a,b,c... etc with no quotes */ -#define BLENDER_VERSION_CHAR a +#define BLENDER_VERSION_CHAR /* alpha/beta/rc/release, docs use this */ -#define BLENDER_VERSION_CYCLE rc +#define BLENDER_VERSION_CYCLE release extern char versionstr[]; /* from blender.c */ diff --git a/source/blender/editors/datafiles/splash.png.c b/source/blender/editors/datafiles/splash.png.c index 043507caf56..91e57d26f78 100644 --- a/source/blender/editors/datafiles/splash.png.c +++ b/source/blender/editors/datafiles/splash.png.c @@ -1,4817 +1,6113 @@ /* DataToC output of file */ -int datatoc_splash_png_size= 153933; +int datatoc_splash_png_size= 195415; char datatoc_splash_png[]= { -137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, - 72, 68, 82, 0, 0, 1,245, 0, 0, 1, 26, 8, 6, 0, 0, 0, 8, 90,206, 70, 0, 0, 10, 79,105, 67, 67, 80, 80,104,111,116, -111,115,104,111,112, 32, 73, 67, 67, 32,112,114,111,102,105,108,101, 0, 0,120,218,157, 83,103, 84, 83,233, 22, 61,247,222,244, - 66, 75,136,128,148, 75,111, 82, 21, 8, 32, 82, 66,139,128, 20,145, 38, 42, 33, 9, 16, 74,136, 33,161,217, 21, 81,193, 17, 69, - 69, 4, 27,200,160,136, 3,142,142,128,140, 21, 81, 44, 12,138, 10,216, 7,228, 33,162,142,131,163,136,138,202,251,225,123,163, -107,214,188,247,230,205,254,181,215, 62,231,172,243,157,179,207, 7,192, 8, 12,150, 72, 51, 81, 53,128, 12,169, 66, 30, 17,224, -131,199,196,198,225,228, 46, 64,129, 10, 36,112, 0, 16, 8,179,100, 33,115,253, 35, 1, 0,248,126, 60, 60, 43, 34,192, 7,190, - 0, 1,120,211, 11, 8, 0,192, 77,155,192, 48, 28,135,255, 15,234, 66,153, 92, 1,128,132, 1,192,116,145, 56, 75, 8,128, 20, - 0, 64,122,142, 66,166, 0, 64, 70, 1,128,157,152, 38, 83, 0,160, 4, 0, 96,203, 99, 98,227, 0, 80, 45, 0, 96, 39,127,230, -211, 0,128,157,248,153,123, 1, 0, 91,148, 33, 21, 1,160,145, 0, 32, 19,101,136, 68, 0,104, 59, 0,172,207, 86,138, 69, 0, - 88, 48, 0, 20,102, 75,196, 57, 0,216, 45, 0, 48, 73, 87,102, 72, 0,176,183, 0,192,206, 16, 11,178, 0, 8, 12, 0, 48, 81, -136,133, 41, 0, 4,123, 0, 96,200, 35, 35,120, 0,132,153, 0, 20, 70,242, 87, 60,241, 43,174, 16,231, 42, 0, 0,120,153,178, - 60,185, 36, 57, 69,129, 91, 8, 45,113, 7, 87, 87, 46, 30, 40,206, 73, 23, 43, 20, 54, 97, 2, 97,154, 64, 46,194,121,153, 25, - 50,129, 52, 15,224,243,204, 0, 0,160,145, 21, 17,224,131,243,253,120,206, 14,174,206,206, 54,142,182, 14, 95, 45,234,191, 6, -255, 34, 98, 98,227,254,229,207,171,112, 64, 0, 0,225,116,126,209,254, 44, 47,179, 26,128, 59, 6,128,109,254,162, 37,238, 4, -104, 94, 11,160,117,247,139,102,178, 15, 64,181, 0,160,233,218, 87,243,112,248,126, 60, 60, 69,161,144,185,217,217,229,228,228, -216, 74,196, 66, 91, 97,202, 87,125,254,103,194, 95,192, 87,253,108,249,126, 60,252,247,245,224,190,226, 36,129, 50, 93,129, 71, - 4,248,224,194,204,244, 76,165, 28,207,146, 9,132, 98,220,230,143, 71,252,183, 11,255,252, 29,211, 34,196, 73, 98,185, 88, 42, - 20,227, 81, 18,113,142, 68,154,140,243, 50,165, 34,137, 66,146, 41,197, 37,210,255,100,226,223, 44,251, 3, 62,223, 53, 0,176, -106, 62, 1,123,145, 45,168, 93, 99, 3,246, 75, 39, 16, 88,116,192,226,247, 0, 0,242,187,111,193,212, 40, 8, 3,128,104,131, -225,207,119,255,239, 63,253, 71,160, 37, 0,128,102, 73,146,113, 0, 0, 94, 68, 36, 46, 84,202,179, 63,199, 8, 0, 0, 68,160, -129, 42,176, 65, 27,244,193, 24, 44,192, 6, 28,193, 5,220,193, 11,252, 96, 54,132, 66, 36,196,194, 66, 16, 66, 10,100,128, 28, -114, 96, 41,172,130, 66, 40,134,205,176, 29, 42, 96, 47,212, 64, 29, 52,192, 81,104,134,147,112, 14, 46,194, 85,184, 14, 61,112, - 15,250, 97, 8,158,193, 40,188,129, 9, 4, 65,200, 8, 19, 97, 33,218,136, 1, 98,138, 88, 35,142, 8, 23,153,133,248, 33,193, - 72, 4, 18,139, 36, 32,201,136, 20, 81, 34, 75,145, 53, 72, 49, 82,138, 84, 32, 85, 72, 29,242, 61,114, 2, 57,135, 92, 70,186, -145, 59,200, 0, 50,130,252,134,188, 71, 49,148,129,178, 81, 61,212, 12,181, 67,185,168, 55, 26,132, 70,162, 11,208,100,116, 49, -154,143, 22,160,155,208,114,180, 26, 61,140, 54,161,231,208,171,104, 15,218,143, 62, 67,199, 48,192,232, 24, 7, 51,196,108, 48, - 46,198,195, 66,177, 56, 44, 9,147, 99,203,177, 34,172, 12,171,198, 26,176, 86,172, 3,187,137,245, 99,207,177,119, 4, 18,129, - 69,192, 9, 54, 4,119, 66, 32, 97, 30, 65, 72, 88, 76, 88, 78,216, 72,168, 32, 28, 36, 52, 17,218, 9, 55, 9, 3,132, 81,194, - 39, 34,147,168, 75,180, 38,186, 17,249,196, 24, 98, 50, 49,135, 88, 72, 44, 35,214, 18,143, 19, 47, 16,123,136, 67,196, 55, 36, - 18,137, 67, 50, 39,185,144, 2, 73,177,164, 84,210, 18,210, 70,210,110, 82, 35,233, 44,169,155, 52, 72, 26, 35,147,201,218,100, -107,178, 7, 57,148, 44, 32, 43,200,133,228,157,228,195,228, 51,228, 27,228, 33,242, 91, 10,157, 98, 64,113,164,248, 83,226, 40, - 82,202,106, 74, 25,229, 16,229, 52,229, 6,101,152, 50, 65, 85,163,154, 82,221,168,161, 84, 17, 53,143, 90, 66,173,161,182, 82, -175, 81,135,168, 19, 52,117,154, 57,205,131, 22, 73, 75,165,173,162,149,211, 26,104, 23,104,247,105,175,232,116,186, 17,221,149, - 30, 78,151,208, 87,210,203,233, 71,232,151,232, 3,244,119, 12, 13,134, 21,131,199,136,103, 40, 25,155, 24, 7, 24,103, 25,119, - 24,175,152, 76,166, 25,211,139, 25,199, 84, 48, 55, 49,235,152,231,153, 15,153,111, 85, 88, 42,182, 42,124, 21,145,202, 10,149, - 74,149, 38,149, 27, 42, 47, 84,169,170,166,170,222,170, 11, 85,243, 85,203, 84,143,169, 94, 83,125,174, 70, 85, 51, 83,227,169, - 9,212,150,171, 85,170,157, 80,235, 83, 27, 83,103,169, 59,168,135,170,103,168,111, 84, 63,164,126, 89,253,137, 6, 89,195, 76, -195, 79, 67,164, 81,160,177, 95,227,188,198, 32, 11, 99, 25,179,120, 44, 33,107, 13,171,134,117,129, 53,196, 38,177,205,217,124, -118, 42,187,152,253, 29,187,139, 61,170,169,161, 57, 67, 51, 74, 51, 87,179, 82,243,148,102, 63, 7,227,152,113,248,156,116, 78, - 9,231, 40,167,151,243,126,138,222, 20,239, 41,226, 41, 27,166, 52, 76,185, 49,101, 92,107,170,150,151,150, 88,171, 72,171, 81, -171, 71,235,189, 54,174,237,167,157,166,189, 69,187, 89,251,129, 14, 65,199, 74, 39, 92, 39, 71,103,143,206, 5,157,231, 83,217, - 83,221,167, 10,167, 22, 77, 61, 58,245,174, 46,170,107,165, 27,161,187, 68,119,191,110,167,238,152,158,190, 94,128,158, 76,111, -167,222,121,189,231,250, 28,125, 47,253, 84,253,109,250,167,245, 71, 12, 88, 6,179, 12, 36, 6,219, 12,206, 24, 60,197, 53,113, -111, 60, 29, 47,199,219,241, 81, 67, 93,195, 64, 67,165, 97,149, 97,151,225,132,145,185,209, 60,163,213, 70,141, 70, 15,140,105, -198, 92,227, 36,227,109,198,109,198,163, 38, 6, 38, 33, 38, 75, 77,234, 77,238,154, 82, 77,185,166, 41,166, 59, 76, 59, 76,199, -205,204,205,162,205,214,153, 53,155, 61, 49,215, 50,231,155,231,155,215,155,223,183, 96, 90,120, 90, 44,182,168,182,184,101, 73, -178,228, 90,166, 89,238,182,188,110,133, 90, 57, 89,165, 88, 85, 90, 93,179, 70,173,157,173, 37,214,187,173,187,167, 17,167,185, - 78,147, 78,171,158,214,103,195,176,241,182,201,182,169,183, 25,176,229,216, 6,219,174,182,109,182,125, 97,103, 98, 23,103,183, -197,174,195,238,147,189,147,125,186,125,141,253, 61, 7, 13,135,217, 14,171, 29, 90, 29,126,115,180,114, 20, 58, 86, 58,222,154, -206,156,238, 63,125,197,244,150,233, 47,103, 88,207, 16,207,216, 51,227,182, 19,203, 41,196,105,157, 83,155,211, 71,103, 23,103, -185,115,131,243,136,139,137, 75,130,203, 46,151, 62, 46,155, 27,198,221,200,189,228, 74,116,245,113, 93,225,122,210,245,157,155, -179,155,194,237,168,219,175,238, 54,238,105,238,135,220,159,204, 52,159, 41,158, 89, 51,115,208,195,200, 67,224, 81,229,209, 63, - 11,159,149, 48,107,223,172,126, 79, 67, 79,129,103,181,231, 35, 47, 99, 47,145, 87,173,215,176,183,165,119,170,247, 97,239, 23, - 62,246, 62,114,159,227, 62,227, 60, 55,222, 50,222, 89, 95,204, 55,192,183,200,183,203, 79,195,111,158, 95,133,223, 67,127, 35, -255,100,255,122,255,209, 0,167,128, 37, 1,103, 3,137,129, 65,129, 91, 2,251,248,122,124, 33,191,142, 63, 58,219,101,246,178, -217,237, 65,140,160,185, 65, 21, 65,143,130,173,130,229,193,173, 33,104,200,236,144,173, 33,247,231,152,206,145,206,105, 14,133, - 80,126,232,214,208, 7, 97,230, 97,139,195,126, 12, 39,133,135,133, 87,134, 63,142,112,136, 88, 26,209, 49,151, 53,119,209,220, - 67,115,223, 68,250, 68,150, 68,222,155,103, 49, 79, 57,175, 45, 74, 53, 42, 62,170, 46,106, 60,218, 55,186, 52,186, 63,198, 46, -102, 89,204,213, 88,157, 88, 73,108, 75, 28, 57, 46, 42,174, 54,110,108,190,223,252,237,243,135,226,157,226, 11,227,123, 23,152, - 47,200, 93,112,121,161,206,194,244,133,167, 22,169, 46, 18, 44, 58,150, 64, 76,136, 78, 56,148,240, 65, 16, 42,168, 22,140, 37, -242, 19,119, 37,142, 10,121,194, 29,194,103, 34, 47,209, 54,209,136,216, 67, 92, 42, 30, 78,242, 72, 42, 77,122,146,236,145,188, - 53,121, 36,197, 51,165, 44,229,185,132, 39,169,144,188, 76, 13, 76,221,155, 58,158, 22,154,118, 32,109, 50, 61, 58,189, 49,131, -146,145,144,113, 66,170, 33, 77,147,182,103,234,103,230,102,118,203,172,101,133,178,254,197,110,139,183, 47, 30,149, 7,201,107, -179,144,172, 5, 89, 45, 10,182, 66,166,232, 84, 90, 40,215, 42, 7,178,103,101, 87,102,191,205,137,202, 57,150,171,158, 43,205, -237,204,179,202,219,144, 55,156,239,159,255,237, 18,194, 18,225,146,182,165,134, 75, 87, 45, 29, 88,230,189,172,106, 57,178, 60, -113,121,219, 10,227, 21, 5, 43,134, 86, 6,172, 60,184,138,182, 42,109,213, 79,171,237, 87,151,174,126,189, 38,122, 77,107,129, - 94,193,202,130,193,181, 1,107,235, 11, 85, 10,229,133,125,235,220,215,237, 93, 79, 88, 47, 89,223,181, 97,250,134,157, 27, 62, - 21,137,138,174, 20,219, 23,151, 21,127,216, 40,220,120,229, 27,135,111,202,191,153,220,148,180,169,171,196,185,100,207,102,210, -102,233,230,222, 45,158, 91, 14,150,170,151,230,151, 14,110, 13,217,218,180, 13,223, 86,180,237,245,246, 69,219, 47,151,205, 40, -219,187,131,182, 67,185,163,191, 60,184,188,101,167,201,206,205, 59, 63, 84,164, 84,244, 84,250, 84, 54,238,210,221,181, 97,215, -248,110,209,238, 27,123,188,246, 52,236,213,219, 91,188,247,253, 62,201,190,219, 85, 1, 85, 77,213,102,213,101,251, 73,251,179, -247, 63,174,137,170,233,248,150,251,109, 93,173, 78,109,113,237,199, 3,210, 3,253, 7, 35, 14,182,215,185,212,213, 29,210, 61, - 84, 82,143,214, 43,235, 71, 14,199, 31,190,254,157,239,119, 45, 13, 54, 13, 85,141,156,198,226, 35,112, 68,121,228,233,247, 9, -223,247, 30, 13, 58,218,118,140,123,172,225, 7,211, 31,118, 29,103, 29, 47,106, 66,154,242,154, 70,155, 83,154,251, 91, 98, 91, -186, 79,204, 62,209,214,234,222,122,252, 71,219, 31, 15,156, 52, 60, 89,121, 74,243, 84,201,105,218,233,130,211,147,103,242,207, -140,157,149,157,125,126, 46,249,220, 96,219,162,182,123,231, 99,206,223,106, 15,111,239,186, 16,116,225,210, 69,255,139,231, 59, -188, 59,206, 92,242,184,116,242,178,219,229, 19, 87,184, 87,154,175, 58, 95,109,234,116,234, 60,254,147,211, 79,199,187,156,187, -154,174,185, 92,107,185,238,122,189,181,123,102,247,233, 27,158, 55,206,221,244,189,121,241, 22,255,214,213,158, 57, 61,221,189, -243,122,111,247,197,247,245,223, 22,221,126,114, 39,253,206,203,187,217,119, 39,238,173,188, 79,188, 95,244, 64,237, 65,217, 67, -221,135,213, 63, 91,254,220,216,239,220,127,106,192,119,160,243,209,220, 71,247, 6,133,131,207,254,145,245,143, 15, 67, 5,143, -153,143,203,134, 13,134,235,158, 56, 62, 57, 57,226, 63,114,253,233,252,167, 67,207,100,207, 38,158, 23,254,162,254,203,174, 23, - 22, 47,126,248,213,235,215,206,209,152,209,161,151,242,151,147,191,109,124,165,253,234,192,235, 25,175,219,198,194,198, 30,190, -201,120, 51, 49, 94,244, 86,251,237,193,119,220,119, 29,239,163,223, 15, 79,228,124, 32,127, 40,255,104,249,177,245, 83,208,167, -251,147, 25,147,147,255, 4, 3,152,243,252, 99, 51, 45,219, 0, 0, 0, 6, 98, 75, 71, 68, 0,255, 0,255, 0,255,160,189,167, -147, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 11, 19, 0, 0, 11, 19, 1, 0,154,156, 24, 0, 0, 0, 7,116, 73, 77, 69, 7,219, - 10, 22, 15, 51, 58,178,212,173, 17, 0, 0, 32, 0, 73, 68, 65, 84,120,218,236,189,121,156, 37, 87,113,231,251,141,147,121,239, -173,170,222,212,173,181, 27,180, 34, 9,196, 14, 18,200, 24, 44,132, 45,192, 24, 12,198, 70,178,135,231,225,217,248, 33, 25,175, -216,243,108,225,231,121,243,120,111, 60, 6,236, 97,140,205, 48, 6,153,241, 54, 99,123, 64, 48,131, 23, 48, 12, 98,192,128,109, -176,145, 49,139, 88,165, 86, 75,141,164,222,171,107,187, 91,230, 57,241,254,200,147,153, 39,243,230,189, 85,213,221,146,104,145, -241,249, 84,247,173, 91,185,231, 57, 39, 34,126,241,139, 8,104,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165, -149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, - 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149,141,139, 60, - 28, 39,213,247,191,250,229, 36,250,115, 24,186, 24,125, 7, 63,240,135,255, 85, 4,109, 95, 71, 43,173,180,210, 74, 43,173,156, - 70, 74, 93,255,252, 85,207, 99,121,237,127,113,124, 77,217,182, 3,206,218, 37,164,227, 63,101,188,124,147,220,112,235,106,251, - 74, 90,105,165,149, 86, 90,105,229,196,196, 60,228,103,188,127,239, 22, 30,216, 7,135,239, 27,112,207,215,250,236,219,219, 71, -163, 87, 50,183,243, 11,250,129,215, 92,222,190,146, 86, 90,105,165,149, 86, 90, 57, 93,148,250, 79,126,234, 3,204,155, 95, 97, -107,119, 1, 33,230,240,253,142,189, 95,233, 51, 76, 46,194,117,190,162, 31,120,205, 15,181,175,165,149, 86, 90,105,165,149, 86, - 54, 47,242,112,157, 88,223,246, 29, 47, 98,152,190,151,145,246,176,233,128,238,156,225,130, 75, 99,118,157,217,197,142,222,138, -233,190, 94,190,239,109,163,246, 21,181,210, 74, 43,173,180,210,202,183,184, 82, 7,208,119, 94,249, 24,214,162, 15, 50,180,151, -147,216, 62, 81, 4,123, 46, 54,156,183,103, 14,151,124,158, 72,127, 64, 94,244,142,125,167,203,195, 84,213, 43,129,157,254,215, -189, 34,178,247,145, 60,120,190,221,238,183,149, 86, 90,105,165, 85,234,235, 41,134,223,124,242, 22, 58,157,255, 74, 95, 95, 74, -162, 67,112,112,238,249,194,238, 11,230,137,100, 76, 39,125,137,188,240,157, 31, 57,197,202,232, 18,224,146, 13,110,190, 40, 34, -183,111,240,184, 31, 1,174,243,191,190, 94, 68,222,252, 8, 87,234,223, 86,247,123,138,158,153,136, 72,155,233,209, 74, 43,173, - 60, 40, 18,159,244, 34,245,177,107, 99,246,119,123,141,127, 92, 25, 11,219,186, 10,231,194,185,192,210,176, 52, 34,122,219,132, -206, 72, 96, 23,232,209,215,113,239,189, 61, 86,221, 11,112,140, 89, 60, 2, 11, 91,135,156,113,118, 7,219,253,159,250,161,159, -249, 55,244,190,244, 70,121,222,199,211, 83,116,223,215, 3,111,218,196, 66, 12,112, 43,112,155,136,220,210, 14,155, 71,132,114, - 53, 34,226,106,223, 69,192,213,192,119, 3,207, 0,158, 64, 54,114,123,192,113,224, 30,224,211,192,159,138,200,223,159,144, 21, -189, 1,133,174,170,207, 4,110, 0,158, 7, 60, 10, 56, 19,232,251,243,127, 1,248, 36,240, 65, 17,217,191,206,113,186,192, 43, -128, 87,250,123,217,237,239, 99, 31,240,126,224, 15, 69,228, 64, 59, 26, 90,105,165,245,212,209, 55,188,193,176,253,163, 55, 98, -229, 87, 17, 57,139, 40,114,136,128, 49,217,143, 8, 68,145, 96, 12, 68,254,119, 99,192,248,239, 68, 64,242,109,141, 37,138, 70, -168,108, 65,130,109,163, 8, 28,134,185,110, 7,177,127,195, 60,215,203, 53,111, 59,124, 10, 22,244,155, 55,163,212,107,114, 27, -112,131,136, 44,182,158,250, 35,231,126, 85,245,119,129, 31, 4,206,217,224, 46, 31, 7, 94, 45, 34,119,159,194,107,120, 20,240, -118,224,101, 27,216,252,163, 34,114,221,140, 99, 61, 22,248, 51,224,105, 51,142,113, 28,184, 73, 68,222,211, 46,133,173,180,242, -237,238,169,159,241,209,159,199,153,255, 64,170, 99, 34, 81, 32, 66, 4,148,236, 39,251, 44, 24, 5,167, 96, 36,251,131,113, 16, - 73,182,129, 81, 48, 10,162, 17,206,118,136, 34,245,238,140, 63,142,130, 49,142,196,142,136,204,115,233,235, 87,245,163, 63,253, -124,249,158,183,255,211, 41,126, 14,183,205,248,219,117, 13,191,127, 68, 85,159,223,164,216, 91, 57,109,229, 39, 27,190, 59,234, -189,227,227,222, 91,126, 34, 16,249,191, 93, 11,124, 86, 85,159, 43, 34, 95, 58, 5, 10,253, 9,222, 80, 56, 43,248,122, 9,216, - 11, 44, 2,219,128,203,129, 29, 27, 56,214, 5,192,223,120,148, 33,151,251,128,187,252,125, 60,222, 27,244,103, 0,239,246, 33, -129,119,183, 67,160,149, 86,190, 77,149,186,190, 1,131,211,215,210, 79, 20,155, 36, 88, 7, 34,146,249,253,146, 45, 23, 94,111, -131,208, 79,236, 2,145,193,156,121, 14,196, 49, 88, 69, 50, 15, 61, 83,242, 98,192,154, 76,193, 27, 87,122,234,226,189,124, 99, -144,212,208,137,162, 93, 66,231,118,253,232,207,189,150,239,254,237,119,158,170,216,164,136, 60,127,157, 69, 50,135,235,243, 56, -252,149,192,141, 64, 27, 67,126,228,201, 87,129, 63, 0,254, 74, 68,190, 92, 27, 7,187,128,127, 5,220,236,149,251, 46,224, 47, - 85,245, 10, 17, 25,158,132, 66,191, 24,248,104,160,208, 63, 7,252,138,247,198,211,218,182, 79, 4, 94, 14, 92, 60,229, 88, 2, -188, 47, 80,232,139,192,171,129, 63,207,231,139,170, 62, 14,248, 35,224,153,126,155, 63, 80,213,207,137,200,215,219,215,223, 74, - 43,167,183,156, 80,158,186,188, 1, 71,172,111, 65, 70, 2,201, 22, 98,183,133,200, 46,100, 63,233, 66,241,217,164, 11,184,225, - 28, 54, 65,122, 11,153,178,118, 14,156,203,227,212, 94,198,224,134,224, 6,160, 67, 96,148,253,174, 99,191,189,162,234, 72,172, -131, 84, 83,180,243,187,124,244, 23,223,163,127,241,134,133,135,226, 33,137,200,173,192,243,253, 2,153,203,245,237,240, 57,125, -197,199,155, 67,249, 12,240,125, 34,114,133,136,252, 70, 93,161,251,113,112, 76, 68,126, 21,120, 85,240,245, 69, 83,188,252,205, -200,239, 5, 74,248,221,192, 51, 68,228,195,117,133,238,175,225, 75, 34,242,111, 69,228,213, 83,142,245,195,192, 85,254,179, 5, - 94, 36, 34,239, 15, 13, 96, 17,249, 42, 25,111,224, 78,255,213, 60,240,255,182,163,162,149, 86, 78,127, 57, 41,246,187,254,135, -167, 95, 74,196,165, 56, 35,136, 11, 72, 71,198,127,182, 35,186,243,207, 90, 28,206,189,105,161, 51,143,131, 44, 78,110, 76,118, -234,180,143, 68,130, 57,255, 41,152,179, 47, 69,182,159,135,204,109,135,116,132, 91, 59,140,174, 60,128, 59,252,117, 72,135, 16, -205,131, 8,189, 94,119,132, 26,161, 23,119,137,220,237, 36,230,185,242,194,127,191,182,201, 5,189, 18, 83, 23, 17,217,224,126, -239,244, 30,122,227,126, 39, 18, 99, 86,213,157,222,243,207,229,246, 83, 1,235,215, 24,254, 39,148,110,182,222, 49,190, 85,238, -183,118,157,183, 63, 20, 97, 17, 85,253, 16,240, 66,255,235, 39, 69,228,154, 19, 60,206,191, 0,254,212,255,122, 7,240, 52, 17, - 73, 78,226,186,254,137, 50,142,254, 14, 17,121,237,140,109, 95, 2,252,165,255,213, 1,151,136,200, 61,237,178,216, 74, 43,167, -175,156, 20,251, 93,126,241,159,238, 12,172,253,201, 69,227,143, 94,250,100,134,233,143,110,141,148, 52,143,171, 15,135,232,104, - 13,236, 26,209,229,223, 69,124,213, 43,137, 46,254,142,169, 16,130, 30,219, 71,122,215, 71,177,247,252, 45, 18,117, 25,141,211, - 30, 18, 33,214,209, 93,232, 94,249,137, 59,246,175,234,103,111,236,202, 85,183, 36, 15,193,243, 58, 37,121,216, 94,177,221,232, -189,253, 43, 27,254,190, 23,184, 5,184,101,154,130, 82,213, 55, 5,251,222, 42, 34,183, 4,199,189,145, 90,202,158, 63,230,155, - 55,194,222, 87,213, 27,201, 32,230, 75, 54,123, 93, 15,198,253,206,184,215,155,253,113,119, 6,155,223,230, 81,149, 7, 91,254, - 34, 80,234, 87,156,196,113,126, 46,248,124,243, 73, 42,244, 11,169, 18,227,222,177,206, 46, 31, 4,238, 5, 46,240, 83,238,101, -192,239,180,203, 98, 43,173,156,190,242,160,149,137,213,223,127,254, 77,172, 14, 63,207,208, 94,145, 90,139, 14,215,112,199, 14, -225, 22, 15,160,227,101,186, 47,252,101,122,215,255, 78,163, 66,175, 24, 14,187, 46,162,243,140,159,160,115,245,107, 51,226,156, - 88, 64, 65, 96,220, 79,184,230,105, 23,193,226,194,255,243, 16, 61,175, 80,121,156,144, 55,168,170,215,145, 17,150,222,212,164, -224,188, 92,226,255,254, 89, 95,224,165, 73,174,244, 94,242,117,192, 78,191,221, 71,168,198,254,235,199,124,167, 71, 27,166, 42, - 95, 85,125, 15,240,206, 25,199,120, 19, 25, 81,112,231, 67,120,191, 77,247,122,151, 87,234, 59, 31,166,185,115, 52,248,188,253, - 4,199,194,227,129,124, 2, 28, 2, 62,116,146,215,244,125,193,231, 7, 68,228,243, 51,231, 86,150,210,247,225, 41,251,183,210, - 74, 43,223,110,158,122,227, 66,245,206,151, 44,224, 6,111, 99, 77, 95,141,149, 17,154, 88, 93, 93, 93, 32, 77, 64, 20,233, 64, -239,229,111, 36,122,226,139,139,125,150, 7, 35, 62,252,207,251,248,240,231,247,113,108,117, 64, 39, 18,174,216,179,139,151, 94, -117, 41, 79,127,204,110, 0,162,243,159,129,116,183,145,124,234, 45,208,141, 51,197,110,132,116,117, 68, 60, 23,255,170,126,236, - 23,254, 80,158,247, 91,119, 62,104, 70, 74,166,196,174,175,121,132,155, 61,198,245, 64, 61,125,232,118,127,172,220, 72, 8,189, -217, 75, 40,153,246,183,175, 99,108,188, 39, 80,196,183,250,227,230, 10, 49,188,238, 27, 85,117,239, 20,168,252, 77, 76,114, 5, -194, 99,229,215,118,101,195,125, 60, 84,247,187,211, 27, 47, 59, 3,227,234,246, 96,255,135, 74, 46, 10, 62,159,104,154,101,136, - 40,124, 66, 68,236, 73, 94,211, 83,130,207,159,222,224, 62,127, 7,188,166, 97,255, 86, 90,105,229,219, 93,169,235, 59,174,185, -140,209,234, 7, 73,205,165, 40, 3,108, 95, 73, 70, 25,217, 45,142,144,116,141,206,179,255,143,138, 66,255,244, 55, 30,224,151, -254,228,147,236, 61,178,194, 92,175, 67, 39, 54, 24,133,207,239, 63,198,123,255,254,171,124,255, 85,143,225,255,190,254,187, 88, -232,117, 48,231, 62,142,248,137, 55,144,126,238, 15, 96,219,185,128,102,113,122, 21, 72,163,223, 6, 94,252, 32, 42,244,186,247, -122,203, 38,143,113,137, 63, 70, 46,123,201,114,132,235,198,193,155,189,119,251, 30,175,184,242,115, 95, 53,227,240, 55, 7, 10, -248,166, 58,132,237,207,253,158, 64,121,222,172,170, 21,168,219, 67,238, 55,214,148,239, 13,181, 56,122,120,109,215, 61, 76,247, -123,115,112,188,215,123, 18, 99,253, 93, 61, 20,242,138,224,243,103, 78,240, 24,207, 8, 62,127,193, 95,255,153,192, 79,248,227, - 63, 6, 88,240, 70,195, 63,145, 65,254,255,101, 6, 68,255,184,224,243, 93, 27,188,134,112,187,243, 84,117,187,136, 44,183, 75, - 99, 43,173,124,155, 43,117,125,251,115,190,151,129,190,159,148, 24, 99,251,164, 99,176,105, 22, 71,143, 4,212, 34,103,157, 79, -252,204,146, 56,252,141, 3,139,188,234,237, 31,230,208, 32,101, 97,203, 60, 73, 20,209,233, 68,116, 35, 33,210, 46, 98, 83,222, -247,153, 59,137,140,225,215, 94,121,109,230,177, 95,250, 60,236,215, 62, 4,118, 21,226,249,140,234,103,109, 74, 36,215,233, 39, - 94,183, 91,174,121,235, 3, 39,160,180,111,158,241,231,235, 26, 20, 88,147,114, 90, 79,222, 89,243, 46,175,154, 22,151, 22,145, -219, 84,245,249,129, 71,122,165,170,222,184, 78, 60,252, 54, 17,185, 97,202,241,246,170,234,235,253,241,114,111,247, 58,111, 4, -212,149,101,174, 48, 27,243,240,131,107,251,236,195,120,191,123,167, 29,239, 33, 34,201, 61,191,102,116,252,217, 9, 30,234,201, -193,231, 7, 84,245, 5,100,169,102,231,213,182, 59,223,255,188, 12,248, 85, 85,253, 97, 17,105,122,254, 23, 6,159,239,221,224, - 53,220,219,128, 64,124,161, 93, 26, 91,105,229,244,148,147,142,169,235, 59,175,236,232,111, 63,231,205,140,244,175, 73, 0,147, -142,176,195, 44,246,221, 49, 16, 11,196,130, 50, 38,186,252, 26,100,107, 89, 91,227,245,127,242,183,124,227,155, 75, 44,165,194, - 3,171, 41,251,151,198,220,121,100,192,222, 35, 3, 22,135, 22,141, 99,118,236,216,202,251,255,225, 27,220,246,121, 95,184, 43, -138,137, 46,185, 6, 93, 62,236, 43,213, 41, 24,113,116,162, 46,137,188,236, 4,111,227, 77, 51,126,174,171,121,231,207,223,108, -169, 88, 31, 3, 14,143,243,250,245,148,143,135,159,111,169, 25, 23,179,228,166,117,142,119, 27, 37, 76, 77,136, 58,120,152, 60, - 68, 33,222, 60,235,250, 26,174,237,161,190,223, 55, 63, 92,133,127, 84,117, 71, 13,129,248, 28, 89, 94,248,137,200,153,193,231, -167,120, 79, 60, 87,232,135,200,202,193,254, 61,176, 92,123,111,127,163,170,223,217,112,188,109,193,231,165, 13, 94,195,210,140, - 99,180,210, 74, 43,223, 78, 74, 93,127,231,234, 71,179,210,249, 91,134,246,151, 73,180,143, 88,139, 77,178,178, 28,177, 64, 36, - 66, 44, 34,145, 65, 98,193,236,121, 98,177,239,221, 7,143,243,215,255,124, 47, 44,204,151,105,110, 81,132,197,176, 50,178,220, -125,184,207,222, 67,125, 18, 21, 92, 20,241,209, 47,150,153, 54,114,214,165,232, 96, 25, 72,125,145, 27,133,212,129, 43,138,105, - 60, 88,114,189,247, 34, 55, 11,241,134, 10,106,113, 19, 70,193,109,181,115, 79,147,219, 55,152,178,118,251,148,107,186,174,166, - 96, 55,114,125,183, 62, 76,247,187,247,225,170,191,175,170,198,123,210,121,225,151, 49,240, 19, 39, 81, 4, 41,172, 14,247, 51, -100, 53,230, 15,146, 21,151, 57, 79, 68,174, 17,145,239, 4,206, 6,126, 26,200, 11,220, 44, 0,255, 77, 85,235, 4,189, 45,193, -231,141, 22,195, 25,204, 56, 70, 43,173,180,114,154,201, 9,195,239,250,182,239,120, 54,125,251, 81, 18,211, 33,150, 62,145, 3, -117, 89,105,216, 84,132, 88,148, 72,124,117, 56,139,196, 93,204,206, 11,138,253,247, 29, 94,102,208, 79, 96,123,143,162, 4, 93, -190, 52, 26, 3,170, 28, 95, 77, 72,198, 41,143,222, 17,179, 50, 44,195,136,178,237, 92, 32,130, 81, 31,153,223,150,153, 38, 73, - 10, 49, 79, 81,125,131, 17,121,131,219,228,237,188,126,198,223, 46,241, 74,234, 18, 50,104,248, 77,192,245,155, 44, 19,123,221, - 20,197,202,122,222,117, 88,164, 71, 85,175,156, 66, 32,219,104, 40, 96,239,140,123,220,212,177,234,215,246, 16,222,239,237, 15, -227,124,121, 11,213,186,236,191, 36, 34,159, 59,137,227,205,213,126, 95, 3,158, 39, 34, 95,169, 61,151, 49,240,159, 84,245, 30, -224,175,252,215,231, 3,175,165, 90,213,176, 19,124,222,104,243,163,250,118,221,118, 89,108,165,149,111, 35,165,174,239,185, 62, -226,158,187,127,145,149,244, 55,176, 50,166,199, 16,227, 4,171, 74,226,132, 72,186,116, 88,196,234, 22,226, 40,243,218,157,175, -114,163,229,250,113,206,142, 5,162,110, 7,235,200,136,110,170, 94,169,251,255, 85, 32, 50,172,245, 19,238, 25, 14,233, 61, 37, -184, 84,181,160, 73, 86,148,198,108, 7,113, 2, 86,177,186,135,191, 62,218, 1, 70,155,185,167, 13, 22, 77,185,153, 50,133, 42, - 79, 31,187,106,131,167, 8,211,180, 46,241, 69, 91, 78, 68,166, 33, 4, 39, 11, 69,159,144, 18,246,219, 94,249, 16,223,239,195, -162,212, 85,245,223, 0,175, 11,190,122,187,136,156,108, 78,119,159, 42,220,253,230,186, 66,175,141,211, 15,168,234,173, 1,138, -241,227, 53,165, 30, 30,111,238, 36, 12,139, 86, 90,105,229,219, 65,169,235, 59,175,220,193,190,187,222,203, 88,174, 67,100,192, -124, 4, 6, 33,113,202,200,198,116, 77,151,158,188, 6,244, 18, 44,175, 71, 25, 98, 50,248,157, 36,193, 29,185, 19,115,126, 70, -248,189,226, 81,103,114,245,101,231,240,119, 95, 57,156,213,131, 87,201,106,191,107,102, 4, 0,224, 50, 79,127,120,108,141,203, -206, 43,215,119, 93,190, 31, 70,203,232,232, 12, 36,239, 32,227, 80, 12, 48,191,242,160,244,136, 23,145, 55,123, 47, 50,175, 68, -183, 17,242, 90,147,114,218, 76, 47,247,135, 67, 22, 79,193,182,167,211,253,110, 68,161,255,159, 84,203,168,254, 9,240,179,167, -224,208,171, 53,165,254,199, 27,216,231,143, 2,165,254, 88, 85, 61, 71, 68, 14, 53, 28,111,126,131,215,176,208,112, 77,173,180, -210,202, 35, 93,169,235, 91,158,249, 20,142,218,191, 36,149,243,233, 68,125,230, 76,166, 60,199, 78, 25,219, 57,230,100,200,188, -188, 84,126,246, 31, 62,172,111,185,234,215,112, 34, 8,146, 49,223, 5, 98,131, 30, 44,155, 89, 25, 35,252,235,151, 95,197,247, -125,249,175, 96,152, 64,175,155,109,135, 87,234,142, 12,206, 95,237,243,180,199, 63,138,127,249,220, 39, 20,251,186, 67, 95, 65, - 53, 65,236, 56,219, 80, 1,156, 1,121,128,107, 47, 26, 63, 88, 15,203, 43,246,176,101,235,245,108, 50,181,141, 12, 2, 63,209, -202,116,167, 99, 87,184,211,250,126, 85,245,103,128,223, 12,190,250, 31,192,143,157,162,102, 66, 71,200,122,156, 3, 28,221, 96, -137,214, 58, 82,113, 9, 25,169, 14,178,130, 56,249,241,118,111,240, 26,234,219, 29,109,151,197, 86, 90,121, 4, 43,117, 5,225, - 55,159,246,106,134,246,247,112,146, 50, 31,245,233, 25, 65, 85, 25, 88,197,233, 22,182, 70, 95, 99, 94,190, 95,126,242, 51,223, -240,234,239, 78, 68, 65, 81,140, 8, 70, 96,110, 1,187,239, 83,196,139,251,144,157, 23, 1,240,162,167, 93,196, 45,175,125, 30, -175,251,207,159,164,127,124, 4,115,189,140,209,174, 10,227, 4,250, 3,158,254,184,115,121,239, 47,189,152, 45,115, 62, 92,152, - 12,176, 95,126, 31,210,237,101, 12,251, 44,142,159,121,233,177,126,238, 4,226,233,155,149,219, 40,225,234,235, 78, 96,255, 91, - 30,233,125,214, 31, 41,247,235,115,247, 67,136,253,127, 2, 63,210,212,104,229, 4,229,171,192,147, 54,169, 76,143,206, 64, 69, -190, 78,214, 30, 22,178,210,175, 27,145,243,131,207, 35, 96, 95,187, 44,182,210,202,233, 43,235,179,223,223,114,213,141, 36,230, - 93, 96,134,108,235, 36,204, 71,130,162,172, 89, 48,178,133,133,232,191,115,182, 60,179, 84,232,192, 28,119, 96,178, 48, 55,144, - 41,234, 56,134,116,149,228, 83,191, 85, 57,252,107,190,231, 9,252,253, 27, 95,193,235, 94,242, 36, 46,222,213, 99, 78, 19,182, - 26,203,119, 94,118, 22,255,241,167,190,155, 79,252,187,235,185,248,220,146, 36,156,254,227,187,208,227,251,160,211, 67,197,247, -104, 79,125, 62,188,232,237,223,162,207,121, 26,235,252,116,191,190,235, 78,211,251,221,136, 66,255,113,178,218,233,121, 56,231, - 19,192, 15,120,210,218,169,146, 59,130,207,189, 13,238, 83,143,129,135, 44,247, 48, 30,255,212, 13, 30, 47,172, 21,255, 13, 95, - 58,182,149, 86, 90,121, 36,122,234,250,206, 43, 23, 56,100,127, 29, 39, 99,182, 71,208, 17, 33, 81,165,159, 68,116, 77,143,142, -249, 13,230,146,127, 45, 63,122,123,181,194, 85,236,238, 64,204,126,172, 59, 15, 85,139,248, 30,235,243, 11,184,123, 63, 65,250, -183,111, 37,126,118,201, 57,122,242,133,103,241, 91,175,190,134, 55,254,203,148, 3,199,214,232,118, 98,246,236,154,204,172,177, - 95,254,115,210, 47,252, 23,152,203,194,128, 98, 34,212, 58,176, 78,208, 36,193,232, 95, 61, 4,207,236, 68,226,195, 33,161,236, - 58, 85,221,249,112,229, 89, 79,145,189,193,245, 93,185, 65,165,119,229,105,124,191,235,221,219, 43,129,119, 5, 10,253, 51,192, - 75, 68,100,112,138, 79,245,137,224,243, 30, 85,157,219, 64, 95,246,122, 31,245,131,193,231, 79,134, 74, 93, 85,183,138,200,122, - 49,242,107,166,236,223, 74, 43,173, 60,226, 60,245, 1,103,161,236, 4, 73,113,170,244,173,210, 79,187,116, 69,216,198, 13,242, -243,159,190, 89,110,186,125,162,100,165,220,116,123,159,158,188, 13,209, 14, 67,171,160,136, 1,137, 12,178,176, 13,251,133, 63, - 38,185,237, 95,163,253, 35, 85, 23,164, 19,115,209,185, 59, 38, 21,122, 50,192,126,230, 63,145,126,242,223, 33,189, 46, 18, 69, -136, 0,157, 94,150,202,230, 92, 7,236, 7,229,249,183,220,251, 96, 62,172, 90,139,207,186, 71, 58, 75,234,105, 98, 55,126,139, -141,131,240,250,118,250,178,173, 39,234,165,159, 14,247, 59,235, 29,255, 16, 25, 97, 45,159, 27,159, 3,190, 87, 68, 86, 30,132, -211,125,130, 18, 78,239, 0,215,110, 96,159, 23, 6,159,143,147, 65,248,185,124, 12, 88, 9,142,119,253, 58,247,186,135,172,175, -122, 46,127,209, 46,137,173,180,242, 72, 86,234,123, 6, 7,152,143,246,209,145, 5,214,146, 5,156, 91, 96, 65, 86,216, 22, 93, - 35, 55,253,195,173,179, 49,128,238,187,136, 88, 98,148,198, 36,206,231,171,147,149,140,221,178, 13,119,215, 95, 51,126,223,171, -176,119,188, 15, 93,190,175,121,209, 89, 59,140,187,235, 54,198,255,227,213,164,159,251, 61,152,155,131, 40,206,138,205,136, 32, -166,131, 12, 19,136, 20,148, 95,121,144, 23,251,188,105, 74, 40,183,110,100, 95, 95,159, 60, 36,139,221,188,142,167,251, 80,203, -173, 84, 73,105, 55,111,224, 89,220,124, 26,223,239,180,251,250,126,178,146,175,145,255,234, 14,224, 5, 34,114,252,193, 56,159, -111,224, 18, 50,222,127, 69, 85,101,198,245,109,163,202,186,255, 96, 8,151,251,208,192,187,131,191,255,178,170,206,130,245, 95, - 31,220,235, 55,129,255,213, 46,137,173,180,242, 8, 86,234,114,195,151,199,108,159,187,150, 45,209,111,179, 45,126, 47, 91,163, -155,217,222,123,172,220,244,233,117, 27, 88,200, 79,125,106,145,185,248, 53,196,166,163,171, 41,154, 56,192, 23,163, 17,129,133, -237,144, 46,145,124,234,215, 25,191,239,149,140,255,226, 38,210, 79,253, 6,233,167,127,135,244,239,222,194,248,131, 63,207,248, -189,255,130,228,182,215,163,171,251, 96,203,142,172, 40, 77,190,228, 57,131,142,132,206,156, 1, 77,223, 40, 47,121,215, 87, 30, - 44,239,220, 19,166, 62, 75, 21,154, 94,100,115,204,247,176,140,235, 78,178,110,100,215,109,240,252, 55,175, 83,159,254,100,149, -203, 34,213,124,231,235,166,181,104,245, 10, 61,236,146,118,218,221,239,148,243,190,192, 27, 55,121, 1,151,175, 3,215,137,200, -145,147, 60,110, 40, 63,208,176,201, 27, 3,239,250, 26,224,183,124,229,186,250,113, 22,128,255, 70, 73,108,115,181,119,150,203, -175,145, 85,186,131,172,193,203, 59, 84, 53,106, 56,222, 15,147, 85,169, 43,246, 59,197,124,129, 86, 90,105,229, 97,144,117,217, -239,114,211,167,238,165, 90,116, 99,227,242, 83,127,255, 94,254,227,213,111,157, 23,121, 29,131,116, 64,108, 12,115, 38, 35,181, - 1,116,123,176,208,203, 24,236, 75, 95,132,197,207,105, 81, 86, 78, 98,161,219,133,185, 90, 37, 76, 5,134, 41,200,156,210,235, -206, 65,250, 49, 6,131, 55,156,236,194,123, 2,187,221,180,153, 56,177,175,150,118, 19,101,221,240, 92,209,221, 70, 6, 87,215, -235,178,231,149,236,174, 12,188,170, 7, 83,110,161,218, 6,245, 70,175,132,111, 9,174,237, 58, 50, 40,125,167,247,196, 23,153, - 18,131, 63, 13,238,183, 46,239,167, 74, 86,235, 3,127,184,209,161, 33, 34,223,123,130, 6,213, 97,159, 54,247, 71,254,171,159, - 7,174, 81,213,119,145, 17,223, 98,224,233,100,213,227,194,134, 45,255,159,136,124,161,225,120,247,168,234,175, 82,166,225,253, - 24,240, 36, 85,125, 7,112, 39,112, 22,240,131,192,143, 80,154,200, 31, 7,254,115,187, 28,182,210,202,183,129, 82, 63, 41, 15, - 16, 84, 59,233, 47, 99, 58,231, 48,214, 87,178, 60, 30,162, 29,152,139,178,252,245,124, 73, 17, 3,189, 57,130, 69,166, 65,243, - 2, 78, 97,104, 97,101,236, 56,235,236,121, 34,123, 59,105,252,131,114,195,173, 15,165,135,113,187, 87,232,155,102,218,139,200, - 45, 65, 1,155,157,129,162,124,216, 25,226, 34,178,168,170, 55,120, 47,252,146, 64,217,190,169, 97,243, 69,224,134, 41,127, 59, - 45,238,183, 65,234,197, 90,158,250, 16, 62,251, 63, 86,213,221,192,175,123,244,236,105,192,219,103,236,242, 86,224,223,206, 56, -222,191, 87,213, 11,201,234,201,227, 13,165,223,155,178,249,231,129, 87,156,194, 52,189, 86, 90,105,229, 97, 20,243, 96,159, 64, -110,186, 61,225,208,220,255, 78, 71,126, 3, 97,142,197,113,135,165,196, 49,112, 89,213,233,172, 36,108,128,203, 7, 63,234,127, - 44, 48,114,176,156, 42,199,134,194,214,237,243, 44,204,253,119, 88,126,158,188,252, 15,143, 63, 4,207,233, 54,239,177,222, 32, - 34, 87,157,136, 66, 15, 21, 29, 89,121,217, 91,216, 88,113,149, 91,201,160,236, 7,189,137,137,111, 10,115,213, 58,231,186,141, -172,237,233,237,167,251,253,126, 43,137,207,229,191, 22,248,135, 25,155,125, 1,120,169,136,252,194,122,169,103, 34,242,179,222, -240,186,115,202, 38, 75,222,155,191, 90, 68,218,130, 51,173,180,242, 72, 89, 75, 30,202,147,233,239,126,231,119,147,218,223, 71, -185,144,132,148,158, 73,153,139, 32, 50,153,231, 30, 5,151,227, 20, 44, 96,157, 50,180, 48,178, 17,134, 14,157,104,153,115,207, -249, 73,190,244,212,119,203, 27,222,112,218,231,212,122,136,187, 14, 97,239, 37,235,110,118,219,195,120, 93, 57, 28, 30,246, 68, -191,109,131,221,224, 78,187,251,253, 22, 27, 19,151, 1,207, 0,246,248, 57,122, 0,248,180,136,124,227, 4,143,247, 76,224, 9, -192,185, 94,153,239, 3, 62,182,129,244,185, 86, 90,105,165, 85,234,235, 44, 48,191,115,245,118,230,228,135, 25,232,255,133,211, -139,178,210,176,170, 24,227, 48,148, 74,218, 97,112,206, 0,130, 0,145, 57, 76,204, 91,153,159,251,125,249,241,143, 31,104, 95, - 93, 43,173,180,210, 74, 43,173, 60,204, 74,189, 80,238, 31,124, 81,143,253,199, 47, 39,113,175, 0,121, 54, 86,119,227,220, 25, - 40, 93,144,132, 88,150,136,228, 32, 78,255,153,174,252, 25,233,220, 29,242,211, 31,111,155, 77,180,210, 74, 43,173,180,210,202, -183,154, 82,159, 80,242, 31,187, 54,102, 31, 49,209,177,136,185, 45,142,197,113,218, 84,216,166,149, 86, 90,105,165,149, 86, 90, -105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165, -149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, - 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165,149, 86, 90,105,165, 21, 47,242,218, 23,191, 84, 59, 81, -140, 83, 3,168, 47,180,238,155,167,161,136,128, 65,125, 89,118,135,250, 62, 43,217,111, 14, 69,137,128, 8, 72, 85, 25,185,108, - 95,131, 67, 85,177,217,105,252, 17, 93,246, 89,179, 79,121,175,199,172, 61,167,128, 40,162,217,121, 67,201,142, 99,252,247, 22, - 95, 45, 62,107,228,230,143,237,200,142, 33, 40,170, 82,222,129,102,119,165,254,174,212,239, 81, 92,147,130, 72, 7,157,139,232, - 68,150, 56, 77, 73, 19,197, 58,176,121,107,247, 98,111,223,237, 93, 4,241,125,182,133,252,248,254, 30, 8,246, 17,201,111, 32, -251,168, 90, 92,101,113,111,254,170, 28, 96, 68,136, 81,156, 19, 18,212,183,208,203,158, 11, 24,196,108,135,238, 28, 38, 86, 34, -237, 99,135, 43,216,164, 60, 79,254,212, 76,113, 37,130, 74,249,189, 0,146,191, 19, 17,140, 40,234, 52,216, 79,242,215, 83, 60, - 87, 65, 17, 21, 28,138,243,239, 45, 27, 19,153, 56,255,126, 36, 60,135,127, 98,170,249,243,207,126,242,199, 97, 80, 34,255,110, - 82, 63,158,152,232, 91, 46,254,121,133,223,215,126,155, 50, 86, 36,120,182,193, 63,197,243,167,254,119,209,252,197,162,106, 33, -154, 35,234,117,208,193, 10,214, 6,175,177,248,199, 21, 95,184,240, 98,154,206, 57,249,107, 57,110,130,235,111,220, 47,191,172, -224,217,136,248,239,253,223,194,177,217,244,111,243,177,181,248,111,242, 25, 52, 60, 32, 13,198,152, 6,239, 65,169, 30,175,246, -110,168,204,239,233, 18, 30, 70,167, 28,111, 61,153,124,198, 58,125, 35,153,117, 10, 13,174, 95,214,189, 22,245,219,202,140,123, -173,223,159, 84,111,182,216, 89, 39,127,169,140,221,236,114,154,175, 73, 39,190,205,159,164,108,224,121,234,204,103,167,141, 55, - 36,144,244, 33, 29,130,233,250,198,154,154, 45, 12,166, 3,210, 65,195,130,165, 58,253,189,134, 43,167, 82,206,197,202,246, 58, -243,205,110,108,220,108,112,188, 54, 15,155,141,142,225,234,221, 76, 31,163, 58,243,126, 54, 62,232,153, 88, 19,227,109, 11, 11, - 56,171, 89,255, 20,175,212, 35, 63, 24, 28, 10, 98, 17,213,108,193, 87,131,120, 5,100,139,133,219,161, 56, 68,133,142,128, 81, -176,234,188,170, 87, 98, 85,172, 42, 42,177, 63,105, 2,154, 41,176, 92, 77,135, 55, 43,193, 50, 29,170, 96, 83, 44,114, 17,198, -239,229, 2, 51, 68,252,245, 43, 90,172, 79, 90, 95,188,106,170, 87,131,137,232,210, 20, 35,176, 16, 69, 36, 10, 35, 91, 94,131, - 76,236, 35,136, 63,137,171, 13, 63,241,191,105,160, 88, 17,136,130, 69, 63,127,239, 38,123,114, 53,133,156, 77,140, 14,165, 22, -204,143, 40,198, 18,117, 35,186, 93, 37,114,130, 18, 51, 36, 83,140, 34,245,247, 45,217, 60, 11, 38,124,185,152,100,215, 23,137, -160,166,124,222,185, 97, 97, 10, 85, 1,162,153, 33,151, 27, 10, 38, 88, 42, 32,107,172,151, 43,239,252, 90,157,127, 14,134, 82, -169,231,183, 35, 56,156,250,119,149,175, 1,249,126,154, 25, 47,136,241,239,209,102,215,170,211,151, 41, 13, 22, 82,153,152, 92, -249, 19,117,197, 67,119,225,228,148, 96, 33,214,252,184, 6,196,178, 45,178,140, 59, 49, 3,223, 8,184, 58, 35,163,226, 56,198, - 15,174,217,202, 92, 27, 39,181,214, 54,212,218, 10,173, 53, 5, 95,153,190, 34, 96, 12,106,109,101,193,209,202,194, 56,253,220, -225,129,117,198,194, 91,156, 87, 75, 75, 68, 69,202,175, 26, 12,171, 70, 69,173,179,151, 47, 13,198, 14, 21,221,123,178, 10, 94, -107, 55, 35,211,214,220,138,233, 40,200,250, 70, 66,205, 30, 42,230,152,234,116,197, 88, 92,156,169,140,219, 73,123, 86,154,181, -158, 1,188, 3,214,244,252, 52,152,255, 4,235,231,186,143,177, 50,198,101,234,251, 20, 17,156, 83, 70, 75, 71,177,243,231, 98, -246,188, 0,209, 14, 38, 29, 17,167, 35,204,232, 40,216,251, 64,151, 81, 19,129,116,139, 67,230,227,166,126, 49,149,179,105,254, -126,154,175,163,190,125,117, 77, 56,137,170,231, 83,109, 31,173,122, 36,179,140,146,117,182,171,158, 66, 78, 70,157, 87, 14, 81, -209, 63, 2,113,111,110,142, 97,127, 80,120,158, 42, 89,215, 83, 17, 45,189, 46,201,188, 52, 10, 37,172,184,220,235, 20, 65,144, -204,139, 83, 45, 60,185,220, 35, 84,175,188,173, 42,214,116, 16, 3,170, 41,106,189,209,233,189, 71, 42, 8, 1,133,210, 14, 61, -111, 83, 76, 55, 9,124,127,175,160,112, 68,193,126,149,161,227,175,199,251,187,197, 57, 10, 63,208,123,222,201, 24, 86, 4,127, -156,170, 37,158, 43,242, 2,201,168, 40,177,220, 55,149,137,161,152, 45,176,210,232, 4, 57, 4,156, 67,197, 32,146, 45,104, 73, - 48, 41,141,134,222, 45, 96,135, 48,182, 56, 17, 68, 19,212, 86,231, 65,184, 40,102,243, 71,203,225, 94, 32, 27, 90,120,137, 54, -112, 49,242,235,179,128,241,223,139,191, 65,167,117, 31, 79,138,145, 96, 84, 42,223,187, 10,218,227,183,203, 65, 17,213, 0, 53, -153,156,182, 6,147,141, 23, 3, 98, 12,206, 42,214,166,197, 66,156, 79, 92, 23, 44,134, 18,186,175, 53,227, 75, 1, 35,185,231, -149,161, 22, 34, 82, 83,144,254,122,139, 9,146,221,236,160,159, 25, 92,249,254,245,165,168, 88, 68, 66,131,162,230, 73,213,191, -147, 18,128,168, 46, 78,226,175, 34,244, 36, 67,243, 69,193,248,109, 52,240,158, 35,181,217, 28,171,153,194,213,243, 72,128, 28, - 53,120, 37,126,236, 79,115, 76, 69,252,252, 51,222,248,145,218,242, 89,220,223,228, 83,202,255,100, 8,208,159, 13,122,108,229, -166,178,105,127, 38, 71,201, 38,189,109,153,226,153,214,247,151,242, 25,205, 90,236,243,145, 46, 90, 26,244,154, 95,114,245, 94, - 37, 88,243,115,133,157,235,184, 9, 59, 83,107, 8,140, 72,128, 44, 78,191,176,198,241,153,255, 43, 51, 92, 92,169,155,254,205, - 15,199,136, 48, 76, 28,107,139, 71,216,253,148, 39,179,235,218, 31, 35,141,118,144, 44, 31, 96,109,109,141,254, 50,164, 7,135, -196,139, 7, 49, 43,119, 35,201, 94,144, 85,212,116, 81,141,217,192, 67,173, 14, 39,157,173, 68, 55,173, 32,103,108, 38, 51, 17, -128,233,232,200,102,174, 96,114,142,201,134,177,148,141,202,182,109,219,136, 5, 7,234, 10,248, 85,138, 5, 84,252, 0,204, 87, - 32,131, 10, 88,181, 37, 84,137,226,242,125,141, 18,249, 17,154,250, 99,229,222,181,195, 32, 98, 49,206,226,140, 65, 76,166,132, - 93, 0,113, 43,206, 43,164, 82, 97,215,173, 47,205,225,245,224,187, 92, 73,187,194,163, 86, 76,176,159, 6, 6, 96,221,209, 41, -124, 1,143, 28,168, 87,106,105,128, 26,148,131,204, 67,228, 76, 90,215,217,231, 24,193, 21, 11, 74,238,121, 74,197, 64, 41,220, -223,236, 62,204,153, 72,199, 97,147, 69, 68,165,152,228, 34,153, 66,159,244,188, 21,155, 12, 81, 11, 78, 4,231,164, 12, 97,212, - 6,151,170, 86, 86,146,252,254, 11, 99, 57,192,148,195, 53, 89, 84, 60,242, 82,134, 45,154, 6, 92,190, 14,184, 9,251,184,106, -216, 20,250, 54,208, 52, 82,131, 44, 67, 35, 61,215,175,162,142, 72, 74, 4,105, 82,137, 79, 0,150,213,235,204,149, 85,126, 62, - 41,183,146,202,162,155,135, 55,202,177, 0, 66,154,135,139, 50, 43,180,152, 19,133, 65,145,223,152, 72,213,227, 42, 22,237, 25, -223, 73, 14,245, 51,185, 93,174,141,165,162,142,203,115, 4,251, 90, 87,251,174,242, 50, 53,140,254, 76,190, 59, 66,111, 48, 8, - 89, 4,207, 54, 87, 91, 18,104, 90,149, 66,135, 85,238, 71,105,152,104,165, 13, 48, 97,192, 76,131, 66, 39, 84,240, 9, 41,119, - 41, 12,146,250,125,110,120, 5, 21,173, 28, 71,181, 65,157,135,115,172,182, 90,105, 62,174, 26,158,113,240,176,203,115,105,179, -162,144, 58,170, 51,195,219,173, 7, 95,234,107,224,132,138,113, 22, 36, 10,103,235, 84, 21, 21, 9,172,140,148,225,210, 17, 94, -250,226,103,242,157,215,255, 43,250,171, 75,172,126,243, 14,198, 91,215, 56,182,144,112,247,246,152,253, 59, 34,150,142,238,196, - 30, 62,131,248,232, 30,100,229, 43,144,238, 71, 76, 10,210, 91, 95, 17, 11,205,240,187,132,104,238,244,241,178, 49,229,216,188, -101,224, 27,204, 80,223,147, 71,217,180,111,126, 42, 21,123,131,183, 30, 23,202, 75, 75,143,211, 4, 3, 77, 36, 83,183,234, 87, - 92, 35,129,135, 27, 92,142,245,144,147,136, 16,171,224,252,254, 42,234, 61,180,220,219,180, 56, 7, 78,148,142, 87, 94,227, 26, -196, 93, 25,247, 90,198,202, 93,160,216,109, 48,212,197,171,218,220,171,215,138, 55,172, 65,140,185, 14,155,121, 8,181,116,136, -178,109,133, 0, 30,150, 34,230, 45,141, 47, 51, 51,133,212, 8, 78, 98, 34, 44, 56,139,211,236, 89,137,127,139,174,178, 48,248, -120,177,142,145, 45, 93,182,170, 33, 89,114,140, 3,175, 87,164, 58,153, 67, 56, 63,181,153, 50, 87, 9, 96,238,138,173,237, 67, - 39, 90, 26, 33,185,242,202,227,177,153,210,208,226, 24,197,255,185, 33, 18,196,207,155,161,175, 64, 9,138, 76, 93, 96, 68, 38, - 39,167,168,135,241, 38, 96,243,130,201,129,186, 18, 93,200,102,155,171, 94,131, 84, 61,229,198, 25, 41, 50,213,187,150, 10,252, - 30,238,146,155,141,145, 31, 57,105,205, 91,241, 94,191,191, 55, 45, 70,100, 9, 95,138, 76,122,165,141,138,188,126, 15,193, 59, -206, 81,170, 16, 87, 11, 99,123,197,190, 57,103, 35,120, 46,174,166, 92,203,115,107,205, 31,173, 43,242,208,163,175, 41, 15, 13, -149, 76,134,222,133,219, 84,244, 84, 77, 1,107,147,202,149,192,156,209, 16,251,153,162,162, 55,169,220, 3,223,217,135,202,178, - 57, 58, 43,230,217,184, 90,106,243,146,171,129,103, 94,197, 23,155, 80, 24, 38,148,123,197,158, 68,130,215, 53,137, 12, 77,132, -255,154,222, 79,101, 30, 9, 82, 83, 23,197,126, 34,104,154,160,131, 62,166, 51, 15, 29,155,169,129, 25,143,194, 8,172,166, 6, - 93, 58,196, 79,255,208,229, 60,251, 85,191,192,189,123,251, 44,221,245, 85, 70,131, 85,226,116,204,217, 29,216, 33, 41,231,111, - 25,115, 87, 55,230,222,173, 17,253,173,103, 17, 29,122, 38,241,226,217,232,232,203, 96, 6, 32,189,169,240,190, 84,230,162, 78, -199,221, 39,148,187, 78,219,100,243,138,189,110, 88,233,236,227,213,182,136,107, 84, 0, 0, 32, 0, 73, 68, 65, 84,223,139, 4, - 58,107,147, 96,193, 41, 11, 29,196,153, 23, 39, 62,246,233,176,222,184, 20,205, 38,174,104, 73,229, 42,227,201, 20,196,175,208, -226, 80, 13,151,229, 18,172, 55,193,183, 70,178,223,156, 10,163, 96,161,118, 19,175, 41,183,146, 51,194,157, 43, 60,231, 18, 94, -175, 83,216,124,164,170, 32,242, 85,195, 88, 53,136, 48,195, 98, 17,205, 66, 11,129, 58, 45,148,187, 74,174,228,164, 22,219, 11, - 17, 3, 69,196,100,158,190,201,226,212, 70,132,113,170,222,145, 11,148, 72, 8, 13,139, 65,221, 50,233,138, 48, 55,103, 88,136, - 13,135,146,236,126, 11, 72, 62,192, 11, 50,238, 66, 16,103, 20, 41,144,132, 92,177,219,156, 24,167,213, 88, 58, 26,198,180, 75, -114, 91,197,157, 14,148, 90, 25,207,173,123, 16, 90,134, 33, 84, 74,156, 68,171,207,165,234, 37,105,105,146,169, 20,225, 28,241, -232,136,171,199,100, 93,105, 50, 90, 41,162,220, 5,156, 26,226, 52,133, 7, 30,120,207,197, 54, 1,100,169, 65,156,211, 16,161, -145, 1,155,150,254,140, 63,134,134, 44,180,168, 67,103,174,139, 14, 86, 73,109, 77, 17, 20,247,207, 36,228, 29, 40, 41,102, 42, -242,112,191,170, 81, 80, 89,236,235, 20,170, 32,124, 32,129,241,226, 66,163, 98,194, 35, 14,208, 5,170,168, 65,179,210,172, 94, -171,134, 6, 70, 61, 14,220,116, 63,117,163, 74,154, 33,239,124, 91,151, 35,131, 26,174, 29,211,149, 59, 27,128,242,165, 54,247, -115,199,165, 92, 10,102,239, 95,133,165,167, 28, 59,208,206, 50, 73,217,156,250,124,117,166, 50,146,102, 34,149,150, 97, 77, 2, -180, 77,107, 70, 81, 51,110,151,131,173,194,112, 48,102, 52, 94, 99,254,177,215, 33,122, 9,230,190, 15,161,238, 16,200, 92,227, -190, 2,140,156, 48, 90, 92,225, 39,159,183,157,239,253,223,126,138,207,222,109,121,224,238, 59, 24, 14, 71,184, 84,137, 36,130, -196,209,193,114, 86, 39, 98,123, 87, 56,251, 12,229,206,158,229,208,150, 14,201,194, 99,137, 15,111,131,213, 47, 32, 28, 67, 11, -197, 94, 51,116,188, 19,169,204,138, 23, 84,236,173, 19, 34,150,109, 74,197, 78,132,235,102,235,213,210,112,214, 77, 40,226, 83, -163,234,165, 12,147,104,182, 0,155,146,114,224, 20, 44,185,135,173, 56,175,197,165, 32,161,101, 64,115, 9,177,151,241,117,227, - 23, 14,171,138, 13,233,105, 90,242,223, 43,166,150,132,118,101,121,236, 18,126, 52,133, 79,225, 2, 69,229, 42,170, 70, 11, 11, - 73,107, 30,181,241, 42, 47,159, 8,110,194,203,172, 18,114,114,210, 87, 65, 96,243,208,181, 9, 24,223,185,122,144, 98,177,178, - 25, 92,140,203,136,101, 64, 44,133,142,170,188,179,138,245, 45, 17,154, 10,199, 86, 96, 41,133, 72, 28, 98,118, 32,157, 51, 80, -231, 13, 44, 12, 42, 17, 18, 69, 85, 24, 48, 88,244, 93, 77,209,229,191, 72,115,180,177, 10,193,122, 15,206,212,166, 89,211,242, -224,113,241,224, 6, 38,169, 41, 98, 12,152,168,224,238,103,207,212,213, 25, 96, 19, 80,112, 93, 65,185,194,120, 41,125, 74,145, -201,235,147,250,157,250,177,170,193, 24,146, 66,161,101, 75, 95, 39,130, 56,154, 78,104, 21, 12,104,194,156,235, 19,139, 22,164, -195,236, 52,166,132,164,115,222,137, 72,229, 74,196, 24, 68,162,234, 61,214,183,105,248, 46,124,121, 82,185, 29,153,132,207,165, -106, 84,152,202,117, 76, 63, 79, 37, 68, 27,190,207,134,107, 40,231, 80, 78,116,242,243,161, 48, 39,167,236, 39, 77, 31,101,170, -247, 98,130,221, 69,100, 67,132, 39,169,132,208,100,157,237,170, 40,128,212, 17,137, 6,234, 85, 62,183,101, 29,248,181, 48, 94, -105,226, 21,204, 32,132, 53,125, 35, 84, 66, 29,245,195,105, 96, 87,137,102, 10, 94, 10, 70,133, 84,130, 81, 74,149,174, 27, 9, -172, 14, 44, 81,178,196,247,254,208,247,243,132,235,127, 20,123,217,101,216,133, 39, 64,234,106,110, 80,121, 13, 78,132, 99,203, -150, 23, 95,210,231,123, 94,121, 3,255,124,244, 98,142,222,251, 85,210,113,130,224,136, 34,111,152,171, 67, 35, 97, 36, 6, 81, -229,162,200,112,213,150,152,199,156,171,116, 47, 16,146, 61,123, 96,235,211,128, 93,136, 38, 83,194, 37,235, 67,222,205,184, 8, -235,143, 24,221,164,102, 12,119,148,205, 24, 13,178,238,213,200,244,215,127,226, 84,191, 96,190,153,212,179,211,157, 58, 15,250, -105,113,120,159,196, 6,154,169,184, 72, 12,198,100,158,140, 83, 37,197,101,236,120, 41,227,217,234, 9, 21,198, 16, 40, 90,131, - 11, 56,235,154,211,196,188, 45,145,165,196, 73,113, 12, 41, 60,194,124,226, 24,162,156,144,231, 19,236, 64,124,114, 91,104,161, - 24,194,187,112,148, 10, 2, 4, 99, 66,226,147, 79,133,211, 80,249, 75, 17,127,206,177,137, 60, 28, 97, 66,184, 50, 24, 86,153, -103, 14, 78, 45,206, 90,156, 83,156, 11,225,205, 28, 6, 39, 80, 86,229, 21, 68, 2,206,192,168,240,106, 13,230,140, 5,230,207, -136,136,115, 50,157,100,207, 62, 54, 18, 36,154, 85,199, 69, 90,129,223,181, 50, 65,234, 48,149, 86,124, 63, 41,188,243,240,154, -164, 97,196, 21,207, 64,165, 72, 21,108,162,238,154, 72,136, 99,227, 73,148, 65,124, 79,202,108,133,144,150, 83, 85, 90,130,136, -241, 40, 74,128,105, 21, 80,234,180,213,181, 84, 88,166,160,253, 87, 99,241, 57,115, 95,211,196,123, 62, 82, 49, 1, 37, 48, 10, - 68,149,254,192, 50,118,217,184, 9, 21, 73,227,194, 27, 40, 95, 65,179,121, 50, 85,145, 23,230,148, 87, 10, 82,187, 63,169,159, - 40, 59,246,132, 17, 32, 53, 37,156,161, 14,210,160,152,165,234,230, 22, 28,142,252, 89, 79, 92,231, 4, 83, 66,138,247, 41,210, -172,252, 67, 37, 89,127, 87,211, 12,140, 70,210,145,108,156,199, 92,181, 99,100, 38,249, 77,234,198, 77,195,189,212, 61,229, 13, -169, 13,169,190,219,208,160,173,171, 32,169, 57, 8,212,222,235,228,234, 94,159, 99, 97,218,105,104, 99,151,103, 45,169,196,229, - 29,173,165, 66,188,182,200,171,127,232, 74, 94,241,242, 87,113,165, 30,100,199,182, 3, 36, 11, 91, 64, 59,158, 77,164, 19,207, -246,248, 72,120,108,116,156, 31,252,193,167,115,223,142, 23,113,120,223, 61, 36,227, 21,140,142,137, 80,156, 38,136, 81, 58,113, - 23,136, 49,206,162,198, 50, 54,194,174, 72,120,202,124,196,101,103, 66,111,143, 33,221,189, 7, 22, 30, 15,218, 5, 77,167, 42, -198, 42, 10,182,158, 65,199,212, 16,143, 76, 83,214, 50,219,212,170,255, 93, 54, 96, 54, 76,215,231,114,162,214,196, 9,139, 17, -201,178,205,179, 52, 53,197,145, 98, 53,205,148, 84,238, 15, 43,153,178,210, 12,118, 52,162, 68,100, 9,233,206, 43,102,209, 50, -214,232, 60,188, 45,146, 43, 8, 45,198,173,122, 4, 32,124, 92, 21,175,204,239, 19, 21,228, 48, 41,246,143, 69,136,243, 73, 33, - 97,122, 85, 45, 78, 37, 84, 60,207, 48, 6, 30,139, 16, 73,233,121,132,192,135,171, 83,211, 60, 20, 91,164,108,229,139, 90,192, -128,215, 90,198, 76, 70,254, 83, 18, 40, 22, 65,231,167, 76, 8,180,184, 64,177, 22,102,138, 68,104,186,136, 93, 57,196,118, 17, -118,198,153, 17,100, 36, 55,177, 50,133,149, 47, 12, 82, 49, 68, 60,162,144, 31, 75, 39, 67, 20,121,188,188, 36, 86,149,100,192, -156, 67,145, 67,213, 21, 15,177,158, 71, 43,161,231, 91, 37,185, 97,202,119, 99,252,201,196, 43,104,241,208,125,227, 4,148,146, -164,137,104,246, 44,136,203,124,108,153,140, 5, 79,122,235, 82, 67, 66,106, 11,185, 63, 71,234,164, 72, 3, 20,164,178,112, 74, -176, 64, 59,145,202,177,138,115,228,134, 96,254, 28,188,193, 83, 9, 95, 56,109, 80,228, 33,249,205,160,234,205, 69, 35, 19,215, - 82, 26,180, 85, 52, 35, 84,140,197,191, 21, 8, 67,107, 30,190,212, 64, 12,169,226,199, 26,144,225, 68,166,160, 11, 50,225,181, - 20,215,214,168,216,203,176, 81,163, 55, 34,205, 70,138, 76,106,201, 13, 45,118, 66, 72,232,155, 98,245,201,116,231,173,106, 4, -203,166, 92, 61,173, 17,123,171, 80,172,100,161, 14,165,102,138, 83, 69,145, 26, 12,162,153,236, 48,173,122,228,213,171,209,192, -233, 40,157,179,149,165, 33, 47,191,106,129,107,126,248, 85,236, 61,118, 54,115,199,143,176,115, 52,196, 14, 14,128,164, 25, 97, -174,118,235, 99,133,104,117,204,245,207,234,210,123,246,203,185,231,200,153, 36,107,139,144,164, 89, 26,116, 58,166, 35, 74, 20, -119,177, 38,198,210, 37,210,152, 72, 98, 98, 81,172, 17, 22,162,136, 43, 22, 58, 92,114, 78,151,232,156, 8,187,245, 44, 48,103, -101,233,170, 33,162,161, 77,228,201,147, 87,116,178, 97, 24,158, 41,227, 56, 55,150,117,131, 32,128, 86,208,175, 13,193,240,167, - 74,189,251, 29, 99, 35, 16, 73, 78,148,195, 67,237,100, 42, 94, 33, 85,201,188, 81, 20,171, 25, 65, 43, 31,136,145,130,197, 96, -125,188, 93, 17,108,185,100, 85, 99,225,234,138,201,154,199,231,108, 1,183,234,100,190, 93, 30,215,206, 11,224,168,120,246,185, -143,177,139,208,241,208,186, 21,201,152,156, 57,104,238,175,215,105, 22,103, 70, 92,150, 46, 69, 22, 18, 48,158, 6,229, 2,126, -149, 86,108, 50, 13,206,174, 5,129, 80, 85, 10,143,222, 85,152,241,117,242, 92,192, 26, 15, 97,248,154,145, 81, 29, 10, 30,230, - 53, 6,134,142, 99, 35,143, 44,160,168, 75, 43,172,227,202, 50,235, 61, 61, 19, 28, 3,159, 58, 86, 22,243, 41,207,232,234, 11, - 79, 81,128,167, 92,248,172,191, 63, 19, 42,187,138,119,109,202,184,178,152,130,229,160,120,171,198,248,252, 3, 45, 23,241, 60, -157, 13,157, 49,120, 11, 7,219, 65, 52, 71,103,190,131, 14, 87,176,169, 67,101,202, 98, 71,105,108,169,148,228,199,137,120,166, - 82, 33,141,133,139,165,228,113,230,154,119, 95, 33,223,105,144,250,150, 27, 68, 26,166, 53,213, 24, 63,245,116,183,208,115, 50, - 6, 99, 98,207,172,183,160, 14,231, 2, 76, 41, 79,129, 43, 72,121, 13,132,168, 90,170,156, 22, 36, 86,102,198,240, 75, 50, 32, - 19,249,212,101,204, 94, 27,158,157, 4,161,241, 58, 43,185,129,237, 79, 72, 2,211,233, 68,103,201,227,204,155, 97, 35,207,246, -220,167,198,219,117, 50, 94, 28, 42,230, 2,170,215, 10,147,111,230,194, 44,225, 17,180,150, 29, 46,165,114, 47,211,212,180, 74, - 18,156, 17,163,175,103, 77, 76,155, 57,149,154, 24,193,108,207,205,246,227, 35,225, 9, 11,107,252,200,203,174,230,216,217, 79, -228,248,215, 15,211, 79, 97,109,217, 34,253, 99, 96, 44,101,226, 97,121,190,229, 33,124,215, 25,107, 92,251,130,199,243,141, 45, - 79,102,180,244, 0, 73, 58, 68, 85, 73,173, 37, 54, 66,188,237,209,136,217, 70,162, 96,199, 41,184, 21, 48, 35, 76,236,136, 76, - 7,193,177,205, 56, 46, 84,225,208,252,152, 99, 11,138, 70,219, 17,251, 64,131,209, 85, 37,126,234,122, 74,116, 26, 83,254,100, -224,247, 19,136,110, 87,235, 99, 8,179, 82, 54, 31, 10,137,213,199,155,139,201, 27,172,126, 70, 50, 88,222,106, 25,231,110,138, - 19,217,144,166,161, 25,241, 37,103,126,171,175, 66, 7, 16, 5,202,220,248, 5,212,105, 9, 73,229,112,184, 6,185,176,102, 98, -193,247,191,122, 88, 95, 37, 70,140,160,145,128, 75,192,150,198, 68,158,159,238,114,117,166, 50,193, 18,215,134, 74, 91, 38, 32, -240, 24,255,155,243,121,227,249,132, 53, 34,149, 88,150, 41,130, 10,249,189,226, 13, 28,169,248,144, 58, 1, 7,151, 74,194,230, - 87,101, 60,187, 93, 41, 56, 11,214,105, 1,127, 75,101, 33,202, 22,225,140, 88, 39, 21, 67, 66, 2, 72,182, 36, 50,106,101, 17, - 83, 76,185,184,231, 6,142, 8,198,243, 41, 36, 32,165, 84, 88,234, 74, 81,128, 71,131, 92,103,167,138, 77,109,134,180,104,238, -245,103, 47,184,185,178,152,103,229,135,107, 46, 6,213,132, 57, 82,212, 8,171, 98, 42, 17,195,146,169,223, 68,164,146, 96,124, - 84,139, 50,212, 21,187,230,213,225, 42,225,213,140,121, 95, 81,114, 40,248,226, 73, 57,108, 40,245, 1,217, 52,161,131,244,163, -144,195, 96, 76, 68, 28, 65, 20, 25,156, 66,154, 56, 48,146,101, 24, 21,138, 52, 72,203, 82, 38,217,239, 30, 93,169,165,182, 55, -146,228,154,178, 5,178,148, 74,169, 13,253, 42,225,176, 26, 95, 14,158,101, 77, 9,139,212,210,198,234,222,142, 54,179,187,235, -176,189, 78, 16,190,170,168, 18,186,177,165,177, 86, 41,160,170,249, 26, 22,221, 74, 22, 64, 33, 46, 48,126,214, 81, 26, 13,117, - 40,154, 72,114,197, 51,170,145,169,180,198,171, 8,207, 89, 49, 82, 38,140, 35,169, 20,213,106, 14,184, 41,201,208,241,156, 39, - 25,206,189,252,153,236, 59, 24, 97,214,238, 99, 57, 29,179, 52, 74,136, 37,134,137,114, 78,217,218, 21,143, 29,223,245, 68,232, - 93,252, 52,150, 30, 48,184,254,253, 24,181,140,198, 99,182,119,198,156,117,222, 46,164,115,152, 84,247,178, 98,182,145,232, 5, - 72,114, 49,157,113, 31, 39,199, 50, 39, 44, 53,140, 93,159,158, 77, 57, 83, 70, 28,239,165,104, 20,251,117, 81,131,160,109, 83, -162,218,122,228, 52,173,189,154,117, 24,237, 51,169,241,181,241,171,212,158,172, 76,164, 54,110, 86,107,203,172, 83,215, 46,240, -100,168,115,177, 83, 87, 16,129, 34, 63,128,172,230, 16,185, 41, 96,223,156, 45,158,191,114, 13, 86,121,241, 30,190, 20,123, 40, -182, 96,126,103,199,118,190,212,104, 62, 8,173, 95,168,162,250,163, 43,242,159, 3, 67,160, 70, 5,201, 13,130,212, 51,221,141, - 8, 81,100,192,100,249,240, 54,133,196,151, 55,205,185, 64,121, 74,154,147,146, 80,167,249,177,166,240, 33,194, 34, 78, 69,102, -149, 74,165, 60,167, 4,201,223, 81,141,204,103,114, 78, 66, 14, 13,234, 36, 4,111, 42,219, 75,165,212,107,104,123,219,156, 16, - 23, 84, 92,202,179, 22, 10, 56, 86,130,231,229,145,145, 28,213,146,138,107, 84,122, 46, 18,111, 1, 99,209,100,224,105,200, 82, -181,148,155,242,115, 11, 56,191,100,167,107,144,144,174,190, 86,129,132, 94, 97,113,175,213, 34, 67, 97,186, 85, 72,150, 19,181, - 12,251, 89,158,120,100,202, 56,126,184, 4,170,204,152, 73, 19,110,158, 52,198, 12,209,192,147, 84,154,149,154, 10,166,147, 97, - 61,227,113, 45,222, 38,165,103, 44, 51,149,105,110, 12,105,134,140,121, 47,221,248,218, 6, 82, 79,181, 42,210,156,167, 51,229, - 43, 6, 75,165, 60,242,172,156,121, 41,138,200,148, 99, 87, 39, 82,209,164,182,111,197,168, 11, 80,147,234,189, 87,180, 82, 69, -127, 77, 62,139,134,136,117,192,157,208,105,136, 11, 83,146,239,155, 98,237,132, 40,192,100, 78,248,204,181, 85, 3, 69,107,252, -179,213, 89, 30,216,236,194, 45, 82,243,196,203,202,187, 58, 1, 55, 87, 13,157, 32,253, 82,103,251,236,218,160,208, 7, 14,206, - 51, 35,158,250,196, 51,121, 96,251,227, 57,126,192, 96, 83,131, 77,149,184,155, 50,220,182, 7,142,222, 3, 58, 4,153, 47,180, -217, 32,133, 11, 59, 9,143,185,124, 27,247,216, 11, 25, 30, 91,198,165,171,244, 71, 35,182,184, 49,115,157, 57, 14,126,241, 94, -226, 3, 31, 97,207,142, 49,231, 93,208, 99,249, 81,231,177,124,230,119, 99,236,181,208,223, 74, 95, 31, 64,211, 57, 70,171, 74, - 58, 58,202,188,166,152, 24,172, 49,229, 10,167, 65,206, 76,237,221,200,148,154,130, 82,223, 66,116, 93,131,111, 51,168,207,100, -114,132,176, 33,246,123,200,215,218, 52,196,116,138, 92,121,129, 88,243, 50,174, 62,190,151, 33,228,182, 40,157,153, 1,233, 37, -201, 41,175,202, 37,206, 85,194, 7, 18,212, 47, 51, 62, 47,187,188, 86, 45,148,171, 6,185,163, 78, 93,205, 58,150,138,237,234, - 10,147,194,255,235,189,190,236, 90,243,162, 57, 14,235, 1,241,184,136, 59,151,112,189,171, 67,220,149,250,235,101,169,210,240, -161,186,138,253,152, 21, 64,169, 70,108,171, 75, 82,238,209,230,112,179,106,158,166,227, 21,187, 15,194,154, 32,182,110, 2, 3, - 32,143,207,150, 16,125,153,246, 21, 22, 59, 45, 35,102,134, 74,194, 86,238, 53,211,160,148,107, 11,138, 41,210,159,114, 5, 60, -102,174,147, 85,134,235, 39,190, 78, 65, 81, 65,144, 32, 63,191, 92,140,203,144, 67, 45, 55, 87,104, 72,223,211,114,144, 7,206, -173, 72,157, 28, 85,214,211,207,223,143,149,140, 25, 81,169,120, 86, 73, 62, 44,175, 75, 27,106, 63, 77,228,156,214,188,221,210, -128,104,240,117,164,138,214,170, 77,125,169, 94,227, 61,121,109,220,182,217, 43,174,122,163,214,102, 1, 14, 71, 86, 64,198,186, -201, 80, 64,129,178,232,236,227,133,139,153,169, 40,252, 89,240,123,181,218, 92,221,179, 46,114,249,131,162, 54, 50,197,213,145, -122, 26, 95,237, 94,195,106,142, 19,151, 29,188,187, 9,131, 90,154,189,243, 9,175,122, 61,239, 93, 38, 67, 48,235, 42,223,208, - 72, 9, 98,189, 19,227, 71,235, 70,128,110, 76, 89, 84,198,127,137, 44, 77, 84,233, 33, 76, 67,164,154,169,163, 52,122,182,117, - 69, 56, 74,132,167,108,179, 92,116,209,118, 70,115,219,145, 45, 91, 72,227,121,230,172,227,188,173, 41, 95, 63,239, 76, 92,255, -137,152,193, 63, 65,212, 7, 51, 7, 8, 73, 10, 23,109, 75,152, 63,119, 55, 15, 12,206, 98,188,178, 72,178,182, 12,201,144,180, - 11, 31,252,166, 97,239,199,246,210, 27,142, 56,103,126, 27,207,253,170,229,187,174,220,199,206,171,255,130, 35, 59,231,232,240, - 44,204,240, 40,199,117, 76,146, 26,116, 60,194,104,138, 68, 26,120, 82,211,136,101,186, 49, 98,218,116,171,169,113,227,141,234, -205, 18,145,154, 28,153, 27, 50, 14,116, 35, 53,238, 31, 60, 13, 31,103, 85,225, 44,206,229,113, 21, 65,140, 34,146,213,115,207, - 27,126, 56, 95,202, 84,140,167,207, 69, 16,185,108, 1,114,121, 13,115,111, 21,231,196,178, 92, 89, 85,154,131, 4,183, 21,249, - 7,100,189,197,106,252, 36, 42,139,224,232, 4, 24,163, 26, 0, 78, 2, 70, 83,172, 85,172,100, 12,122, 19, 24, 35,121,129, 21, -215, 16, 90,211, 0, 22,200,139,117, 72,165,120,108, 73,128, 49, 65, 5,248, 50,141,173,220, 87, 3,100, 65, 43,206,112,181,174, -118,184,141,171,133, 22, 66, 67, 95,131,120,116,105, 52,228, 46,183,169,170, 52, 41, 27,131,152, 16,150,205, 17, 5,201,239,205, -213, 96, 62,111,160,185, 4, 59,208,236,253,154,144, 48, 40, 69, 94,172, 11,226,198,211,189, 18, 9,140,143,201, 1, 42,193, 56, -160,161,172,181, 76, 12,102, 45,203,166,206,152,204,210, 20, 56,159, 49, 3, 43,144,122,161,155, 13,136,155,178, 63,133,241,151, -230, 6,169, 17, 63,166,252,187, 80, 55,177,224,215,115,202,139, 67,250, 48, 68,146,186,192,124,149, 70, 35, 65,107, 53, 14, 84, - 26, 10,213,212,225,218,137,240, 68, 83,153,208, 42,194, 64,195,113,235,231,154, 96, 12,171,174, 11,119, 79,187,238,122, 28, 89, -106,232,151, 78,225, 14, 76,219,127,102,206,121, 25,175, 43,144, 67,149, 13, 36, 57,123,164, 49,223,182,177,188,146, 80,169,112, -185,225,218, 96,147,211,160, 68,100, 84, 43,165,103, 39,102,134, 76,134, 63,194,113,164, 21, 72, 59,115, 40,118,116, 12, 91,165, - 79,175,187, 74, 87,198,216,225, 49, 34, 99,185,180, 23,179,186,123,192,253, 92, 68,116, 79,135,120,229, 14, 68,142,227, 68,137, - 70,202,163,246,244, 73,207,190,152,227,171, 11,172, 29,255, 6,201, 96,133, 5, 73,184, 79,122,236, 61, 60, 34,150, 69,116,123, -143,187,212,112,239, 17,131,254,227,118,174,235, 29,101,249,105, 31, 96, 28,159, 75,151, 93,140,221, 33,146,212, 32,214,120,114, -181,248, 26, 17,174, 22,128,156, 94,187,125, 50, 56,176, 73,245,183, 9, 29,169, 19,207,116,131,209,112,213,117, 79,180,217,130, -199,155, 47,144,156,195,239, 33,134,175,214, 43,228, 44,158,110,124,115, 23,139,226,156, 45,216,226, 5, 27, 91,179,148,152,176, - 8, 74, 88, 30,209, 41, 88, 21,140,143, 22, 59,241, 94,107, 81, 94,180,106, 85,186,138,159, 92, 54, 71,112, 18,194,162, 90,177, - 84,243,146,162,106,133,212,147,231, 42,101, 82, 3,136,219,213,150,208, 18, 74,212,138,199, 96, 60,236,229,168, 50,116, 43, 41, - 88,249,109,170, 6,199,159,156,252, 97,238,188, 78, 12,154, 90,184, 79, 39,171, 64, 22,199, 14, 60,103,227,159,131, 83, 41, 82, -152,148,178, 90, 92,165,132,143,116,178,164,236,116, 80,196,191, 77, 16, 30, 80,129, 84, 77, 17,138,144, 74,230, 43, 65,106, 89, -149, 82, 84,185,151,226, 25,202, 44,213, 91, 40,181,188, 14,188, 76,113,101,164, 24, 12,149, 32,248,164,130,204, 14,152,153, 86, -110, 74, 44,109, 86, 19, 9,159,119, 45, 30, 98,175,119, 92,107,130, 65, 11,131,203, 24,140, 55,176,156,205,200,125, 18, 42,153, -176,127,223, 68, 61,120,129,122,193,227,226,217, 57,255, 14, 75, 58,190,214, 13,133,224, 26,181,102, 64, 84,223,125, 9,161,203, -196,115, 44, 43,173,229,161,156,137,210,187,121,197,188, 92,233, 6, 77, 86, 38,182, 15, 74,207,230, 80,106, 37, 13,190, 9, 37, -169,123,211, 13,202,106, 90, 33,157,137,145, 53, 13,154,159, 44,237, 86, 45, 27,220,216,189,174,161,176,196,132,183,221,228, 81, - 86,139, 82, 77, 93,172,117, 86,149, 61, 41,185, 40, 53, 55, 51, 44,158, 19, 22, 90,170, 24, 80,181,107,145, 8, 22, 71, 17,195, -227,107, 36,199, 14,178,114,223, 14,162,225, 65, 52,114,204,137,112,101, 71, 89,120,212, 42,251,183, 94,192,240,224,110, 56,114, - 15,131,254, 65,182,196, 35, 46,122,252, 25, 28,237, 62,153, 99,251,239, 97,184,124, 24, 73, 82, 58,177, 99, 49,157, 71, 22, 15, -209,227, 56,152, 46,187,128,229,121,120,247, 81,225,172,207,205,115,209, 89,247,115,244,210, 59,160,247, 66, 36,157,195,197,138, - 72,134,163,170, 85,208,113,165, 12,239,164, 1,198,186, 33,146, 10,209,183,176,146,116,118,233,183,117,170, 4, 87, 93,185, 25, -224,203,196,247,245,220, 7, 78,140, 44,119,138, 10,210,196, 42, 37, 83, 58,143,203,169, 10, 86, 41,226,162, 57, 8,173,170,144, -134,233, 65,121,105,214,114,180,134, 48, 93, 44,121,110,118,182,248, 25,173, 54, 97,113, 69, 49, 18,241,197, 92,202,135,227,180, -100,209, 87,154, 36, 4, 36,180, 60,143,190,100,167,251, 88,174,201, 80, 4,171, 76,132, 0, 74,207,176,196,206,138,238, 97, 53, - 69, 85,152, 24, 30, 5,200,152,203,165,215,161,146,101, 0,184,210,156,169, 64,234,160, 24,161,214,101,172, 26,203,151, 16, 90, -203,243,135, 27, 34,117, 5,116, 47,121,101, 62, 41,140,136,105,121,148,217,162,238,136, 5,226,200, 48,116, 77,195, 69, 2,162, - 98, 96, 40,229,177, 86,149,192,251, 47, 59, 88, 25,255, 62, 92,222,225, 76, 66,207,171,172,118, 47, 53, 3, 64, 43,181,103, 39, -109,225,220,144,203, 82,228, 76,165,139,216,180, 82,171, 70,197,135, 53,116, 34, 25, 70,130,188,222,137, 24,187, 78,201,231,111, -242,176, 9, 75,194,106, 97,220,162,158,216,104,243,237, 76,145,215,174,154,135,140,130, 96,133, 43,211, 59, 43,229,101,243,126, - 0,210,241,144,111, 66,201,145, 11, 70,132, 54, 41,165, 42, 25,111,146,171, 23, 6,100,181,228, 18,132,139,221,148, 74,109,149, - 86, 69,194, 36, 51,158,102,229, 94,182,206,173, 1,170,181, 16, 65,213, 91,109, 34,175,110, 76,185, 79, 64,243,245,142, 99,149, -182,171, 82, 9, 21,104, 65,210,243,229,136,101, 50, 83,163,113,110,133,140,119, 89,191,197,108,197,136,209,245, 74,226,214, 56, - 36, 90,237, 3, 89, 9,115, 52,114, 16,178,223, 59, 6,142, 36, 29,190,121, 95,159,228,254,127,102,105,245,124,116,220, 33, 30, - 15, 89,113, 41,177, 53, 92, 21, 9, 23,237, 94,229,155,103,110, 97,185,255, 88, 18,123, 5, 79,154,143,233, 94,216,227,238,125, -171,172, 45,222,143,179,150, 24, 97, 28,195,225, 99, 99,228,248,126, 48, 41,208, 67, 81,182, 11, 28,238,192,167, 14,199, 92,122, -255,144,249,139,247, 97, 59, 3,122,221, 57,132,101,208, 49,137, 83, 52, 77,125, 58, 27, 13,253,117, 26,200,167,141,230, 74,125, - 29,211,245,189,242, 13,108, 50,113, 78,213,102, 18, 93, 83, 56,199,103, 3,205,138,194,108, 8,126, 63,217,216,186, 66,156,193, -213,174, 88,188, 93,169,106,203, 82,165, 26,244, 72,243,139,187,213, 26,171, 91, 43,115,166, 2,183, 71,133, 50,202,190, 75,115, - 15, 60,168, 76,165, 62,101, 46, 91,164, 51,104, 62, 45, 60, 84,169, 88,163,174, 98, 81, 41, 70,173, 39, 49,151,144,120,158, 74, -229, 92,146, 41, 93,137, 38,122,159,135,245,226,167,121,207, 81,173, 42, 89,169,240, 92,230,201,155,236,122,173, 86,201,109, 69, -137, 26,109, 2,169, 43, 45,170,131, 70, 46, 97,173,251, 42,128,175,149, 42,123,117,240,170,250, 25,202, 84, 55,112,216,177, 45, - 60,122, 87,225,156, 6, 77, 59, 26, 8, 55, 90, 75, 77, 34, 32, 25, 78,212,252, 14,114,113,179,205,187, 89,111,242, 90,158,109, - 54, 78, 92, 86, 32, 70,171,185,194, 4,236,253, 80, 9,212,153,236,149,142,101,206, 85, 22,217,106,124,188,108, 70, 34, 1,156, -173,161,219, 57,101,138, 73,197, 16, 40,145,153, 2,141,113,206,231,224,107, 80,235,185, 44, 59,155, 79,112,173,196,219, 5, 34, - 79, 13,117, 41, 97,135, 56,167,130, 58, 71,167, 23,101, 6,216, 32,161,222,145, 37,132,197,195,204,134, 80, 1,229,132,157, 58, -252, 94,214, 23, 47,210, 92,106,241,233, 26, 58,161, 50,197, 11,108, 74,253, 11,234,225, 55,196,189,155, 17,150,233,176,121, 83, - 77,252, 77, 43,247,130, 4, 89, 83, 18,202,140,237, 33,175, 56,160,193, 51,154,205,108, 15, 88,251,178,126,233,217,106, 67,156, -141,196,223,195,188, 15, 87,225,245, 20,221, 42,165,172,128, 89, 47,235, 60, 31,193,253,137,225,246, 47,119,121,250,163, 63,142, -156,189,133, 97,239,105,164,107, 9,145, 89,100,220,137, 48, 86, 56,123,108, 57,167, 59, 32,218,214,165,211,235, 16, 27, 97,239, -209, 69,134,107, 43,217, 88, 53, 49, 93, 3,135,220, 86,142,220,183, 72,119,237, 94,232,245, 8, 25, 85,243, 49,220,147, 8,135, - 14, 24,206,232, 47,178,122,198, 42,105, 50,143, 14,215,176,118, 76,234,124, 75,110,135,119, 81, 58,205, 15,104, 3, 16,188,204, -210,130,178,121,156,126, 2, 60,223,180, 98,149, 0,133,217, 64,233,226, 7,131, 67,231,111, 34,118,158,233,110,157,207,233,206, -109,115,205,146,172,202,162, 32, 90,120,161, 38,239,155, 94,153,136, 90, 88,140,170, 82,203,131, 41,211, 4, 68,115,239,150, 2, -226, 86, 9, 84,123,208,102, 53, 10,212, 68,222,204,197, 96, 50,159, 58, 44,124,161,121, 33,152, 42, 93, 74, 85,209,232, 44, 84, - 28,105,178,132, 67,232, 24, 42,125,202, 3,245, 91,201, 49, 23,169,251,153,213,251,145,194,103,211, 32,167,126, 50, 15,189,137, -242, 17, 18,141,181,142,250, 81, 77,242,168, 23,171, 49, 4, 49,110,202,120,175, 86, 10,135, 84,139,229, 56, 96,164,165,199, 95, -164,162, 53,176,237, 93, 96,109, 24,255,110, 66,213,111,124, 8,101,226,190,242,142,101,254, 24, 38, 22,186, 8, 73,226,124,171, -216,176,150,127,200,141,160,226, 17, 78, 6,112, 27,188,171,192,104,155,232,130, 37,101,233,219,137,194, 81,174, 6,239,201,250, -149,171, 92,193,217,215,162,141,176, 22, 93,210,210, 66,121,134,138, 40, 43, 60, 83,163,235,169,130, 49,196,113,148, 25,182, 54, -194,165,105, 25, 34, 18,176, 38,130,116, 12,174,234,145,105,144, 87,216,212, 90, 68,106, 61,194,101,138,114,156,100,144, 51, 49, -238,107,214, 65,165,163, 69,165, 27, 92, 93,213, 7,222,127, 97,216,105, 25,226,209,105, 13, 72,234, 33,130, 74,104,104, 58,100, - 95,141,183,135,171, 90,230,164,100, 63,254, 61,168, 43, 58, 67, 96, 34,104,104,241, 84,180,107,173, 2,117,155, 32, 49, 75,153, - 98, 53,205,224,144, 13,194,176, 19,187,228, 79,213, 4,134, 86, 72,172, 43, 27,109,149, 72, 86, 54,122, 99,148,113, 79,120,239, -254, 30,242,161, 53, 30,243,172,247,227,118, 31,101,112,238,149, 68,107, 59, 49, 75,135,177, 28,103, 32,150,142, 42, 50, 84,146, -100,204,162, 75, 88,235, 39,152,113, 74,212,241,245, 57,230, 59,220,189,216,101,176,255,171,108,141, 6,168,108,173,204,224,174, - 40, 75, 10,135, 87,132,115,198, 41, 67, 77, 25, 15, 45,118, 60, 0,117, 68,113,148, 57,143,182,223,200,171,153, 68,159,166,171, -182,147, 34,138, 55, 32, 37, 19,222,255, 6,120, 23,211, 27,178,110, 44, 87,125, 99, 41,110,186, 57,238, 0, 16, 39, 98, 72,139, - 69,195, 21,222,115, 94, 21,204,169, 6,177, 11,157,168,171,238, 38,188,211,178, 14,123, 65, 9,215,210,227, 22,202,114,169,228, - 29,220, 84, 42,209,218,106,173, 33,157,136,161, 20,208,182,223,200, 18,249, 56,119, 90,182, 28, 14, 61,180, 45,115,108,233,244, -137, 87, 18,214,198,226,243,207, 39, 31,115,198, 90,247, 10, 76,243, 94,220, 66,248, 4, 34,127, 5, 69,234, 90, 80,206,188, 82, - 16,114,162, 16, 84,181,154,154,214, 96,221, 18,242,245, 36,194,210,239,171,118, 0, 10,122, 54, 75,224, 57,133,144,191, 6,233, -135, 57,218, 80, 69, 12,202,116, 48, 83, 49,108,124, 5,170,137,116,155,170,145, 33,141, 29,209,168, 54, 86, 73,199, 89, 30,180, -148, 35, 35,239,112, 38,235,180, 50, 44, 85,140, 9,218,137,234,244, 73, 52,225,245, 51, 73,175,215,218, 74, 45,211,114,127, 67, -146, 99, 68,220,155, 7, 59, 36, 77,198, 80, 96, 79, 57, 20,109, 2, 6, 72,121, 94,167, 90,201,186,200, 73,116, 70,202,109, 35, - 1, 53,166, 2,155, 70, 2,169, 19, 18, 87,133,210, 37, 88,137,138, 38, 65,100, 25, 43, 90, 15, 17,212,114, 17,115, 70,188,170, - 82,237, 1,222, 28,202,168,164,228,133,175,185,168, 51,160,133,162,158,128,235,131, 70, 52, 21,156, 41,232,110,219,168,220, 3, - 69,168,141,100,185,102, 13,155,237,230,192,165,184,116,140, 29, 39, 88,171,164,218,193, 73, 23, 53, 49, 72,140,154,204, 35, 52, - 46,161,163, 67, 58,178,134,137, 4,226, 14,152, 14,149,106,132, 65, 1, 35, 37, 44, 57,169,141,220,168, 34,148,162,132,253,250, -102, 42,119, 61, 17, 45, 84,235,132,167, 72,101, 1, 42, 12, 46, 9,194, 43,126, 93, 93, 48,202, 82,172,252,233, 55, 23,184,246, - 35, 67,158,254,132,143, 16, 61,110, 47, 7,182, 62,149,149,238,163, 97,180, 7, 77, 20, 59,234, 51,116,107, 72,154, 48, 74,134, -184,100, 68, 44, 22,193,176, 99, 46,226, 1,118,112,247,151,190, 68,111,237,110,116,126,126,226, 78, 12,194, 88,149,126,170,224, - 98, 70,137, 97, 60,232, 99,236,128, 78,164,140,173, 33,237, 15,232,166,203, 25,207,167, 18, 38, 12, 35,218,155, 37,156,109, 18, -179,214,117,188,255,141,198,181,155, 90,186, 53,212, 90,152, 8, 47,110,138,220,183,121, 60, 62,238, 68,144, 70,222, 27,116,100, -113, 15, 74, 22,183,201, 33,203, 0, 78, 22,170,208,100,198,144,246,189,167, 3,200,205,230, 74,197, 47, 88, 46, 87,126,226, 48, -222, 91,207,191,119,185,186,150,188,149,107,211,205,151,208,122,228,149,100,102,116, 88, 84,133,200, 8, 61, 15,239,143, 52,139, - 59,139, 46,194, 42,152,249,136, 61,177,225, 72, 10,135, 11,168, 60, 55, 50,116,130, 36,149, 45,206, 82,148, 57,205, 83,252,108, - 37,214,157, 77, 99, 87,196,155,115,104,188,170,184,114,245, 36, 53,184, 60,247,247,141, 9,210,224, 36, 6,227,178, 20, 42,109, -110,105, 26, 26,180, 97, 33, 27, 45,122,126,123, 2, 95, 94, 59, 64, 75, 67, 74,138, 20, 56,106, 0,191, 39,222, 4, 4,192, 66, -173,135,208,234,180,252,239,186,209, 0,140,109, 78, 42,212,194,216,170,134, 80,166,160, 24, 65, 23,250,176,255,213,196, 68,209, -178,146, 87,227,132, 9,242, 87,195, 22,177, 69, 30,186, 84,147,189,195,252,104, 85,144, 40, 98, 97, 46,194, 14, 32,205, 27,248, -132, 6, 35, 33,201,114, 82,137,135, 69, 70, 10,146,167,203,208, 47, 87,132, 13,130,184,186,122,195,167,184,150, 6,219, 62,172, -119, 80,233, 3,223,220,175, 93, 67, 67,139, 58,193, 67, 27,171,223, 85,148,111,157,225, 45, 52,247,129,175, 35, 41, 18, 34, 65, -235, 85,195,155,192,229, 27,218,209,134,241,120, 7,118, 76, 58,236, 51, 26,195, 56,222,142,110,185,128,185,179,207, 99,126,215, -185,156,181, 99, 7, 11, 91,183,210,153,155, 35,142, 12,221, 78, 68,234,160,223, 31,114,236,200, 49,142,223,191,159,228,200, 55, -233,244, 15,210,209,101,226, 24,232,244, 16,137,203,180,221, 10,193,176,201, 24,209, 74,207, 2,157,200,177,174, 17,248,180, 94, -106,102, 3,205, 99,235,149,164,116,242,216,142,144,120,170,149,150,205, 33, 79, 98,123, 44,244,141,227, 3,199,231,249,250,103, - 58, 60,249,238,189,156,119,225,126, 30,117,238,217,112,198,121,244,183, 62,138,193,182,221, 12,146,115, 24, 44,143, 72, 70,199, - 81, 19,227,196,177, 99,107,204,176, 59,199,237,255,248, 53,236,125,159,163, 55,223, 13,220,142,154,221,172, 96, 58, 74,210, 57, -131,254,168, 71, 58, 60,140,216, 49, 86, 19,150,135, 93, 88, 57,142, 48,240,125,220,235,145,106, 45,179,146,214,239,188, 58, 91, -221,109, 18,235,110, 86,232,155, 69, 11,166,123,214, 77, 12,254, 7,171,194, 92,172,214, 34, 46, 83,178, 8,196,134, 34,111,214, -105, 30,187,205, 75, 68,186, 32, 78,108,112, 18,103,150,174, 8,208,199,165, 41,234, 11,152,196, 1,124, 88,196, 33,235, 21,176, - 52,168,251, 30,228,195, 26, 41, 23, 59, 27,198, 40,130, 58,224, 22, 45,200, 45,198, 43, 91,235, 12,105,193,192,207,123, 94, 71, - 68,192,104, 85,217,235,109,134,184,226, 33,103, 6, 66, 89,133,174,156,128, 26, 20,221,238,228, 5,116,124, 51, 27,168,246,128, -150,192, 91, 53, 53,208,190,132, 32,171, 96, 93,225,161,249,255, 19,178, 12,132,216,123, 88,137, 78, 66,250, 83, 43, 83, 7,107, -161,241,222, 98,174,184,210, 6, 31,180,228,128, 68,133,130, 44,153, 89, 65,120, 43, 39,215,153,142,103,120,219,106,121, 77,153, -236, 71,158,253,111,178,206, 77, 74, 73, 32, 9, 16, 28,209,233, 69, 99, 66, 18,227, 76,252,115, 70,210,104, 37,148, 42,145,223, -214, 78,120,135,245, 24,154, 20,233,110,130,104,130, 27, 90,146,212, 21,245,202, 53,128,150, 9, 42,234, 77, 77,157,115,249,123, -112,136, 24,156,207,113,119,141,165, 85,203, 57, 80, 32, 49, 82,173,196, 23,246, 76, 47, 73,149, 82, 33,107,104, 16,158,168,247, - 92, 47,171,230, 49, 25, 87,175, 40,235, 28,205, 40,247, 55,249,245, 77,205,125, 15,224,177,106,164,113, 99, 36,187,218,187,157, - 48,106,236, 8, 59, 88, 99, 48, 86, 70,221,179, 88,216,243, 36,206,187,240, 50, 30,117,254,163,217,179,231, 28,118,159,189,141, - 93, 91,187, 44, 68,142,142, 36,136,179,184, 52, 1, 59,194, 89,203,208,157,193,225,181,179,185,255,248,197,124,243, 72,159,251, - 31, 56,198,225,123,239, 97,112,112, 31,241,234, 1,122,172, 98, 58,160,190, 57,201,100, 30,191,214,114,221,167,117,140,159, 30, -179, 87, 26,226,252, 83, 49,226,166, 73, 95, 85, 23, 38, 64, 5, 84,181,172,229, 31, 24,235,249, 30, 11,198, 96,231,148, 59,109, -196,190,251,183,178,235, 1,203,121,189, 3, 60,250,140,251,120,244,238,207,179,107,207,153, 12,182, 63,154,165,206,217, 44,156, -177, 21,149, 30,157, 36, 97,176,114,148,191,251,199,123, 57,122,247, 93,108,153,143, 80,211,109,188,126, 11,204,169,178, 99, 59, - 12, 22, 30,205, 96,185, 67,210, 95,132,100,192, 90,100, 89, 25, 24,204, 96, 57, 67, 84,125, 60,125,178,170,242, 44,232, 90,102, -116,205,219,120, 42,225,204,175, 54, 17, 88,159,204,182,212, 13, 49,247, 79, 40, 94,176,137, 4,187, 88,157,248,206,123,234, 21, -104,192,170,246, 44,100, 23, 86,179,210,188,134,184, 67, 53,205,218,142, 70,208,137,132,110, 39, 34, 26,103,213,136,134, 66,208, -225, 44,128,228,131,212,172, 10,140, 29, 92,176,211,210, 43, 52,129,231,167,149, 46, 99, 33, 62,105, 10,246,251, 72, 34,178,198, -159, 6, 34,161, 67, 2, 22,108, 36,158,140, 23,164,109, 73,206,174,151, 74, 79,114,241,125,228, 85, 50,111, 55, 14, 98,230, 97, -107,217,176,149, 76,213,136,175,193,175,148,125,204,165,242,157, 20,217, 3, 57,162,145,226,208, 84, 3,213, 73,193,118,151,160, -207,185,194, 84,114, 91,198, 71,112, 88,162, 70,171,178,140,209, 26,156,233,100, 29,213, 92,130, 77,210,198, 12, 31, 84,209, 40, -166, 23, 43,118,152,102,113,102, 79, 22,156, 24,199, 94, 33,197,254,122, 18,143, 30,228, 75,164, 13,226,253,170, 13,141, 27, 10, - 76, 83,203,102, 37, 65, 47,249, 9, 38,169,132,233,102,181, 75, 23, 65,137,136,226,204,203,118,169,102,133, 95, 2,151, 91, 38, - 42,170,121,252,196,100,227,117,109,100, 61, 90, 83, 53,198,234,105,149,141, 74, 72, 21,137,123, 68,113, 15,151,142,209,116, 88, -242, 38,100, 74, 95,243, 58,242, 33,101, 41,224,122, 4, 55,183, 92, 66, 38,137,136, 41, 80, 1,167,174,214, 87,188, 90, 16,142, - 93, 0, 0, 32, 0, 73, 68, 65, 84,134, 86,212,227,234, 33, 47,160, 94,146, 88,170, 76, 47,209, 6,155, 43, 8, 17,105, 83,122, -210,148, 60,251,176,132, 49, 76, 26,136,110,184,194,218,202, 42,131,238,217, 44, 60,250,106, 46,188,252,241, 92,126,249,165, 92, -113,201,110,118,159,209,101, 27,125,186,118,128,142,143, 51, 30, 38,140,173, 35,113,144,106, 68,146,164,140,211,172, 1, 73, 36, -176,211,166,236,236, 37, 60,241, 66, 88, 60,255,108,246, 95,182,139,123, 15, 95,206,125,247, 29, 97,241,224, 65,198,135,246, 19, - 13, 14,210,113,171, 68,198,143, 21, 49, 30,101,241, 46,136,203,178, 96, 76, 20, 33,241, 28, 42,241,134,150,235,137,188,244,141, - 4,237,165,238,181,207,128,242,139,186, 27,226, 13, 62, 87, 25, 27,144,245,241,216, 30, 65, 26, 41,139, 54,226,224,120,158, 47, - 62, 0,103, 30,112,236,254,234, 81,206,222,126,144,237, 59,186,116,183, 46,176,234,230, 56,116, 60,229,174, 3, 43, 44,175, 38, -108, 89,152,203, 56, 9,218,172,188,198, 14,246, 68, 41,103, 61,106, 27,199,185,128,149,163, 71, 24,245, 23,217,226, 18,250,157, - 14,131, 85,135, 25, 47, 85, 82,109, 36,156, 43, 50,101,220,212,145, 74,216, 64, 0,111,243, 50, 57, 76,101, 51,145,240, 83, 47, - 39,120,170,184,104,198, 33,165, 23,234,194, 52,167, 32, 70,160,154,117, 3,147,162, 1,140, 5,155,177,118, 45, 2,166,131, 49, -194, 92,199, 50,114, 89,209, 23, 67,233,245, 19,116,101,115, 65, 21,242,240,186,195,222,224,166,136,179,120, 79, 94,194, 34, 54, -148,101, 82, 3, 82, 23,234,112, 2,145, 88,140,102,139,243, 66,164, 12,173, 48,172,240, 0,108,165, 69, 97,234, 99,190, 18, 64, - 87,234, 20,103,240,117,217,243,133,188,217,171, 8, 39,104, 93,121,171,204, 78, 61,203, 39, 98,238,181,215,105, 86,121,219,200, -142, 41, 23,120,155,183,204,165,108,210, 85,178,143, 13, 78, 58, 56, 77,138,214,182,117, 35,195,160, 88, 19, 17,197, 66,108, 20, - 99,226,172,174,115, 26,230, 22,104, 17,134,209,100,136,233,108, 33,234,118, 24, 14,211, 34,109,203,214,249, 96,254,255,212, 23, -100, 49, 84,179,218, 77,144, 42, 89, 81, 44, 66, 37,230, 91,100, 80,248,166, 49, 96,139,252,194, 9, 98,107, 16,143,144, 90,193, - 31, 19, 67,236,227, 27, 18,137,183, 67,116,194, 3,106,170, 95, 35,229,131,173,196,210,209,166,212,155,154,247,239, 28, 42, 17, -221,249, 5, 58,157, 46,214,118, 25,173, 58,156, 29, 5,104, 70,179, 82,116, 33,139,127,162,154, 89, 13,176,172,145, 5, 99,129, -174,129,196,101,228,200,106, 72,160, 90, 7, 93,194, 81, 83,203,225,150, 0,141,144, 32, 60, 51,121,205,147, 72,128, 76,241,100, -167, 22,228,169,199,248, 37,171, 61, 97,251,199, 89, 90, 29,146,156,113, 17, 23,124,215,203,184,234,234,171,121,220, 37,123,184, -232,204, 46,219,236, 18,118,237, 56, 75,199, 6, 44,142, 82, 82, 21,146, 36,201,208, 36, 49,196,221, 57, 36, 18,198,158, 32, 18, -117, 99, 82, 7,227,241,152, 81,226,208,161, 67,199,125, 46, 36,225,252,243, 12,107,187,207,226,168,189,128,253,199,158,206,193, -131,199, 88, 60,116,152,254,177,131, 48,238,163, 54,205, 74, 80,199, 61, 76,220, 65,122, 91,112,214,162, 75, 71,232,174,237, 39, - 54,125, 36,238, 53, 66,210, 77, 20,170,112, 21,112,235, 49,230,153,221,241,107,146,135, 82,206,159,201,146,188,165,194,140, 84, -136, 34,152,139,178, 53,119,201, 26,142,142,230,136, 14, 42,243, 7, 29,177,244, 25,217, 85,134,106,232,116, 98, 22,182,116, 74, -164,109,138,164,137,112,201,142, 33,178,231, 18,238, 91, 60,147,193,226,189,136, 38,196,221,136, 21,221, 66,186,124,140, 57,187, - 4,157,120, 50,148, 86, 60, 7, 97, 86, 9, 56,153,169,224,245,132, 20,101,253, 43,221,108,161,154, 41, 88,251, 9,144,240, 79, -137,134,247,189, 45,157,135,227,178,201, 31,161, 65,231,178, 42,211, 85,181,244,228, 77,158,246,164,194, 24, 33,113,214, 39,111, - 67,215, 40, 29, 95,164, 43,205, 27,137,168,155,232, 18, 22, 22,134,149,134, 65,159,195, 58,101, 92,212, 5,134, 98,153,125,110, -138,138,109,153,193, 97,243,255, 93,214,171, 60, 47, 73,155,183,208,139,124, 5, 60,151,223,179,144, 21,216, 9,248,125,121,131, -153,212, 79,215,162, 39,122, 45,109, 68, 53, 63,110,201, 80,174, 15,182,138, 66,151, 32, 39, 54,216,218,229,185,178,126, 33,205, -127, 55, 94, 57, 26,106,157,235,240,105,127, 69, 8,217,215, 19, 32,194,108,217,194,188, 46, 51, 90, 75,177, 98,202,229, 38,108, -141,233, 44, 70,163,204, 19,113,169, 39, 61, 72,197, 8, 41,156, 59,167,140,146, 17, 11,145, 43,140, 61,131,100,213, 0, 85,171, - 60,221, 74,107,215,236,187, 84,167,133, 16,100,162, 85, 97,216,241,168,140,230, 70, 36, 10, 70, 92, 64,238,107,112, 4, 41,181, -179,162, 89, 57, 99,239,113,137, 13, 50,163, 3,165,172,225,108,174, 43,251, 41,137,167, 77, 57,243,212,200, 93,198,136,207, 96, - 83, 34,147,101,179,169,157, 52, 72, 42,202,186, 82, 69,179,169, 74, 93,149, 84, 86,111,119,106, 85, 25, 91, 45,198,117,213, 27, -247,239,200, 80,233, 27, 92,241,210, 67,146, 94,232,185,107,208,100, 52, 48,166,133, 58,169, 76, 39,250, 66,212,189, 82,169,196, -153,171, 10, 95, 68, 73,251, 75, 44, 46, 13,208,179, 47,231, 9,215, 62,151,107,174,121, 22, 87, 94,113, 17,187,220, 49, 6, 71, - 14,176,244,192,128,253,131,132,113,154,146, 36,137,103,126, 27, 6,227, 20, 35, 48,215,237, 17, 69, 17,169,117, 5, 31,192,168, - 5,107,179, 98, 88,198,144, 90,199,208,101, 69, 81,210,145, 37,182,125, 46, 93, 24,243,184, 11,230, 25, 94,186,155, 69,251, 24, -150,135, 17, 73,154,113, 91,122,189, 30,157,110,135, 45,243, 29,226,110,151,197,165,101,238,222,127,144,111,124,241,107,244,247, -126,137,238, 96, 31,166, 27,163,116,169, 55,113,158, 64,102, 43,122, 43,103,221,215,148,187,174, 31, 68,214,153, 88, 0, 51, 58, -197, 81,182, 18,213,108,109,153,243,139,139,195, 35, 28, 26, 97, 58,176, 69,102,168,150,224,250, 82,160, 55,182, 92,252, 40,101, -121,199, 19, 88, 61,144, 18,235, 10,189,110,140,206,199, 28, 59,182, 0,199,191, 6,210, 7, 89, 96, 54,115, 80,214, 49,142, 54, - 92, 21,102,195,186,176,146, 77,180,238, 62, 50,133, 39,242,208,120,235,235,157, 42,182, 94, 49,228,115,206,161, 21,210,144, 78, -228, 69,106,227,104,205,115,137, 99, 85, 36,245,141, 83,130, 99,150, 29, 44,115,195, 64,138,120,122,222,198, 82, 11,248, 56,140, - 88, 7,159,131, 24,161,170, 22,202, 62, 76, 60, 11, 23,232,196,223,126, 66,217,216,197,134,113,254,128,217,106, 4,226, 72, 16, - 7, 35, 87,166,166, 8,121, 88,162,218,124,165,194, 56, 46,140, 32,207,221, 87, 9, 72, 52,154, 53,122,149, 8, 52,201, 42,201, -171, 9,204, 17,143, 87,120,162,145,107,138,127,139, 18,133,173, 71, 37, 67, 71, 92,125, 94,228, 93,229, 52,197,140,151,233, 24, -199,216,165,164, 68,152, 40, 46, 56, 13, 18, 60, 53,151, 38, 56, 21,140,239,198, 39, 70, 43,108,254,226,189, 27,208,100, 76, 63, - 41,112, 17,108,222,129,173, 94,251, 60, 52, 85,148,198,118,214, 90,139, 27, 86,217,167,249,251,246,136,144, 77,136,182,239,102, -231,188,208, 63,124, 63,137,198, 19,157,195,234,101, 98, 74,194,166,146,164,169,111,197, 27,186,199,245,238, 75,130, 68,198, 39, -129,216,134,192,153, 11,102,110, 83,108,120, 18, 58, 86,103,113,163, 62,210,237,225,146, 20,151, 38, 89,237,248, 38, 34, 88,158, -147, 44, 77, 94,108, 3,252, 94, 99, 87,231, 10,215, 73, 94,194,182,169,177, 75, 3,212, 94, 51, 26, 52,200, 86,144,160,192,179, - 84,106, 22, 76,166,124,133,177,249,122, 67,150,166,114,177, 21,239, 60,159,227,227, 85, 22,143, 45,225,206,188,140,167, 94,255, -125,124,207,181,207,225,201,231,111, 99,151, 59,206,202,226, 93,236, 61,178,204, 96, 56, 36, 77, 18,156,181,140, 83,139,115, 74, -228,199, 34, 81,135,238,252, 2,113,183,147, 21,137, 34, 66,109,130, 58,199,192, 42,206, 38,196,198,145, 56,197,250, 49,145,245, -169, 16, 92,220,101, 41,141,232,173, 89,182,164, 3, 46,223,106,232,237,218,142,233,110,161,215, 49,116, 58, 6,151, 14,145,225, - 17, 86,215,250, 28,238, 47,178, 35, 94, 98,231, 99,186,124,109,203,147, 57,112,215, 25,196,199,190, 76, 20,143, 80,233, 54,250, -143, 18,172, 57,218, 20, 47, 13,149,187,232,108,167,125,234,218,223,220, 3,161,222, 41,174, 44,193,236,201,168,146, 59, 71, 89, - 53,209,205, 52,245, 22,129,213,161,112,197,252, 18,187,159,114, 5,251, 71,143, 35, 94,185,143,168,163,108,235,244,120, 32,238, -113,244,216,136,184,127, 32, 99, 70, 79, 28, 64,131,210,183,178, 97, 5,172,211, 85,236,108, 45,184, 94,129, 24,109, 52,211,167, - 27, 25, 77, 86,206, 20,111,253,193, 7,238,149,216, 82,182, 63,205,199,145,211, 42, 80, 84,169, 26, 87,129,142,124, 39,180,160, -198,122,226, 59,133,137, 10,125,173, 46, 12, 33, 16,235,188, 55, 93,118,124,210, 34, 31,189, 98,185, 87,206, 91,246,125, 15, 75, - 75,210,108, 27, 7,222,189, 86,138,189,148, 47,195, 21, 48,163,205,202,181,101,229,113, 37, 36,240,149, 47,198, 50,217,177,184, -152, 33,185, 82, 55, 11, 89,100,220, 38,153,135,157, 19,160,162,152,174,177,144,100,241,190,112, 81,206,123,208, 75,192,232,175, - 68,112,157, 35, 21, 67, 44, 80,169, 22,158,183, 61,173, 25, 54, 8, 36, 73,202,113, 43, 48,183, 27,116,192, 56, 89,161, 19,144, -226,156, 24,239,113, 59,146,164,132,240, 43, 21,202,180,218, 77, 77, 84, 42,213,201, 84,106, 32,152,212,194,128,193,135,106,141, -247, 90,107,206, 74,220, 92, 42,241,193,172,214, 95, 68,148, 46,179,205, 9, 35, 49,140, 92,243,218, 80,152, 42,181,248,172, 83, -124, 38, 67, 83,186,146,247,142, 77,230, 89, 75,222, 17,207,217, 26,242, 96,202, 62,245, 84,155,237, 76,133,149, 69, 72,198, 99, -108, 50,194,185,178,103,123, 83,185,215,106, 70,130, 76,244, 45,151, 38,197, 94, 41, 5,167, 83,195, 8,161, 18, 14, 65,129, 70, -101, 91, 47,171,170,245,228, 75,153,184,199, 10,222,161,101,141,135,137,222,238, 53, 66, 94, 94, 45, 47,210,148,149, 99, 71, 88, -100, 7,143,127,254,143,241, 3, 47,127, 9,207,186,236, 76,122,107, 7,185,255,224, 94,238, 78, 28,163,209,152,213,213, 85, 82, -107, 73,198, 41,206,166, 88, 15,116, 89, 49, 68,113,143,133, 45,115, 44,204,207,101,245, 0,140, 65, 28,216,212,226,220, 8,196, -145, 90,235, 25,243, 89,115, 30,117,138, 26,131,137, 58,196,145, 16,247, 22,128, 8,179,208, 69,182,204,211,233, 26,146,100,133, -213,227, 75,140, 71,125, 22,151,214, 88, 94, 94,101, 56, 28,179,212,183,140,199, 99,186,234,120,250,174,136, 59,183, 94,194,215, -190, 24,193,161,207, 19,117,211, 44,157, 78,107, 97, 18,154,139,165,149, 94,180,247,160, 69,106,101,104,117,122,252,119, 67, 32, -125, 64,156, 12,202, 38,132,129,146, 2,127,157,209, 73,175, 25,242,135,177, 10,113,191,207,115,158, 61, 79,114,241,139, 88,189, - 59,165,103,250, 68,113,151, 56, 86, 14,165, 93, 6,135,239, 99, 75,122, 8,230,186,205,138,184,146, 58, 40, 51,245,169, 82, 39, - 3,158,202, 38,103,210, 96,142,233,212, 45,155, 67,239,235,154, 25, 39,232,173,111,228, 72, 66,108,173, 98,237,228,224, 43, 20, - 98, 94, 77, 43,104,137, 90,242,167,124,124,218,149,172,101,241,169, 89, 17, 90,101, 97,123, 96, 56,140,233,106,193,170,205,154, -186, 72, 17, 83,174, 27,171, 90,243,201,169, 41,233,122,178, 72,233, 93, 24, 95, 35, 61,111, 52,131, 15, 47,132,112,177, 11,202, -215,230,113, 95, 39,213,122,237,213,254,231, 65,126,183, 4,164, 38, 85,196, 68,152,121,101,110, 52,102, 52,206,188,128,140,169, - 55,168, 18,156,130, 21,208,228, 68,173, 58,243, 87,203,181,213,122, 38,121, 36, 66,152,178, 50,217, 80,162,234,221,185,133,237, - 92,112, 78,135,241, 61,139, 28, 24, 26,226,168, 84, 38, 46,128,191,157,214,201,124, 13,217,150, 65,209,134,176, 33,110, 56,120, -164,161,204,227,228,113,170,221,229, 13, 97, 60,181,172, 19, 32,121, 19,161, 56, 38, 29, 12,248,230,154, 66, 20, 99,204,140, 14, -204,170, 52,246, 34, 9,202,216, 22,240, 65, 3,232,164, 34,196,177, 33,181,100,196,168,112, 97, 54,101, 23, 53,157, 86, 9,173, - 1, 74,180,174,102,237,212,141,129,134,242,182,218, 64,144, 43,123, 31,212, 67, 88,147,249,233, 18, 32, 21,141, 43, 68,205,107, -214,105,144, 98,152,218,166, 52,231,183,135,115, 79, 74,226,231,122,189,221,141, 8,118,176,204,129,163, 43,108,127,236,115,120, -205,171,126,140,239,127,246,227,217, 54, 60,192,253,251,191,193,202,208, 50, 26, 15,176,137, 99, 56, 78, 25,141,255,127,222,222, -244,105,146,236, 58,239,251,157,123, 51,179,170,222,165,215,153,158,125,159, 1, 48, 24, 14, 69, 13, 23, 80,160, 22, 80,144, 32, -138,180,228, 77, 97,147, 10,203,146, 76,209, 54,101,109,161,144, 67,161,160,101, 57, 66, 97,253, 39,254,172,144,236,160,195, 14, - 47, 90, 24,150, 3, 48, 1,130, 34, 69, 44,131,217,122,102,186,167,183,119,173,170, 92,238,189,199, 31,110, 46, 55,179,170,222, -238, 1, 64,206,151,137,238,126,151,170,172,204,123,206,121,206,179, 52,120,231,168, 27,223,134,232, 24,108, 49, 99,182,216, 99, - 62, 43,176,214, 68, 87, 62, 99,176,198,162, 56,132,128,171, 43, 52, 56,234,218,113,190, 44, 9,222, 99,133,184, 31, 55, 57, 89, -102,217,223, 91,176,119,120,136, 49, 22,173, 87,172,239,127,196,253,179, 19, 78, 78, 79, 57, 61, 95,227,170, 6,111,114,202,144, - 17,154,138, 78,118, 91,105, 96,182,114,188, 84,220,163,249,220, 83,188,235, 43,228,232,223, 97, 10, 59, 34,243, 78,182, 84,211, - 21,247,168,192,139, 76,172,128,228, 2,119, 61, 54, 81,181, 71,137,149, 73, 87, 51,189,212, 84, 54, 17,155, 93,121, 14,105, 67, -120,116,226,248,211, 79,159,243,218,151,127,145,111,157, 62,203,188,250, 45, 52,207, 17, 23,168,230,129, 91,247, 13,230,206,119, -193,214,192,108,124,143, 41, 91,248, 41, 15,199,155,127,224,148,179,173, 3,189, 14,206,157,170, 59,221,102,183,157, 59,159, 70, - 58,167,252,224, 21,126, 39, 19, 94, 33,211,182,160,166, 77,137, 25, 69, 45, 78,246,235,201,116, 53,138,143,109, 33, 62, 67,103, - 35,155, 88, 39,246,187, 54,237, 19,165, 18,133,109, 11, 63, 15, 15,188, 31,113,222,199,218,230,222, 38, 51, 49, 84,209,196,181, - 75,101, 72, 11,235, 42,159, 73, 93,187, 91,216, 62,253,217, 50,105, 36,250,213,193,228, 67, 12,147,203, 42,169,116,167,131,143, -252, 26,169, 45, 70,242,152, 83,222, 53, 3, 33,178, 67,199, 80,244, 96,244,147,122,198,143,174, 43,131, 37,172,111, 15,105, 43, - 41,114, 32, 27,157,115,111,229, 99, 5, 61,125, 7,175, 22, 99, 14, 17,227,226, 28, 42,227,188, 60, 24,204,106, 76,119, 29, 81, - 76, 98, 56,210,121,158,234,198, 81,197,168, 89,145,222, 89, 46,217,221,233,116, 52, 31,143,140,218,134,213,155,164, 8, 25, 25, -115, 44,140,201,240, 70, 16, 19,153, 13,193,135, 17,169, 50, 61,106,130,234,133,157, 56, 45, 9, 50,141,170,213, 16, 80, 19,179, -219,133,184,238, 8, 70,250,134,119, 60,171, 38,218,251,233, 36,189, 77,222, 54,145, 36,109, 43,180,146, 88,240,202,148,224, 54, - 41,236,163,200,221, 13,114,225,132, 97, 62, 45,238, 27, 4, 57,221, 36,249, 77, 2,100,198, 45,121,218,192, 76,181,241, 41, 65, - 78, 55,138,214,224,244, 23, 17,177,229,209, 93, 30,248, 3,190,240, 23,254, 6,127,237, 47,253, 71,252,232, 13,225,227, 15,222, -230, 91, 71,103,168,247, 52, 77,205,122,181, 2, 49, 56,167, 84,117, 36,194, 25,155, 19, 52,144,205,102, 28, 30,236, 51, 43,178, -214,224, 74,193, 68, 35,170,160,158,106, 93, 82, 46,207,168,170, 26, 87, 87,172,171, 10,215, 52,209,195, 33, 47, 40,138, 25,118, - 54, 99,239,240,128,189,217, 12,209,154,213,201, 3,238,223, 63,226,222,253, 99,206,206, 86,120,231,112, 33, 32, 26, 88,228,129, -134,134,186,172,201,172,162, 54, 71,131,114,234, 28,243, 42,240,202,225, 25,229,171,207,241,241,111, 63, 96,222,124,140,228,123, -125,126,194,198, 17,188,227,116,151,196, 25,110,100,195, 45,219,167,103, 77,134,140,158, 95,196, 67,172,109,135,187,184, 99, 25, - 15,175,177,189,167, 36,217,179,164, 49,185,211,196,193,123,103,129, 87,243,251,252,220,127,252, 39,249,120,255, 79,177,122,247, -119,153,211,176,110, 44, 87,178,134,119,242,167,184,245,206, 71,204, 86,239,192,222,222,133,140,179, 93,249,233, 35, 34, 46,187, - 37,232, 27,109,105,186, 27,122, 4,214,218, 32, 41,157, 58,104,232,214, 70, 74, 30,214, 97,236,224,252,125, 95,133,253, 81,191, - 73, 32,203, 76, 59, 29,203,152, 43,164, 41,105,105, 98, 67,202,196,134, 51, 6,158,176,225,236,149,234,161,117,242,239, 3,188, - 61, 20,227, 62,183,185, 37,181, 5, 25, 79,238,182,251,221,237,200, 16,116,139,164, 35,241,220,150, 13,219,216,105, 87,171, 19, -166,249,216,191,122,219,134,103,164, 80,215,116,194,107, 95,161,201, 81, 12,165,120, 76,166,224,194, 72,255, 62,124,173,244,161, - 32,134, 24, 75,232,208, 78, 37, 54,214,184, 79,128,160,166,127,189,102, 3,130,234, 95,111,136,254,234, 70,149, 91, 15, 60,230, -224,128, 43, 7,107,234,165,167, 73,116,227,221,129, 97, 18, 35,149, 32, 99,251,216,192,184, 29,221,194,255, 31, 33, 4,208, 33, - 10, 67,150, 60, 42, 41,137, 97,251, 94, 76, 82, 80, 75, 38, 80,189,144,181, 69, 55,104,204,253, 83,191,157,192, 38, 73,113,218, - 5,156,181,104,250,232, 6, 10, 62,180, 13,132,217, 16, 81,110,115,199,191, 48,218,245,162,246,125,155,180,107,203,212,181, 57, - 85,109,119,143,211,173,211, 63, 27,197,125, 96,191,235,184,193,217,150,206, 54, 56,226, 12,210,194, 41,156, 62,225, 19,104,210, - 39,117,108,203,233,110, 93,196, 64,104,184,247,201, 29,242, 39, 63,199,175,254,234,223,229, 63,253, 83, 63,134,156,222,226, 91, -223,185,195,114, 85, 82, 85, 21,174,169, 89, 87, 53,190,241, 88, 19, 3,166, 66, 0,107, 12,121, 97,201,138,125,246,247,247,163, -194,202,251,190, 97,200, 76, 68,220,202,243,115,206,206,206, 41, 87, 37, 94, 29,231,171,146,106, 89, 98, 12, 20,179, 25,179, 34, - 39,155, 21, 28, 94,190,196,165,131, 5,235,178,225,254,189, 99,142, 79, 78, 89,175, 74, 74, 31,121, 63, 62, 4,212, 7,188, 40, -103,165,199,107,192,185, 64,225, 2,121,161, 52,106,104,156,195,107, 32, 95, 85,188,122,101,193,241,179,175,177,250,246, 93,230, -254, 24,102, 7, 45,167, 38,209,241,168, 62,180, 22,244,168, 71,154, 85,159, 16, 65,199,177,196, 83, 5,209, 67, 40,219, 41,227, - 94,132,113, 62,192, 84, 13,145,134, 53, 73, 95,220,141,192,131,165,231, 74,117,143,191,250, 87,190,128,252,232, 95,230,238,111, -223,193,134, 99, 42, 44, 7,234, 49,215,246,249,157,239, 5,194,247,190,138, 41, 60,176,183,241,234,250, 38,230, 81,210, 77,119, -206,203, 23, 44,251,119,164,237,237,186,238,219,225,247, 93,159,209, 35,160, 34,187,154,183, 31,104, 98,191,192, 62, 86,163,215, - 12,157,162,113,244,198,100,112,169, 10,201,117,148, 94,230,146, 56,125,117, 19, 92,239,177, 60, 28, 0, 41, 60,189,141,249,220, -221,222, 65, 67, 43,143, 18,108,231,208,150,208,176, 13,105,222,185,144, 17, 35, 89,157, 14,154,247,238, 13, 24,209,158, 53, 30, - 77,101,116,212, 76,200,164,203,141,147,146,105, 51,201, 37,177,188,222,180,172, 28, 32,234,212, 64,120,208, 58, 75,203,114,206, - 90,109,179, 11,221,190, 62,202,214,172,164, 5,107, 32,117, 9, 66,214,165,204,109,129,120,134,181,138,233,225, 57,209, 36,134, -117, 90, 20, 36,167, 51,253,205,114,160, 57, 37, 4, 33,136,233, 39,127, 73,215, 28,162, 73,210, 92,183, 94,232, 50,235, 45, 42, - 33,113,188, 79,118,162, 91, 31,175,212, 97, 79, 54, 34, 13, 55,240, 55, 29, 8,107,227,125,247,248,203,250,162,144,124,226,211, - 20,176,169,212, 80,146,201,125,240,103, 81,210,176,151, 84,226, 22, 66, 24,144,155, 48,149,103,233, 70,231,157,194,254,219,136, -108, 23,177,227,217,162, 61,151,100, 69, 48,109,172, 54,243,212, 91, 91, 80,101,187, 73,205,100,245,177,185,151,223, 94,156, 73, - 12,102,186,176, 18, 73,140,103, 82,180, 97, 4,213, 78,108,164,117,242, 59,197, 24,124,185,228,246,189, 99, 94,249,169,175,240, -183,255,206,223,228,167, 95,189,206, 71, 55,191,199,253,179, 53,235,178,162,170,107,214,101, 69, 93, 87,132,160, 4,239,219,204, - 30,161, 40,114,140,205,216,219, 91, 48, 95,204,227, 57, 33, 38, 50,218, 5,130,177,120,215, 80,215,107,206,206,215,172,151, 75, -156, 11,148,235, 53, 77,211,208, 56, 79,134,199, 7,135, 61,216,231,250, 19, 79, 96,141,165, 94,158, 80,214,129,179, 85,131,115, - 14, 31, 2,161,169, 8,190,137,106, 23, 1,130, 71,172,193, 18,159,171,198, 53, 72,104, 57, 45, 98, 9, 42,172,188,225, 82,189, -226,229,167, 23,252, 78,253, 19,156,125,242, 62,217,234, 14, 5, 43,108,110, 33,155,197,198,127,139, 60,113,163, 61, 78,228,196, -155, 7,121, 23, 30, 51,245, 91,148, 71,247,148, 79,205,160,166, 13,111, 66, 74,238, 60,169, 72,166,119,177,134,251,103, 53,123, -171, 7,252,205,191,252, 69,158,253, 83,191,202, 55,190,115,138,158,190, 31,213, 38, 33,112,237,138,229, 55,151,215,184,249,255, -253, 63, 28,184,155,176,119,249, 2,142,128,236,104,103,183,163, 24,125,114,228,163,214,208,135,140,200, 27,211,255,200, 27,224, - 33, 77,198, 31,144,100,253,211,116, 2,153,111, 33, 82,233, 3, 81,100,180, 19,235, 96,230, 33, 88, 68, 71, 1, 87,163,253, 79, -123, 34, 5, 77,215,150,131, 89,133,142, 32,236, 97,159,234,101,232, 70,163,164, 98,128, 99, 67, 82,116, 66, 27,117, 58,250,251, - 45,243, 99, 7,229,119,240,172, 85,122, 63,249, 49, 12, 98, 64, 50,144, 16,141, 58,132,177,107, 86,194,150, 87,166,238,110, 45, -252,217, 59,209, 17,245, 74, 94,192, 24, 84, 2,248, 16, 97, 94, 41,144, 44, 39, 15,235, 94, 58,152, 54, 80,125,193, 8,155,159, - 92,122, 63,118,114,182,172, 53,145, 8, 29,163,123, 92, 78, 81,175,232,226,144, 69, 81,226,151, 43,154, 96,192,195,169, 83,140, - 25, 28, 2, 83,102, 65,148,234, 69,185,143,168, 35,132,110,111,111, 49,166,213,190,235, 96, 72,180, 67, 7, 17,155, 1,141,159, -213,136,153, 45, 23,192,225,125,243,167, 19,146,152, 12,235, 7,137,172,116,215, 22,244,238,245, 61, 18, 73,104, 4, 65,235,100, - 58,144,150, 1, 61, 60,196, 62,132,237,223, 59,202, 6,215,205,169,103,231,225,185,141,228,182, 89,136,187,102,178, 79,156, 99, -128,228,173,200,144,137, 48,133, 24, 68,182, 63,239, 91,180, 54,187,162,104,199,175, 71, 70,159, 91,234,207,176, 13, 61,144, 9, -122, 48,181,224, 21,137,107,147,242,244,136, 79, 78, 75,126,246, 47,252, 50,127,247, 87,255, 11, 30,207,215,124,239,189,247,169, -154,192,122,185,100, 93,150, 17,238,246, 1, 31, 32, 52, 14,231, 61,153, 53,100,197,130, 60, 51, 44, 22, 11,102,179, 25, 94, 3, - 33, 40,153,205, 80,245, 72,251,188,157,175,214,172,206, 79, 40, 43,199,122,121, 14, 98,168,170,134,224, 26,188,107, 56, 58,122, -192, 19, 79,222,224,153,151, 95,101,150, 89, 78, 78,142, 56, 63, 93, 17,124, 77,227, 42,124, 93,225,155, 6,239, 66,139, 70, 6, -196, 8,222,195, 76,104, 21, 18, 1,181, 5, 4, 79, 46,138,201,108, 60, 75,140,225,188,130,103, 22, 21, 47,124,225, 57, 62, 42, - 63,195,205,155,119,120,240,201, 39, 44,239,221, 34, 91,221,101, 46, 75,164, 40, 16, 59,219, 46,101,219,121, 39, 39, 77,212, 72, -115, 42, 59, 27,108,189, 16, 6,224,161, 58,172,177,192, 98, 24, 68,238,222, 63,229,138, 89,241,183,126,229,223,227,181, 47,255, - 18,191,243,157, 59, 44, 63,254, 30,190, 89,163, 65,121,114,223,240,201,254, 83,124,245,255,126,151,217,189,175, 99,246,246, 54, -230, 89,157, 82, 76, 46,150,167,111, 16,217,244, 33, 54, 52,187, 43, 54, 59,121, 66,187, 25, 11, 23,193, 6, 99,178,244,182, 10, -220, 63,215,127, 16, 61,128, 64,230, 21,156, 70, 41, 67,202,160, 14,237, 65, 55,236, 23,180, 13, 37,148, 36, 89, 41,140,166,160, -116, 11,218, 67,224,201,141,209, 69,148,118, 69,164,243, 43,238, 63, 46,163, 88, 21,188,166, 83,247, 56,174,212,247,249,194, 3, -132, 47, 58,118, 84, 27,241, 57, 69, 7,137,212,104,242, 25, 74,130,177,194,129, 42,181, 23,234, 36, 49,110,170,153,239, 13,111, - 70,251, 96,250, 56,203,248,186, 28,174,233,118,163,209, 84, 85,213,163,198,242,184, 21,202, 74, 57,213,214, 72,166,109,162,186, - 68, 58,223, 65,225,157,241,205, 86,242, 84,251,218,181, 51,118,137,100,188, 78, 3, 32, 42,120,107, 17, 74,102, 56,106,137,166, - 59, 86, 34,122, 48,124,190, 67,131,213,203,150, 91, 25,153,161,117,204, 19, 25,249,156, 27,209,173,201, 70,163, 63,107,123, 79, -180, 46,127, 97,178,133, 18,182,192,134,210,161, 53, 19,144,187, 11,212,233,229,139, 29, 68,174, 35, 83, 43,221,178,179, 26, 61, -127, 45, 7,195, 76,157,162, 18,166,206, 5,219,188, 17,249, 76, 85,119,154,206,108, 39,166,209, 91,119,234, 86,189,187, 36,108, -244, 49,140, 77,226,218, 38, 64, 33,130,163,187, 22,201, 61,215,230,206, 71, 17, 65, 24, 45,241,119, 54, 21, 50, 94, 75,109, 54, - 49, 19,159, 10,217, 30, 86, 52,142,179,221, 78,229, 49,198,112,118,116,143,179, 48,227, 63,251, 91,191,198,127,245, 75,127,142, -112,126,143,247,110,157,144,217,130,242,252, 46,231,203, 21,193,123,188,247, 81,162, 6,212, 62,182,137, 54, 47,216, 63,220, 39, -203, 50,242,220,182, 41,120,113, 66,206, 44, 32, 25,203,179, 99,170,178,228,236,124,201,122,185,162,172,106,234,218,145, 9,212, -213,154,170,170, 57, 61, 62,102,113,233, 50,111,252,228, 23,185,180,191,224,238, 39,183, 88, 45,215,172, 43, 71,181, 94, 81,175, -214,148,235, 10,239,125,159,242,102,218,251, 38,100, 25, 62, 40,193, 85,104,240,100,214,210,168, 68, 43,218, 86, 18, 42, 88, 36, - 19, 60,134,107,171, 83,174,205,150,188,246,153, 5, 39,175,190,206, 39,231,159,229,163,123,231,220,126,239, 67,194,157,119, 89, -148,119,201, 10, 19,247,238, 98, 18,164,228,225,146,172,169, 53,250, 56, 16, 71, 38,108,151, 45,149, 40, 73,223,123, 8, 13,110, - 56,219,141, 80, 59,207,189,187,247,248,204, 51,215,248,107,127,249,175,112,227,115, 95,224, 55,191,241, 54, 39,119, 63,198, 53, - 53,214,192,149,153, 69,174, 63,206,191,248,198, 61, 86,191,251,127,112,105,166, 27, 18,191,141, 76, 70, 73, 88,228, 59,194,155, -198,239, 87, 55,220, 24,183,190,250, 71,177,154,190,160,140,127, 42,111,249, 11, 16,128,157,138,148, 31,104,183,190, 27,118,200, -178, 20,126, 87,105,167,219,168, 93, 20,237,166,244, 24,110,162,125,145,143,161, 44,221, 65,101,218,125,151,151,177, 12, 76, 72, - 82,162,218,239, 53,109, 5,246,163,180,179,182,247,234, 50,218,101,216,170,154, 68,131, 59, 16,161,232,243,216, 83,153,153, 38, -146,175,142, 10, 98,218, 74, 24,146, 61,120, 72, 63, 21,117,168,131, 70, 50,212, 64, 80,135, 85,165,179, 56, 49, 73,136,204,192, -202,214,141, 84,182, 97, 26,141, 76, 59,151, 28,216, 34,129, 80,173, 57, 22, 19, 27, 35,137, 5, 44,235,157,187,162,140,205, 3, -134,208, 87, 91, 59,105, 8,211,143,113, 72,207,139,187,230, 66,162,138,161, 34,198,123, 26,117,172,215,130,145,140,133, 9,241, - 58,233, 56,198, 53,103, 64, 34,186,232,198,224,253, 16,220,210,190,158, 94,115, 31,118,247,176,134,193, 13, 45,176,189,251,237, - 56, 4, 3, 33, 43,140,110, 82, 43,131, 34, 66, 53,153,208,147,131,192,244, 65, 59,227,226,170, 23, 60,152, 35,214,184, 78,217, -223,210, 35, 58,155,136,120, 66, 40,210, 93, 16,246,150, 34,173, 59,108,176,118, 25,217,244, 15,253, 64, 42, 29,248,133,241,190, -117,170, 88,157,184, 48,202, 48, 65,245,168, 84, 94,224,189, 71, 59,114,134,240,208,195, 91,100,219,250, 64, 18,102,180,238,108, -106, 71, 14,116,233,242,173, 95,155, 25,142,238,221, 38,236, 61,206,223,249,123,255, 29,255,201, 87,190,192,189, 91,239,115,188, -242,236,239, 31,112,239,147,143, 57, 62, 57,110,249, 49, 74,240,129,166,169,241, 62, 80, 20, 25,198,102, 28, 94,190,204,124, 62, - 71,212,247,106, 26,107,163,134,197,121, 71, 85,214,156, 47,215,148,229,154,213,106,133,115, 17,121, 83,133,163,147, 19, 80,229, -228,228,148,197,222, 62, 95,254, 51,127,134,235,215,174,112,243,131,155,156,158, 46,113, 77, 77, 8,142,243,117, 77,185, 90,225, - 85,240, 65,113,222,227, 67,155, 95,174,158,220, 26, 92,128, 38, 8,234, 37,198,238, 26,193, 99, 9,170, 56,175,100,248,136, 72, -212,142, 59, 98, 97, 21,200,252, 41,135,133,240,228,225,140, 55, 62,115,137,251,159,249, 49,190,119,244, 22,223,251,238,135, 28, -191,243, 59,236,157,190, 79, 49, 87,164,216,111,189, 44, 38,112,244, 67,152,239,253,222, 29,122,211,170,221, 5, 79,118, 35, 57, - 23, 16,247, 64, 56, 57, 61,165, 94,175,248,249, 63,254,147,252,135,191,248, 75, 44,179,235,124,245,107,191, 67,185, 60,193, 59, - 71, 46,158,195,220,178,127,227, 49,126,253, 59, 21,239,255,198,175,115, 37, 63, 71,243, 75, 23, 22,213,225,153,188,120,143,157, -222, 95,143, 44,162,127, 84,125,186, 76, 81,223, 79,131,171,127,154, 52,185, 63, 0, 84, 94, 32, 83,105, 99, 32,219, 2,105,176, - 4,217, 7, 60, 38,212, 4,175,248,214,234,219,244,197, 57, 61,242,226, 65,110,204,144,143, 46,189,197,103,215, 81, 73, 47,132, -183,173,251,144,237,161,213,100,170,208,225,112, 50,210, 25,204,180, 14,119,109,113, 53, 9, 1,106,148, 36, 38, 3,193,109, 20, -133, 42, 83,233,207,150, 52, 37,133,181, 24,196, 42,135, 82,160, 62,112,234, 27, 64,218,216,129,228, 5, 38,201, 44,169, 18, 99, -216, 7,179,145,197,208,201,119, 74, 18, 87,184,142,133,223, 18,250,124,130, 3,249,238,125, 38,186,224,160, 9,243,121,100,248, - 17,226, 4, 97, 38,221,181,137, 78,246, 26,124,123, 93,101, 99, 79,223, 53, 14,190,135,206, 59, 24,122, 8,165,145,182, 66,171, -108,246,255, 38, 33,230, 4, 6,143,127, 43,137, 70, 57, 41,158, 83,191, 3,213,109, 98,196,177,150, 54,144,154, 11,203, 70, 20, -175, 60,228, 49, 83, 54,134,114,198,206, 16, 58, 76,243, 27, 63, 40,241,124,111,149, 0,250, 8, 93,255,174,194,191,141, 97,190, -139,207,188,177,151, 38, 34,106, 99, 60, 76,134,144,164,246,107, 15,114, 67, 41,202,186, 14,137,212,127,208,127,202,136,245,190, -107,223,158, 68,166, 74,183, 87,213,205, 96,183, 17, 90, 48, 28,206,154,196,190,222,191,115, 27,115,233, 41,254,193,127,255,143, -249,185, 47,190,193,251,239,190,205,178, 81,174, 95,187,198,131, 59,183,184,115,247,110,108,200,189, 39,104,160,118, 13, 33, 64, - 81,204,193, 8,123,123, 51, 14,247, 23, 56,215,224,188,199,100,115, 22,123,115,130,171,169,202, 21, 85, 93,179, 60, 95,226,189, -231,252,108,137,250, 6, 99, 50, 92,211,176, 60, 63,143,251,249,245,138, 98, 54,227,203,191,240,243, 60,113,227, 58,183,110,126, - 64, 93,215, 52, 78,105,154,134,117, 25, 89,241, 98,132, 28, 67,240, 66,150, 89,124, 8,120,223,196, 21,154,119, 24, 43,204,102, - 57, 85, 9, 33, 40, 18, 4,131,235, 73,192, 34,177, 33, 8,193, 49,203, 13,193,204, 57,175,224,172,105,144,115,207, 65,190,230, -133,235, 71,188,254,220,227,220,122,225, 85,254,221,189,207,240,123,223,254,152,163,223,251, 58,251,167,111, 83,204, 3,228,251, - 32,118,212,224, 93, 84, 74,100,219,100, 46, 92, 56,201,110, 11, 45,217,220,212,196,247,179, 94, 47, 57, 58, 58,229,249,103,158, -228, 23,127,249, 47,241, 19, 63,251, 21,222,190,121,194,135,255,246,107, 40, 13,222,206,160,241,236, 23,134,171, 79, 63,201,255, -245,190,231,223,253,159,255,156,203,114, 23,153, 93,109, 21, 33, 60,212, 53,110,107, 99,185,241, 44,167,218,240, 71,204, 59, 31, -167,233, 60,164, 60, 79, 78, 22,209, 11,126,141, 78,164,164,187, 47,244, 69, 45,203, 15,107, 90, 79,127,142,253,169, 55, 95,255, - 31, 92,221, 36,248,255, 1,228, 87,225,192,146, 29, 56, 14,172, 99, 17,192,180, 46,112,140, 46,148, 36,140, 75,105, 59,243, 13, -161, 83, 79,122, 27,171,205, 37,209,111,109,218,142,245,158,227,116,113,167,131,227,154, 38,113,154, 42,178, 83, 79,216, 29, 44, - 41,141, 36,237,200,198,114,181,128, 37, 48,163,128,194,112,197, 58,140, 23,214,233, 71, 40,131, 8, 47,104, 58,125,110, 47,152, -211, 63,153,228, 79, 70,166, 81,165,202, 16,138, 22,255,228,181, 99,163, 78,182,240, 50,190,177,226, 62, 60,244,197,213,135,208, -251,103, 55,158,222, 81,111,219,150,110,163,241,209, 68,169, 32, 3,212,183, 25, 70,147,188,151,241, 22,118, 84,116, 68,198,215, -103,163,224, 38,121,172,227, 16,145,241,127, 67,240, 79,154, 41,254, 72,243,200,152, 25,180,229,225, 30,249,208,111,249, 65,227, -173,241, 69,191,100, 59, 59,119,219,154, 66,164,187,159,146, 5,148,145,221, 48,253,228, 48,217,133, 80, 68, 91, 83,109, 9, 92, -201,235, 78, 60,217,165,187,135, 38, 50,195,222, 29, 48, 53, 37,209, 97,229,182,109,208, 75,100,236,163,100, 57,107, 12,247,239, -124,194,236,250,243,252,195,127,252, 79,248,210, 91,175,241,254,251,239,177,246, 18, 11,250,221, 91,188,255,193,205,182,128, 41, -206,185, 22,126,119,204,231, 11,242, 89, 30,239,157, 44,199,218, 12,149,140,195, 43,215,184,113,227, 9,212,213,156, 30, 63,160, -170, 42,214, 85, 77, 93, 85, 84,101,201,106, 85,146,231, 25,117,213,112,124,124, 66, 93,215,212,101, 77,240,129, 47,255,194,207, -241,218,103, 95,231,253,119,223, 97,121,126, 70, 83, 55, 52, 77, 77, 85, 59,188,107,147, 29, 90, 98,158,247,158,224, 29, 33,120, - 66, 8, 61,215,200,180,242, 88,167,218,194,133, 33, 78,243, 34,100, 89,134, 49, 89, 76,225,211, 64,102, 4, 91, 20,172, 75, 15, -190,194,230, 6,135,225,184, 20, 78,238,159,113,101,245, 9, 63,246,132,231,179,175, 63, 79,241,226,155,220,205,158,230,244,168, -194, 44,239, 97,117,141, 24,155,196,147,202, 14,166,246, 20,228,149,209,231,146,124,200, 59, 52, 88,178,113,159,198, 91, 38, 80, -173, 87,220,187,247,128,124,182,199,159,253,185,159,227, 87,254,203, 95,225,181, 55,223,226,119,191,243, 62, 31,124,247,219,100, - 77, 69,158, 65,163,202,213, 92,121,242,185,167,249,215, 31, 11,191,241,207,254, 41, 7,229, 77,178,131,203, 23, 44,196,166,251, -232, 71, 53,208,211,239,175, 12,234,163,253,243,116,133,204, 5, 92,160,161,168,202, 35, 84,224,100, 88,249,125,254,111, 54,155, -145,137,132,126, 18,140, 55,118, 67,224, 12,177,142,189,194,243,188, 8, 87,130,242,225, 90,249,128,168, 63, 55,140,205, 17,186, -105,179,183, 32,108,211,206,180, 77,243,138,187,209,208, 78, 95,227,176,144, 65,223, 60,182,110, 13, 29,195,187,253, 37,190,101, -152, 25,134, 32,151,142, 72, 20,182, 20, 13, 73,119,182,147,232,214,254,231,144, 10, 44, 20,175,194,185, 47,177, 10,179,214, 15, -126, 76, 26,212,201, 14, 82,122, 18, 81,127,160,245, 0,169,236, 60,144,199, 69,114,216, 37,143,164,117,157, 5, 43, 50,161,193, -140,227, 81, 59,222,128,215, 33,139, 88, 53,208, 52,161,109,104, 36,201,106,219,110, 88, 97, 70,127,167,163,105, 50, 36, 5, 49, -104,210,140,232,120,231, 63,105,157,226,123,109, 47,178,129, 17, 17,109, 52, 29, 38, 67,163, 73,141,117, 82, 94,239, 72,195,222, - 33, 23,186,209, 0, 76,143, 42, 29,125,110,143, 96, 63,153,230, 99, 39, 40,144, 36,174,106, 42,105,225,213, 20,170,217,217, 86, -236,234,244, 85,199,157,188,244, 3,194,166, 28,108,152,166,217,226,235, 22,247,234,210,115, 86, 82, 34,235,112,168,167,147,248, -136, 52,167,108, 16,233, 6, 2, 86,167,128,216, 21, 27, 42,131, 46,186, 35,245, 25,195,131,187,183,153, 93,123,154,127,244, 63, -254, 19,190,240,185,103,121,239,253,119, 9,146,115,227,241,235,156,220,255,132, 15,110,126,140,205,114, 20,168,203, 38,194,224, - 46, 96,242,130, 60,179, 72,150,113,120,233, 58,135,135,151, 41,138,130,162, 40, 56,152, 23, 28,221,187,205, 39,183, 62,166,106, -162,223, 66,240,129,178,113, 44, 87, 34,121, 94,107, 0, 0, 32, 0, 73, 68, 65, 84, 37,214, 64, 85, 86,156,158,156, 83, 55, 13, -206,121,234,186,226,167,127,230, 11,252,248, 79,188,197, 71, 31,221,225,193,189, 7,160,158,170,170,250,143, 47,183, 16, 40,168, -214,107, 64,169, 27,199,122, 93,246, 5, 93, 18, 52,179,170, 27, 22,179,156,202,102, 17, 1, 40,242,248, 92,104, 0,137,185,237, -153,180, 53,223, 59, 76,102,105, 26, 65,154,134, 60, 11, 56, 85,238,215,142,211, 74,185,187,190,203,211,151,142,248,217, 27, 87, -248,236, 23,175,243,187,175,252,105,190,253,237,155,156,190,247, 29,138,211,155, 20,230, 12,201,243,232, 78,215, 67,243,122, 65, - 27,169, 23,175,117,166,142, 55,163, 14, 59,224,235,138,213,106,197,202,103, 92,121,252, 73,190,242,165, 63,203,151,255,196, 31, -229,115,159,121,145,187, 15, 78,248,234,215,190,193,234,228, 94,139, 66,236, 81, 87,231, 60, 54,135,171, 79,189,200,191,252,206, -125,254,213,255,242, 79, 57,168, 63, 38, 63,188,210, 27,126,245,234,239, 73,240, 16,147, 97,115,155, 64, 75,182,160, 18,155, 18, -102,189,176, 90,239, 22,209,178,149,184,186,161, 15,219,213, 70,108, 12, 9,219, 19,244,126,255,235,248,230, 59,204, 84, 7,232, - 49, 4, 8,172,160,172, 8, 94, 40,115,165, 81, 56,245,194, 73,122,128,245,124,139, 54,163, 58, 64,192, 68,190, 78, 7, 55,183, -155,121,140,137, 77, 64, 43, 11,105,249, 39, 35, 40, 69, 49,136,116,161, 44,154,248,191,167,215,108,176, 84,221, 22,196,161, 9, - 11,120,202, 95,216,238,188,148,162,172,157, 27, 94,252, 87,239,225,110, 18, 33, 26, 18,143,108, 77,166,157, 41, 13,172,127, 95, -146, 60,100, 67, 90,101, 63, 21,155, 9,224,163,108,103, 70, 51, 41,148, 38,125, 0, 52, 45, 14,147,155,191, 61,252,131,106,143, - 84,200,142, 41,189, 91,171, 4,166, 46, 74, 61, 13,123, 36,229, 11,108,211,206, 71,141,190,216, 24, 12, 19, 90,246,184,145,212, -207,126,115,113, 37,173, 62, 94,219, 2, 54, 36,147,117,236,254,225,222, 76,217,217,157, 83, 97, 15, 41,235,195,202,182,108, 89, - 79,142,105,175, 27,235,183,196,126, 85,183,216, 70,117,211,118,211,178,240,243, 29,228, 37,213,237, 20, 92,221,210,182,135, 41, -138,176,229, 52, 49, 59,229, 80,109,241,157,154,205, 76,224,247,173, 48,164,236, 98,241,140, 77,113, 96, 83,199, 46, 35,144, 77, - 16, 35,156, 62,184,135,159, 95,227, 31,252,218, 63,226,103,222,120,145,239,190,243, 46,106, 11, 30,127,236, 49, 86, 39,247,249, -224,230,135,228, 69, 78,240,158,166,172,104,234,154,198, 5,102,179,130,249,172, 64,141,225,233,167,158,225,218,245,235,228, 70, - 34,187, 60,120,110,221,250,136, 15,110,222, 36,203, 11,102,243,121,156,238, 85, 9,206, 35,170,212,117,205,233,217, 18, 87,215, -228,153,229,232,232,152, 87, 94,122,142, 63,242,197,159,166,174, 26, 62,254,232, 35, 92, 83,227, 3,148,181,139, 33, 47,170,248, -160, 45,137,215, 80,175,207,104, 92,220,221,219, 44,202,207, 92,227, 80,239, 49,121,148,207,121,231, 90,107,225,168,200, 80,175, - 56,107,200, 53,144,181, 76,248,178, 9, 88, 83, 51,203, 11,154,210,224,212,199,123,189,187,159,196,114,230,148,239, 28,121,228, -232, 62,215,237,109,126,252,218,130,215,126,252, 6,239,188,250,199,120,251,221,219, 28,127,248, 62,254,228, 14,102,125,134,248, - 37,198,132,214,215, 34, 68, 22,126, 86,128,201,183, 70, 59,111,171, 63,253,218, 37, 4, 84, 3,218, 84, 52, 77, 67,229, 2,141, -153,179,119,249,113, 94,122,253, 21, 94,127,253,117,126,242,205,215,248,204, 11, 79,114,126,126,198,239,126,243,183,184,251,224, -152,114,181,102, 63, 55,132, 34,227,228,220,241,196,254,156,203, 79, 63,201, 63,255,205,143,248,234,255,250, 79, 57,228, 1,197, -193, 21, 34, 80, 56, 52,228,169,231, 1, 27,136,147, 92, 64, 80,125, 24, 68,125, 1,165,252, 83, 56,189,140, 28,253, 54,208, 15, -125,200, 58,126, 50, 56,110,109,237, 31,174, 50,248, 97,238,221, 51, 35,137,171, 86,207,207,240,216, 74, 88,213,134,239, 26,101, - 46, 49,133,173,147,148,133,214, 95, 74, 53,131,108,129,177, 21,210, 52, 52,206,224,141,144, 75,100,115, 75,155,204, 38,173,251, - 92, 42,159,234, 46, 85, 72, 62,226,110,119,222,237, 98, 7,189,252,112, 96,244, 7,137,234,216,133,173, 23, 51,167, 12,252,225, -195, 49, 35,120,155,129, 14, 40,169,202, 93, 91, 66,221,240, 32, 12,112,120, 59,127,107, 68, 53,212, 26, 10, 9,152, 0, 85, 18, -203, 41, 91,128, 34, 77, 38, 47, 73,102,252, 48, 6, 17, 70,197,114,120, 95, 38,229,168, 77, 10,217, 22, 90,108,187, 27, 23, 1, - 47, 54, 6, 93,180,186,243,192,192,182, 79,239,125,191,109,111,213, 54, 35,102,195,150,118,124,200,247,117,194, 8,179,220,226, -235, 24,131,105,140, 14, 65, 96, 9, 23, 64,182, 52, 99,210,123,155,104,235,197,170,173, 90,162,141,166,156,172, 83, 6, 20, 99, - 75,193,217, 2,241,143, 3, 76,116,162,143,223, 13,236,245,201,100, 91,178,190, 85, 35,153,234,250, 83,207,145,171,227,246,173, -143,177, 89,182,245, 64, 21,177,131,247, 80,136,234, 0, 73,125,191, 39,107,136,241,129,161,219, 15,146, 78,126, 57, 9, 93,218, -125,178,232, 64,126,155,116, 50, 50,162,151,142,204,152,147,105,126,187, 37,174, 38,207,157, 49,134,213,233, 49,167,206,242,247, -127,237,215,248,202, 31,121,147,111,127,231,109, 76, 49,227,177,107, 87,169, 86,103,124,251,237,239,181,201,106, 66, 85, 53,248, - 16,200,108,206,124, 22, 51,201,171,170,230,133,151, 95,230,198,141,199,168,171, 10,103, 12,133, 17,238,222,187,199, 71,183,110, -147,181,147,124,211,196, 61,184,119, 13,120,135,119,142,117,217, 68,210,154,115, 84, 85,205, 98,150,243,135,127,226, 45, 46, 93, -185,198,187,239,127,196,241,209, 81,219, 11,121, 16,203,170, 44,153,101, 2,121, 65,189, 94, 99,172,165, 10, 22, 85, 71, 49,155, - 33,170, 52, 77,221,163,129, 6,197, 26,161,106, 98,209, 15, 1,154,166, 33,107,157, 14, 53, 68,114, 95, 36,211,197,230, 86,178, -120, 93, 10,235, 49, 54, 35,120,199, 44,183,125, 62,187,201, 44, 33, 40, 31, 85, 25, 31,127,184,230,218,236, 61, 62,119,121,193, -203,159,191,202,157, 87,254, 48,247, 79,107,142,143,207,168,170,146,117,229, 40, 87,145,201,223, 44, 79, 49,203,251,100,254, 12, - 43, 14, 99, 77, 43,165, 29, 58,255, 16, 66,187, 74,208, 24, 46,164,224, 37,199,139, 69,138, 61,138,195, 27, 28, 94,186,194,203, - 79,220,224,249,231,158,227,181, 23,159,230,217, 39, 31,227,138,173, 89,159,159,240, 91, 95,255,152, 7, 39, 75,202,229, 10,131, -103,182,183,199,202,103,152,179, 21, 47,220,184,206, 74, 22,252, 79,191,254,111,248,189,175,254, 75, 46,207, 2,118,126, 53,114, - 13, 18,130,169,208,234,252, 71, 85,115,130, 43,124,138,170, 38, 27,137, 28, 15, 69,189, 47,116, 98,215,148, 46, 53,106, 18, 30, -238,254,247,136,158, 57,191, 63,236,185, 11, 76,109,178,142,225,237,146,152,207,142, 16, 38,196,130, 85,107,204,105,238, 64, 98, -219,217,154,106,141,247, 6,151, 89,230,251,158,107, 21,156,213,194,121,235, 88, 96,213,247,123,239, 65,154, 51,248,176,167, 26, -100,219, 79,204, 25,166,213,141,251,132, 1, 63,216, 33,134,126,186, 75,139, 93,106,218,209,215,183,196, 57,205,140, 74,150, 65, - 77,100,159,103, 68,180,161,238, 88,241, 9,217, 79,250, 2, 25,175, 71,199,104, 23, 34, 25,102, 4, 39, 36,175,163,103,242, 74, -106, 51, 51,252, 91, 72, 12,121, 82,104,223, 51,202,207,232, 65,252, 60,217, 43,143,166, 86, 6, 93,189,182, 48,168,237,155, 16, -195, 60,207,217,199,113, 90, 57,154,100,127, 59,242,239, 15,155,152, 70,186, 31,239,224,199,148,157,167,201,245,137, 15,109,220, -236,187,170, 34,196, 78,113, 12, 94,245,121,182,105, 38,183, 14,126,251,161,101, 6, 36, 18,174,254,147,237,246,231,163,162, 39, -109, 70,252,197, 19,250,118,201,221, 38,151,246,162,103, 78, 9, 35,196, 34, 69, 67, 2,130,212,103, 81, 13, 33,102,251, 44,161, -209, 27, 32,157,114, 69,117,115,138,106,255,126,163,241,145, 36, 91,125, 43,251,121, 59,159, 74,118,186,218, 73,130, 50,234, 6, -178,208,215,232, 30,141,211,209,223,111,146,235, 32,179,177,101,174,215,231,220, 61, 93,243,203,127,251,239,243,231,255,228, 79, -241,189,247,222, 99,239,240, 10, 7, 7,123, 4, 87,243,254,251, 31,176, 46, 43,138, 60,167,172,106,140, 64,158,101,184,186,134, -224,168,189,242,248,147, 79,241,212,147, 79, 68,211,153,118,117, 83,213, 53, 71,231, 37, 54,159,145, 25,101,181, 90, 71,134,188, -115,156,157,156,178, 60, 95,209,184,134,249,188,160,174, 43,154,198,113,190, 92,241,214, 91, 63,194, 43,175,190,202,114, 85,114, -239,222, 61,172,137, 22,212,161,105,176,162, 24,147,245, 60, 32,107, 45,123,243, 2,127,120,128, 43, 13,136, 97, 85,174,105,130, - 98,212,147,229, 5, 62, 4,172, 53,237, 58,221, 33,214,182, 10, 14,105,173,105, 99, 72,148,141,179, 52, 46, 4, 22, 2, 38, 47, - 80,215, 68,139,218, 16,250,243, 45,203, 50, 66,112, 4,175, 20,214, 32,197,140, 83, 12,103, 39,158,253,179,187, 60,177,200,121, -238,218, 30,250,196, 1,166,120,140, 96,231, 4, 59,163,212,156, 59,167, 53,183,238,156,114,239,246,109,206,143,239, 81,175,206, - 8,117, 73, 8,117,223, 72,231,179, 57,139,253, 67,242,189, 61,178,217, 30,139, 34,227, 96,127,143,131,131, 67,174, 29, 46,184, -124,121,159,235,123, 51,174, 29, 20,204,196,211, 44, 79,184,253,246, 39,188, 91, 54,168, 8,101, 19, 40,203,154, 76,148,253,189, - 25,106, 50, 14,247,246, 56,184,244, 12,111,191,247, 1,255,219,191,248,159,121,240,222,183,185,122,105, 31,201,103, 61, 41,110, - 28, 70, 51, 12, 43,169,230,157,157, 51,250, 69,163,183,124,186, 90,248,168,145,171,137,255,132,108,250, 51,114, 81,220,218,197, - 82,216, 71,127, 41, 63, 76,121, 91,166,166,213,135,135, 22, 74,148,161, 59,183,164, 26,200, 48,216,136, 38,132, 2, 19, 74,220, -202,176,204, 12,214,194,194, 42,117, 96,148,191, 28,225,216, 65, 34,214,111,111,181,155,248, 59,226, 92, 11,197, 26,131, 85,162, -132, 37, 36, 20,178, 32, 40, 54,166,104, 37,250, 42, 25,117, 91,137,229,109, 15,229,210, 59,198, 17,162,229,163, 65, 40, 36,186, -224,209, 22,206,166, 85, 0,244,251, 78,105,243,201, 19,200, 91,197, 96, 12,228,170,125,218, 90,199, 32,151,169,126,136,193,174, -118,176, 73, 29,235,127,117,210,245,141, 38,252,118, 34,175,211,130,144,116,191,178, 99, 74,237,175,123, 83,181,202,133,116, 45, -161,125,104,132, 18, 3,104, 58,125,115, 55,141,133,233,206, 55,217,249,107,146,251,173, 73,243,161, 12,251,220, 20, 9,192,208, - 91,223,218,132, 76,213, 77,224,182,125,181, 94,135,223, 43, 83, 79,230,174, 81,235,188, 9, 90,253,176,110,177,129,157, 22,249, -113,194, 92,210,184, 24,233, 39,221, 48,145,198,117,247,174, 36,193, 58,219, 30,186, 89,110,185,119,239, 8, 69,200,243,108,235, - 14,220,136, 33,132,128, 49,157, 68, 44,108,188,200, 41, 27, 94,183, 64,131,227,112,151,177,102, 64,119, 76,245, 50,213,229, 95, - 16, 9,185, 89,244,219,198, 62, 65, 2,182,133,196, 24,105,141,113,188,227,214,189, 35,254,252, 95,252, 21,126,249,151,254,125, -238,222,253,132,131, 75,215,152,229,150,204,192, 39,199,199, 28,157,156, 98,197,224, 92, 19, 39, 89,160,105,106,234,186,198, 24, -225,177, 39,158,228,197, 23,159,235, 63,131, 34,143,100,185,170,110,184,116,120, 0, 26, 56, 57,186, 79,211, 56,154, 38,178,221, -151,203, 85,207,181,112,117,217, 78,233, 13, 79,220,184,198, 27, 63,250, 35,204,231,123,220, 63, 89,178, 90, 45, 49, 2,141,239, - 85,254,204,139,136,172, 84,141,139, 70, 50, 86,176,214, 82,121,135, 21,161,200, 51,154,198,226, 67,155, 70, 97,179, 72,130,179, - 2, 89,129, 42,184,110,125,213, 73, 93,181,109,155,133, 24,101, 76, 96,111, 94,176, 90, 54,184,186, 34,179, 66,163,113,215, 89, -134, 6,107, 12, 98,163, 22,104, 38, 74,144,200, 71,170,109,206,113, 99, 8, 71,107,112,103, 44, 12,236,207, 50,246, 22, 57, 7, -153,229,233,249,156, 55, 94,217, 99,249,242, 75,156, 54,175,113,182, 44,169,203, 18,213, 64,158,229,236, 45,102, 28,238, 45, 88, - 44,102, 44,114,137,132, 67, 13, 44,108,136,218,122, 87,177, 58, 63,167,190,119,155,219,119, 2,235, 32,168, 87, 68, 76,204,155, - 87, 33, 4,101, 49,207,153,101, 57,179,189, 3,174, 94, 58,228,188, 90,243,191,255,171,127,205,111,254,191,191,129,169,151, 92, -187,118, 37, 14, 73, 91,131,131,146,161, 32,189,183,100, 96,232,238,182,218, 26, 47,248,100,226, 76,169, 15,171,136,159, 66, 19, -158,198, 29,235, 86,150,206,142,159,241,208,103,137, 13, 11,242,223,159,255,198, 63, 55,139,133,208, 32, 18,200,128, 38,116,178, -178,214, 31,187, 29,231,135,206,127,216,173, 70,200,217,144,137,226,125,224,204, 71, 83,149,188,253, 20,125,203,120, 15, 34, 45, -209, 70,113,196,253, 85, 52,146,145,126,223,234, 90,118,189, 73, 25,180,237,117,243,189, 36,203,162,166,136, 22,235,226, 16, 95, -227,131, 73,246,215, 58, 76, 66,146,198,243, 69, 79,118,107, 5,227,171, 40,159, 9, 81, 90,151,181, 9,101,189,172, 75,198,145, - 37, 83,127,121, 85,197,160, 17,226,144,238, 90,104,178, 39,151, 13,118,120, 74,162, 50, 50,176,246, 59, 83, 18,218,105, 48, 30, - 14, 41,233,110,124, 51, 73,235,188,166,152,126, 34,111, 38, 5, 61, 36,173, 66, 21, 96, 29,164, 69, 89,232,161,249, 32, 67,156, -168,177, 22,107,162,231,188,119, 30,175,108,225,228,111, 66, 94, 58, 70,210, 70,175,215,119,141,128,104,239,160,215, 57,239,245, - 43,144,100, 63,158, 25, 8,126,240,158,191,232,214,237, 56, 8,141,142,131,118, 12,187,125, 32, 36, 9,165, 17, 25,101, 79, 38, -242,201, 14,185,104, 5,133,125,135,168, 35,211,168,225,193,143,110,129, 54,203, 55, 10, 93, 87,163,173, 64, 97,132,149,235, 16, -145, 33,230,120,115, 45,184,105,243,186, 49, 24,244,182,183, 19,178,219,206, 83,107,128,220,199, 1, 46,194, 68, 32,180,125, 87, - 9, 91,172, 72, 55,127,153, 11,202,199,183,111,243,214, 31,251, 10,127,239,111,252, 53,234,245,146,249,222, 1,133, 21,156,194, -249,249, 41,119,239,124,130,180,207, 75, 89, 53, 52, 85, 69,145,103, 20,179, 25,152, 12,147, 25,158,125,246, 25,242, 44,167,110, - 92, 91, 60,149,224, 64,189, 35,183, 66, 81, 20, 4, 21,154,186, 98,181,138,154,244,166,174, 35,210,232, 3,229,186,106, 77,155, - 2,175,124,230, 21,158,121,246, 57, 20,195,241,253,251,248,186,166,170, 26,234,186, 6,148,204, 90, 76, 86, 16, 92,131,177,194, -106, 29,200, 12,216,214, 67, 66, 67,124, 22,212, 55,228, 89,214, 54,135, 74,221, 4, 12,158,124, 54,139,105,111,121,214, 74,223, - 90,135, 15,175,189,106,196,136,160, 45, 59,222,187, 38,122,116, 96, 8,222, 71, 3,157,204,180,207, 78,212,185,123, 87, 97, 77, -124,159,130,224,188,163,118, 30,163,224,212,114,182,244,228,149, 50,155, 21,228,101,141, 80, 51, 23,207, 37, 49,236,133,128,201, - 33, 55,150,121, 81, 97,243, 10,211,156,177, 94, 7,170,186, 1,107,112,154,241, 0, 33,104, 0, 99, 88, 59, 33,212, 53,214, 4, -140,205,200,173,197, 22, 57,130,193, 40, 88, 59,227,224,224, 18,135,151, 14, 88,158,159,241,181,223,254, 38,255,230,171, 95,227, -206, 71, 31,112,233, 96,159,252,242,213,193,165,113,215, 68, 58,229,128,116, 68,208,238,252, 12,190,229, 90,121, 52,180,202, 13, - 31,215,182,113,229,106,192, 88, 12,130, 49, 1,205, 12,108,152,217,240, 72,154,244,109, 27,114,101, 98,169,172,159, 98, 74,222, -137,247,237,250,150,139, 11,251,247,191, 91,159, 76,234,195,244, 45, 4, 3, 38,116, 7,115,155, 55,174,130, 23,197,142,228,108, - 3,199, 89, 90,114, 88, 38,241,123, 58, 8,185,219, 4,183,118, 43,189,230, 47,116,174, 71,125,128,139,105, 89,208,130, 53,237, -238,187, 69, 5,180,221,175,118,185,233, 42, 6, 49,138,177,134,220, 88,140, 24,124, 3,181, 90,212, 10,214, 68, 84, 32,104,194, - 49, 87, 65, 37,195,139,141,158,236, 89,142,173,149,202,197,194,208, 62,131,253,235, 78, 97,205,206, 40,102, 92,232,226,207,111, - 72, 80,129,142, 25,204,196,168, 99,114,115, 11, 67,145, 67, 58, 35,158,208,199,191,218,150,101,235,118,221,136, 9,225,197, 90, - 75,166, 53,206, 79,216,254, 19, 86,186,221, 8,213,161,103,178,247,113,139,186, 75, 60, 34, 35, 89, 55, 59, 28,209,198,203,165, - 65,114, 21,116,124, 27,143,247,240,161,127, 29,141,242,240,150,183, 91,125,168,246, 70, 66, 29, 2,209, 53, 67,176, 91,183,222, - 57,193,137,145,126,229,160, 27,121, 15,130, 41, 22,168,107,250,137, 90,147,198, 96,240, 48,183, 52,117,195,186,246,236, 47,230, - 49,242, 83, 39,168,130, 68, 87,190,210,251, 17, 81, 41, 93,101,104,194,215,155,186,210, 77,245,175, 50, 37, 62,169,108, 80,143, -140, 76, 51,204,119, 89, 88,110, 18, 2, 85,199,145,198,253, 94,221,232, 70, 66,200,136, 4, 40,112,126,114,204,229, 27,207,241, -119,255,214, 95,103, 97, 3, 39,237,189,188, 46, 43,172,129, 91,183,110,115,126,190, 36, 51,150,178,105,226,250, 46,203,169,171, -146, 34,139, 94,238,215,174, 95,227,224, 96,159,186,174,219,172,115,168, 67,192, 59, 79,227,227,164, 60,203, 51,130, 6,150,171, -146,245,114, 69, 93, 53,172,203,154,204, 26,130, 42, 69,158,225,156,231,201, 39, 30,231,181,215, 94, 99,111,239,144,117,229, 56, - 62, 57,198,185, 10,239, 67, 68, 77,108,107,188, 17,124,228,111, 4,197,182, 83,250,250,116, 73,240, 13, 34,134,198, 53,113,168, -177,113,114, 85,239,201,114,139,170, 37,248,208,255,188, 94, 33,161,145,192,105,140, 68,116, 50, 4,106,209,104, 80, 19, 2,185, -129,170,246,136,122,138, 89,156,244,235,170, 33,179, 6,155,231, 49, 27,194,100,113, 87,239,154,158,115, 17, 21, 5,113, 55,159, -231, 22, 49, 18, 67,100,130,114,230,162,206, 40,207,115,130,201, 40,203,138, 60, 52,204, 23,115,156,100, 84,101,197, 60, 23,230, -179, 25,198,120, 84, 76,124,244, 92, 19,135, 43,107,176, 98, 41,242,172, 85, 35, 68, 51,171,199,174, 95,227,224,242, 53,142,143, -143,249,173,111,124,141,223,252,230, 55,121,247,221,247, 40,172,229,250,181,235,109, 19, 26, 30,125,133,220,221, 51, 33, 16, 92, - 77, 83,173,105, 26,143, 55, 51,180, 56,196,228,123,200,108,129,181,150,124, 62, 39,159, 31,144,229,145,103,225,234,146,186,169, -209,117,160, 88,221, 1,238,130,157, 49,177,231,122,116,179,153, 11, 75,227,167, 48,157, 81,249, 84, 51,184,254,112, 42,248, 67, - 33,248, 44,116,124,245,196,236,195, 74, 34, 83,105, 9, 93,190,135, 13,165,101, 45, 15,112,233,128,180,134,214,237,107,160,131, -153, 54,164, 4,137,144,169, 85,193, 17,218,233, 54,209,209,154,110,242, 15,209,187, 61,196,157,122,208,193,217, 76,213,131, 70, -233,142,104,100,188,246, 33,173, 98, 16,107, 34, 11,185,245,133, 22, 26,188, 83,130,122,140,216,118,106, 9,157,216,174,133,241, -199, 83,117,191,151,215, 56,209,118,218,212,160, 99,182, 99, 24,121, 17,110,234,134, 55,254,182,183, 53,111, 73, 96, 65, 7, 57, - 87,123,216, 7, 29,103, 85,202,196,206, 84,219, 73, 83, 91,122, 91,150,222, 91, 27,249,102, 58,178,140,220,246,248, 5, 20,188, -111, 81,152, 16,247,253, 45,175,194,118, 78,122,221,239,109,223, 89,144, 52, 33, 74,182, 99, 89,194, 6,211, 93,183, 17, 86, 90, -228,161,111,244,244, 97, 70, 13, 41, 97,111,152,244, 83, 2, 93, 58,181,203,232,186, 38,197,107,130,238,105,219,192, 98,114,174, - 95, 62,100,121,118,194,114,237, 49,182,117,201, 15,237,221,106,109, 44, 54,229, 25, 87,159,127,157,183, 94,121,133,183,191,254, - 27,156,158,157,147,229,249,246, 34,185, 5, 88, 76,167,130,105,144,132, 36, 44, 77,157,132,253, 78, 40,186, 27,135,137,142, 96, -247,244,235, 7,158,204, 46, 67,147,222,253,176,191,161,116,216,189,203,174,157,122,252,243,189,147,115,254,250, 95,253,175,249, -209,207,190,196,157,123, 15,152, 23, 51,206,206,207, 64, 3,119,239, 31,115,255,193, 81,116,185, 11, 74, 85, 53,168,171,177,153, -229,188,241,216,178,226,218,193, 33,215, 31,187,214, 70,156, 18,253,222, 77,235,212, 22, 92, 79,226, 61, 61, 59,229,252, 52,234, -207, 93, 93,183,156, 88, 33,203, 12,222,107, 68,154,188,227,179,159,123,131,199, 31,127, 28, 43,202,233,217,121,156,206,197,162, -212, 96,162,134, 94, 85,113, 77, 52,180, 9,206,147,217,172,117,226,131,232, 68, 28,167,198, 44,203,250, 33, 37, 24,211, 23,248, -224, 92, 44,144,189,147, 95, 22,137,188,170,184,198,227, 92, 13, 26,104, 26, 33,179, 57,179, 89,198, 98,239, 18,179,144,145, 27, - 37,207, 51,170, 96,168,234, 26, 9, 33,174, 2, 9,132,224, 41,171, 10,155,197,189,126,252, 95, 92,249,101, 70, 98,184,141,122, -212,100,125,200, 79,214, 50,226,213,149,228, 6,138, 98, 6,198,224,154,134, 34, 19,164, 69, 63,138,220,160, 82, 16,130,143, 17, -206,198, 80, 24, 75, 38,150,249, 98,143, 98,255, 42, 7,139, 25,185, 81, 78, 31,220,230, 27,191,253, 53,190,241,205,111,241,225, -199, 31, 98,196,114,229,242, 37,140,152, 33,142,121, 51,187,116, 59, 18, 30, 60, 77,185,166,172, 74,106,205, 40,246, 47,113,237, -249,151,185,254,228,179, 60,118,227, 9, 14,175, 93,199,204, 15,176, 10,135,133, 50,219, 47,104,130,229,236,116,201,201,189,123, -216,213, 93,202, 44,240,221,245, 30, 71,239,189, 66,241,209, 55,193,127, 0,182, 32,213, 18,125,122, 1,152,142,164,251,250, 40, - 44,180, 93, 22,159, 63,248,122,255,135,129,188,199,162,222, 33,145, 62,153,179,188,146,216, 63,198, 41, 61, 36,147,166,151,214, - 97,139, 97, 34, 15,100, 49,184,196,212, 45,116, 37,109, 3,208, 74,197, 52,217,239,137,237, 23,173,161,157,204,209, 78,178,165, -189, 51,221, 56, 71,162, 45, 77,190,198,119, 62,228, 26, 83,218,252, 56,216, 26,107,226,142,220, 5,131, 26,143,250,134,208, 4, - 42, 21, 10, 90, 9,138, 74,207,104, 77,112,218, 13, 44,185,115, 98, 19,209, 17, 97,122, 26,228,163, 23, 94,247,137,155,154, 78, -221, 25,117,108,203,156,188,158,148,102,215,161, 36, 22,165,110, 60,101,167,241,223,194,249,214,164,172,143,118,203,211,175,244, - 1,199, 40,100, 19,139,146, 75,156,160,125,250,243, 68,152, 89,139,120, 79,169,210,235,208,183,199, 34,245,155,253,222, 44, 70, -183,213,255,212, 13,115, 2,139, 77,255,243,202, 70, 28,107,154,192,199, 68,218,211,121, 8, 76, 19, 5,101, 66,176, 27,252,211, - 61,103,199, 15,112, 33,250,149,167,230, 62,217,108, 78,177,216, 39,120,101,185, 46,121,242,218, 1, 63,249,226, 33, 31,252, 54, - 52,161, 93,199, 76, 96,239, 14, 66,156, 18,231,166, 77,160,176, 73,200,239,210, 22,162, 55,192,196,204,166, 15,148,145,157,232, -137,181, 57,206, 59,122,188, 95,211,108,251,221,233,113, 29,130, 54,142,223, 76, 67,142,210, 12,117,225,248,193, 3, 62,243,249, - 31,229,231,255,236, 87, 56, 61, 61,101,111,111, 63,218,180,134,128,115, 77,180, 67,158, 45,104,154,154,166,137,133,184, 81, 8, -206,115,245,210, 37,156,247,236, 31, 30,176,152,207,105,124,228,117, 88, 49,120,239, 41,203, 53,198,198,232,195,198, 57, 86,171, - 53,229,178,164,108, 97,119, 16,140,137, 77,168, 23,165,118,129,107,143, 93,227,217,231,159,139, 54,175, 26, 56, 57, 61,163, 90, -175, 98, 60,107, 80, 44, 6,239, 34, 75, 94, 67,188,167, 84, 32, 51,145,251,144,217, 56, 9,135,208, 42, 63,196, 82, 87,117, 68, -209,242, 44, 94,151,224, 49, 18,195,100,156, 49,152,214,223, 62,104,100,214,184, 0, 85, 21,139,122, 45,112,184,111,184, 60,159, - 35,254,140, 80,150, 52,222,145, 23,150, 75,243, 5,249,222, 12, 53, 5, 70, 44,222,236,177,170, 3,133, 94,138,242,226,224, 49, -198, 80, 87, 21,198, 55,241, 89, 20,143, 53, 54,162, 29, 70,144, 32, 52, 62,176, 44, 27, 68, 27, 14, 22, 5,146,205,169,170,232, -123,159,229, 5, 78, 5, 27, 2, 34, 25, 14,139,136,141,242,193,189, 61, 14,246, 23, 28, 44,102,136,175, 89,158,221,225,230,135, -119,248,214,247,222,231,247,190,251, 14, 15,142, 30, 80, 20,115, 46, 31, 28, 34,198,244,124,150,139,138,139, 38,133,188, 90,175, - 89,175,215, 48, 91,112,248,216,179,188,242,204,179,188,248,210, 75,188,244,242,139, 92,125,252, 9,174, 46, 44,121, 38,132,106, - 77, 83,158,182, 54,192, 57,235,170,230,238,201,138,211,251,199, 20, 71,159,176,176,107, 30,147,156, 43, 7,107,190,254,234, 37, -238,202,143, 51,187,233,192,127, 4,118,206,167, 85,131,111, 21,170,109,113,217,219,141, 60,104, 2, 92,238,158,214,183,171,114, - 46, 78,174,249,212, 3,252,150,111,200, 66, 43, 59, 11,218, 5,160, 76,205, 97, 90,194,148, 57, 64,115,135,145,146,204, 71, 77, -123,119,116,135,214, 19, 93,197, 64,102,200,197, 97,107,168,195, 64,170,139,238,112, 97,184, 16, 22, 22,173,103,124,169, 17, 2, -107, 68,251, 34, 27, 84,122,139,204,161,147,106,229, 18, 62,180,228,177,206,183,219,131,215,126,138,244, 93, 48,141,134,232,132, - 39, 16,212,227,107,165, 20,122,207,249,244,106,132,177, 3, 71,108, 86, 54,188,236,181, 47,242,125, 67, 51,201,144,223, 36,173, -141,157, 73, 59, 5,192,176,231,220,126,219,140,155, 6,221,172,204,164,201, 97, 50,176,151,167, 8,130,140, 39,194,109,208,216, -116, 30,244,157, 2, 32,229, 40,116, 61, 79, 8,147, 97, 92, 55, 45, 23, 82, 15,115,211, 46,110,194,244,138, 15, 57,221,221,154, -199, 76,178,225,119, 89, 42,142, 61,240, 31,198,147, 73, 24,253, 50, 64,102,108, 41,236, 10,172, 91,211,158, 97,171, 16, 83,186, -242, 89, 17, 39,119, 3,151,175, 94,225,221,223,251,109, 62,248,214,111, 81,171,101, 62, 43, 54,246,233,177,176,155,173,140,241, -116, 85,160, 91,217,180,209, 21,112,190, 88,144,101, 25,231,167,167,113,183, 56, 98, 55, 36,178, 54,116, 19, 62, 31,101,211,111, -102, 74,199,134,108,178, 71,212,113,212,206,182, 77,233, 72,210,174,202,201,178,228,175,254,194,207,243,194, 51, 79,114,247,222, - 3, 14,103, 57,101,121,138,115, 13, 77,221, 80,100,134,107, 87, 46,243,225,249,105, 79,112,180, 18,225,105, 13,158,131,195,125, -110, 60,254,120,239,216, 22, 66,140, 97,174,234, 42,102,153,183, 22,212, 85, 89, 83,183, 69, 98,189, 42,241,193, 71,206, 66,158, -199,189, 51, 74,158, 89, 94,126,233, 5,102,139,253,200,168,199,178, 92,173, 41, 87,171,129,108,216, 66,224, 70, 35,178,147, 27, -193,139,197,181,123,124,155, 89,196, 24,196,187, 86,162, 24, 3,146, 98, 48, 77,231,243, 30,226,138, 80, 60,153, 49, 52, 46, 80, -215, 37, 89,214, 10,121,125,141,180,142,144,185, 17,230,179, 5,223,125,239, 54, 31,127,240,118,223, 80, 89,129,153,133,249, 44, -134,212,236, 45,102,204, 23, 11,246,247, 22,236, 29, 92,166,200, 11, 46, 31,238,147,237, 93,166,242,151,112, 33, 54, 55, 54,203, - 17,147, 83, 86, 30, 87,174,208, 60,128, 13, 88,227,201, 13,204,246,230,120,201,217, 47, 98, 65,207, 50, 75, 16,195,204,192, 98, -145, 99, 16, 50,234,168,248, 89,159,112,118,251, 3,222,185,247,128,119, 63,248,136, 79, 62,185,197,157,227, 37,181, 83,246,246, -246,184,118,245,250,232,129,234,248, 70,186, 67,246,165, 40,213,106,205,114,181,130,172,224,218,141,167,121,243,179,159,227,245, - 55,222,224,249, 87, 94,227,137,199,174,177,151, 11,174, 60,163, 92, 45,105, 92,197,209, 89,195,250,244,156,133,105, 96, 49, 99, - 93, 5, 86,165,227,238,185,231,108, 85, 98,197,115,166, 57,231,107,207, 85,167,188, 57, 59,231,235, 47,236,113, 82,255, 33,102, -183, 75, 52,220, 7,179,248, 84, 18,178,157,178,118,121,132,240,151, 13, 63,221,135,107,236, 63,237,164,254,131, 34,243, 89, 23, -192, 97, 80, 52, 8,190, 11,115,233, 37, 99, 45, 17, 77,215,104, 16,200,149,125, 64,131,176,212, 1,120, 23,241,152,112, 78,168, -132,208,178,215, 99, 80, 73,151, 33,158, 18,197, 2,248,118,119,156, 18,165,181, 11, 94,145, 81, 44,232,244, 18, 70, 45,102,146, - 4, 31, 74,112, 25, 77,200, 80, 27,139, 77,199, 74, 77, 29,184, 12,131, 41, 75,104, 15, 23,153, 92,201,148, 70,164,137, 20,206, - 43, 19,159, 56,134, 8,210,113, 44,208, 22, 46,182, 14, 9, 74,105,196,232,228,119, 14,250,138,221,157,103, 80, 29, 77,154,154, -100,215,135, 72,146,192, 2, 78, 58, 47,127,153,184,221,177, 49,209,143,236,105,146,100,180,212, 47,190,155,226,235,160, 99,228, - 73, 39, 52,144,100, 99, 16,167, 76, 67,110,133,166,246, 3,234, 1,209, 35,155,120,184, 77,247,190,250,136, 15,137,108,115, 86, -219, 81,220,135, 75, 62,176, 5,182, 41,188,173,145, 13, 10, 13,170,248,166,194,216, 28, 66, 64,124, 77,233, 2, 94,161,200,164, -119,217, 75,245,243, 98, 76,132,144,219,144, 28,157,202,216,116, 92, 36, 69, 54,229, 53,190,105, 32,184,113,234,218,168,229,102, -195, 20,166, 83,149, 52,141,139,239,210,200,102,115, 56,106, 34,100,172, 91, 31, 49,141, 55,228,252, 9, 63, 4,206,207,207,120, -229,213,215,248,210,159,248,163,156,156,156, 48,159, 47,168,170, 53,103, 39, 71,212, 85,141, 15,190, 39,140,121, 23,147,207, 92, - 19,181,211,222,123, 68, 12, 79, 93,190,194,108, 62,143, 19,115,171, 14,240,237,245,234,204, 95, 66, 8,172, 86, 75, 30,220,127, -192,249,114,217,194,199,113, 37, 40, 45,100, 94, 57,207,245,235,151,121,238,133,231,104,156,167, 40, 44, 34,102,104, 14,162, 73, - 64,228,227,216,156, 16, 60,117,237,105, 26,135,201, 50, 92, 75,118,179,109,179, 19,130,146,183, 92, 31,147, 66,246,206,161, 33, -144,231, 89, 12, 97,106, 26, 26, 31, 77, 97,172,181, 44,215, 53,101, 89,246,172,239,195,189, 61,206,150, 37,239,126,116, 11,209, -130,172, 13,162,241, 8,101, 80, 30, 44,227, 64,163, 97,137,232, 25,133, 40,121, 22, 88, 20,150,195, 69,198,222,222,140,189,197, - 30,123,123, 11,246, 15, 14,216, 95,236,177,119,176,135,145, 57,115, 19, 88,236,205, 80,201, 16,242, 72,176, 19, 67,112, 13,185, - 85, 2,209, 10,183,169, 42,202,186,228,164, 92,115,118,186,228,236,236,132,147,243,115,238, 63, 56,229,193,233,146,243,181, 67, -109, 70, 81,204, 89,236, 93, 98,223,200,142,173,154,140, 72,158,170,134, 16, 28,174, 90,178, 94,151,148,206,240,248,141,199,120, -253,167,190,200, 27,159,127,147,215, 95,255, 12, 79, 62,241, 36,115, 19,104,214,167,156,173,239,113,255, 56,174, 77,131, 88, 86, -101,141,171, 75,138,194, 98,108,116,227, 51, 56,234,160,145,107,128, 39, 24, 75,104, 42,172, 56,206, 52,227,178,135,207,239,215, -124,227,133, 57, 85,245, 38,249,253,175, 66, 94,130,204, 47,192,255, 31,161,104,126,106, 24, 93,182,224,177,187,135,187, 31,110, -217,190,248,116,204,250,201,120,216,246, 14, 6, 48, 93,233, 52, 32, 52, 88, 7,234,133,117, 66,174,235,253,222, 19,169, 91,240, -176,110,101,100, 38,201, 99,238,140, 91,124,123,144, 52,218, 73,211,218, 66,158,132, 78,140,125,120,135,163, 43,116,250,113,105, - 73,116, 90,192,254, 83,216,236,152,234,252,156,198, 91,114, 51, 20, 57, 77,152,227,253,165, 55,210, 51,240,117, 66, 51,143, 83, -169, 37,136,144, 73,104,205,118, 6,120, 58,158,105, 97, 68, 98,145, 86, 34,167,137, 11, 89,122, 0,167, 35,156, 76, 59,136,201, - 29, 32, 91, 38,253,113,147,168,219, 15,218,110,127,204,144,189, 62,157,194,167,150,160,170,227, 64,212, 13, 54,117, 2,109,235, -168,205, 26,243,209,181,197,209,141, 72, 34,127,107,225, 90,239, 90, 69,197, 80, 44,189, 87, 46, 61,246, 4,214,175, 56,122,112, - 28,125,174, 39,123,229,135, 21,234,135, 68, 36,143, 12,110,166,251,254,135,133,178,244,196,204,228,190,107,202, 10,223,196, 69, -133,111, 28, 89,150,245,144,187,110,129,215,173, 49,109,140,109,116, 85,116,206, 13, 5, 95,101, 83, 74, 51,249,176,141, 17,156, -247,212, 78,251,130,194, 68,113, 48,134,242, 38, 33, 50, 50,198, 32,118,166,203,141,156,246,146, 0, 11, 25, 59, 27, 78,153,249, - 0,231,231, 43,190,244,165, 55,120,230,169, 39,184,127,124,198,225,126,206,131,251,247, 88,173, 43,124,240,145, 29,110, 6, 34, -236,186,172,251,181,157,109, 9,114,135,151, 14, 65, 44, 69,102, 89, 55,171, 62,177, 48,154,185,196, 44,245,218, 43, 15, 30, 28, -113,124,114, 66,104,175,163,109, 93,217,156,247,204,103,115,230,179,130, 23, 94,120,150,131,131, 67, 78,207, 74,102,179, 25,214, -230,168, 87, 50,107,240, 24, 86,171, 53,185,119,204,103, 5, 77, 16,214,181, 67,131,146,181,205, 80,102, 13, 85, 29,223,171,181, -182, 47,204, 81, 79, 30,155, 13, 99,132,162,200,187, 14,164, 53,207,137, 7, 78, 83,215,184,166,142,140,119, 19,167,251,218, 5, -110,222,252,136,250,236, 1, 38,155, 81,135,104,141,155, 5, 71, 38,129,153, 53, 72,150, 33, 38, 3,137,235,150, 38, 40,101, 3, -119,215,158,112,119,141,232, 57,153,120,114,163,100, 70, 89, 20,134, 60,207,200, 51,203,172,200, 48,214,182, 4, 58, 75,221, 4, -130,143, 57,244,206, 57,170,198, 83, 55,158,117,229, 41,235,134, 58, 8, 94, 13, 98, 44,121,150,145,231, 7, 92,154,125, 26, 7, -243, 54,138, 22,195,201,201, 25,206, 85, 92,122,242, 69, 94,253,220, 51,124,254,179, 47,241,214,143,189,193,115, 47,188, 16, 17, -155,186,228,244,252,136, 7,101,141, 54, 53,198, 66, 97, 51,156, 70, 59, 95,171,158,197,172,192,183,230, 56, 26, 60,117, 48,241, -249, 18,199,218,102, 52,165,105,153,239, 25, 34,134,101,128, 27, 46,240,185, 43, 37,255,246,197,107,184,230, 77,178,211,175, 67, - 94, 15,172,248, 71,116,145,211, 11,217,117,242,240,114,124, 1,129,248,145,123,133, 31,212,140,102,235, 78,157, 97, 55,157,250, - 92,135,126,119, 23, 16, 53, 73,182,118, 39,163,138,164, 22,175,210, 91,159,106, 23,225,154, 24, 89,116, 73, 79, 89, 11,181,215, -147,131, 86,144, 54,161,172,195, 5, 6,118,252,104,114,235, 9,122,209, 78, 22,186, 40,216,184, 19,158, 95,177,188,145,193, 7, -247,225, 19,133,153, 76,182,187, 50, 62, 56,141,196,195, 35,180,228,179, 97, 95, 24,191, 54, 19,165, 96,200,150,239,253,237,211, -224, 4,145,141, 79, 70,250,170,100, 80,177, 24,171, 72,240,184,144,234,175,183,120,122,239, 8,234,216,198,152, 28, 29,175,137, - 49, 75, 15,221,246,147,114, 11,159, 75,162, 40,145,193, 84, 38, 97, 66,141,100, 76, 50,153,188, 69,199,156,131, 81,227,161, 93, - 60,143,233,191, 70,135,213, 45,105,252,248, 64, 70, 20,104,214,136, 54,189,253,237,136,191,182, 5, 6,219, 42,241,122,104, 99, - 62,181, 71,213,113,102,210,197, 62, 23,189, 95,122,119,205, 92, 93,183, 46,123,102, 39,147, 60, 38,185, 5, 66,136,108,106, 90, -231,176,177,142, 45, 13,209,145, 13,251,101,146,207,202,202,112,175, 69,189,187, 69,178,184, 23,158, 30, 75,210,202,149,140, 49, -209,212,165,105,198,252,130,157,135,138,140, 50,170,123,232, 61,181,209,157,236,225,187,235,242,220,179,207,128, 8, 69,145,177, - 90,175, 89,149,235,118,191,220,154,238,136,160,184,232,231, 96,162,149,176, 49,113, 13,183,152,207,217,223,223,227,112,127,143, -178,174, 35, 7,160, 37,112, 9, 80,123, 79,221, 56,238,220,190,197,241,131, 7,253, 61, 27, 66,180, 92,181,214, 98,140,197,136, -112,233,242, 37, 46, 95,185,138,115, 81, 71,190,183,183, 79,227, 98, 40, 75, 83, 55, 44, 22,115,216,155, 83,151,107,234,186,198, -102, 25,243, 60,195,155,232,188, 38, 98, 9,193, 69,146,104,150, 83,151,117,139, 30, 74,116,176, 83,112, 26,245,235, 65, 3, 46, - 68,212, 65,189,163,152, 45,168, 28,156,159,157,226,234, 18, 85, 40,140,193,216,140,183,223,121,159,147,179, 37,207,191,250,121, -110, 60,245, 52, 7, 7, 7, 84,193,112,231,232,156,211,147, 35, 86,103, 39,148,231,103,132,242,140, 92, 87,228,185, 33,203,231, -100, 24,102,214,118, 12,151,248, 28, 5,165, 82,101, 85, 43,161,106, 85, 18, 90,247, 94, 11,218,199, 66, 15,228, 81, 17,193,152, - 28, 43, 5,249, 98, 78,209,158, 25, 27,230,166,143,154, 57, 46,208, 4,195,131,251, 15,248,220,115, 7,252,204, 47,252, 37,158, -124,249, 45,158,125,236,128,199, 46,101,184,170,161, 94,159,114,119, 37,184,218,225, 92,255,232,183, 0, 0, 32, 0, 73, 68, 65, - 84, 85,177, 26,144, 60,107,191, 55, 18, 26, 11, 43, 4,137,205, 82,240, 46,146,151,141,193,181,156, 39,107,148, 60, 51,216,121, - 70, 8, 11,130,107, 80,231,177,166,102,165, 25,207, 97, 40, 31, 91,241,237,250,105,252,219,107,108,245,187,144,185,182,164, 61, -122,126,250,110,178,252,195,164,103,250,200,208,249, 35,180, 7,223,255, 44,191,209, 20, 72, 71,160,214, 49,163,175, 39,169,181, -246,136,109, 53,108, 68,201,148, 62,202,115, 48,144,233,100,111, 38,238,197, 58, 31,117, 13,253, 52,235,186, 93,117, 75,160, 11, - 9,191, 87, 38,212,170,206,143,222, 38,204,243,206, 61,204,180, 9, 80,145, 52, 98, 17,219,144,175,222,163,124, 63,227,131,220, - 82,217,206,202,118,211, 80, 80,100, 26,105,154, 68,134,142,244,195,145, 12,224,196,244, 54,169,131, 12, 73,123, 4, 99, 10, 99, -147,102, 96,139, 32, 54,194,185, 96,200, 52,196,194, 62, 45,208,173,148, 47, 39,114, 16, 46,180, 60, 77, 60,206,227, 1,103,200, - 72,243,172,211,249,153,222, 50, 82, 38,169,102, 83,150,124, 72,128,118, 25, 81,251,100,104,100,100,203,164,172,244,159,137,105, - 89,230,131, 37,187, 78,130, 66, 82, 57, 30,156,156, 28,199,137,214, 90, 70,198, 15,137,157,217,182,205,213,212,156,231, 81,231, -139,126,127,159,234, 0,116,199,248,191,149,175, 30, 33,245,135, 78, 52,109, 19, 21, 18, 51,159,141, 88,215,137, 97, 18, 15,201, -104, 31,217, 11,139, 98, 68, 39,214,190,233,207, 29, 71,196, 14,188, 8,182,239, 66,167,192,190,180, 84, 67,221, 76,149, 74,123, -173,206, 73,238,242,229, 75,145, 68,229, 29,235, 85,137, 21, 75, 94,100, 80,183,113,192, 45, 81,177, 91, 69,204,140, 69, 37,163, - 44,215,204, 15,246,216,219,223,143,135,125,221,244, 77, 73,247,107,247,247, 22,220,187,119,159, 91,183,239, 80,150,101,100,188, -211, 26, 73,181,107,172, 34,207,201,139,156,199,159,188,193,108,111,175,117,125,139,175,117, 93,149,113,185,104, 44,117,227,218, -160, 35, 7,121,134,171, 29, 54,138,177,105,154,134,249, 44,231,124, 21, 87, 4,121,102,104, 76, 52,173,142, 48,187,224,154, 26, -107, 45,181,115,184,186,166,104,217,238,193, 71, 13, 58,106, 41,203, 10,117, 21,121, 49,235,115,222,159,125,254, 37,126,246,213, - 87,184,113,253, 42,130,199,151,231,168, 42,175, 61,125,153, 42, 60,203,201,114,205,217,178,228,248,188,228,246,157, 7, 28,125, -114, 11, 57,251,132, 69, 22, 48,179, 5,189,152, 88,162, 84, 78, 0,107,101, 75,246,163,110, 79, 64,100, 99,255,180,169, 72,153, -240,111, 46, 42,232,181, 23,238,221,189,195, 47,188,117,141, 95,253,251,191,198,226,197, 47,113,247,227,219, 44,143, 62,230,238, -189, 6,239, 0,141,170,130,104, 87, 26,199,180,224,163,209, 88,199,129, 9,170,248,224,169, 42,135,113, 21,100,224,189, 5,231, -200,140,167,200, 50,116,150, 83,179,160, 44,215,248, 80, 69, 9, 34, 68,243,176, 6, 94,206, 28,213, 19, 37,239,185,151,145,119, - 27,108,243, 45, 52,147,164,176,235, 35, 87,200,116,240,185,240, 27,116,188,190,219, 34, 0,248,131, 99,190,239, 24,221,179,110, -190, 54, 26, 89,239, 62,225,243,145, 6,157,104,196,225,189, 12,182,157,218, 89,168,246, 48,109, 11,179,183, 65, 29,241,112,139, - 14, 73,142, 46,167,155, 62, 62,213, 76,160,226, 62, 12, 38, 57, 76,124, 79,204,136,228,148,160,150,218, 10,153,209, 65,131, 45, - 5,138,112,199,197,253,189,233,166,248,148, 25,221,190,126, 53,157, 37,105, 87,156,219, 85, 66,219,188,168, 12,210, 92, 15,189, -201,204,152, 85, 61, 45, 24,244, 38, 53, 38,169, 56,209, 78,118,136, 75, 29, 1, 59, 58, 28,234,146, 72,177,252,174,178, 36,195, - 53, 86, 50,236,108,134,241,101,107,118, 49,188, 22,219, 95,183, 97, 79, 27,116, 60, 73,122, 29, 28,190, 3,219, 2, 13, 90,246, - 64,171,161, 79,187,127, 77, 63, 47,141, 49,148,217, 86, 33,218,152,106,197,100, 21, 18,167,216,196,113, 42, 49, 55,234,206,150, -160,147, 7,238,251,126, 72, 82, 6,248,246, 60,243,241,158, 99,172,187,215,150,121,255,105,118, 91,189,148, 78, 55,134,244,209, -249, 32,147, 3,101, 87, 34, 84,208,208, 55, 11,222,251,150,233,182, 3,245,209,152, 19, 46,169,135,172,164,235, 32,153, 4,190, - 48,102, 92,244, 65, 46, 91, 90,171,254,217,143,247,250,124, 86,224, 27, 71,181, 46, 17,161,213, 95,135, 33,161,203, 8,198, 26, -178,118,223, 43, 38,238,215,231,179, 25, 87,175, 92, 69, 3,156,159, 47,113, 46,186,202, 73, 27, 55,154,137,178, 92, 46,249,240, -195,155,241,217, 55, 6,231, 3, 62, 56,242,118,215,142, 70,131,150, 39,174, 62,198,211, 79, 63, 73,192, 80,183, 94,236, 67,156, -171, 99, 86,100,172,171,134,245,122, 77,110, 13,179,162,160,172, 99,176, 75, 85, 55,228,153,193, 57,223, 55,110, 54,139,144,118, - 91,161,226,254,223, 70,107, 68,231, 60, 62, 64, 93,187,150, 56, 41, 84,181,143,187,235,186,138,114, 91,231,112,206,243,217,151, -158,228,141, 31,249, 49,214,231,167,220,253,248, 93, 78,207, 87,184,150,225, 95, 88,216,159,229,204,196,112, 88, 88, 94,120,122, -143, 31,121,254, 85,238,172, 94,225,237,155,119,249,240,221,119, 48,199, 55, 89,228, 96,138, 5,157, 33,146, 12,211,192,164, 69, -159, 46, 42, 7,131,171,205, 10, 51, 62,193,134,103, 98,236, 38, 56, 37,120,174, 43,199,209,221,187,252,249, 47, 60,193,127,251, - 15,127,141,226,249, 63,206, 7, 31,223,225,232,232, 62, 84, 43,156, 10, 85,237,176,192,124, 81,224,179,125, 92,237,241,190, 70, -218,240, 28,212,163,234, 8, 26,104,124, 91,115,212, 34,174,193,107,212,208, 27, 35,209,184, 40, 19,124,105, 8,206, 71,210,115, - 59,121, 25,160, 84,152,121,225, 53,235,104,158,130,155,205,171,200,251, 37,198,189, 3,118,129,118,177,181,250, 40, 39,198,163, - 98,224, 58,216, 57, 63,226, 79,122,120, 54,220, 15,169,228, 39, 63, 42, 83,213, 36,235, 60,221,179,118,178, 21,131, 88,193, 72, -192,132, 24, 79,234, 25, 2, 91,186,105, 55,157, 99, 7,131,144,118, 58,214, 52, 11,187,219,219, 71, 41,154,166,115, 90,146,143, -110,186, 73,177,131,138, 68, 90, 21,156, 70,227, 7, 49, 24,147, 74,193, 12,214, 68,205,102,231,246,229, 71,201,152,166,133, 60, - 59, 11,208, 78,123, 46, 91,242,131,198, 19,161,236,216,182, 76, 11,188, 36, 44,100,240, 4,111, 49, 22,108,171,155,223, 90,148, - 76,188, 86,161, 53,240,209,196,121,141, 29, 36,190,160,144, 89, 40, 68, 88, 58, 29,164,128,137,108, 76, 54,230,218,196, 61,141, - 33, 74,181, 47, 66,218, 65,231,211, 48,156,228,253, 73,178,158,209,128,181, 57,143,207,227, 1, 89,250, 16, 31, 92,198,122,230, -205,159, 66,162,217, 31,246,252, 41, 89, 75, 85, 35,217,105,182, 32, 19,165,110,154, 81, 44,234, 24,107,185,160,216,235, 4,126, -151, 71,107, 11,116,202,135,208, 79,247, 12,138,164,158,215,219,247,216, 42, 83, 46,133, 60, 4,210, 75,188, 7, 68,118, 18, 42, - 7,243, 27,217, 32,106,110,250,182,235, 36,240,101, 91, 67,161, 19, 50,228, 24, 25,114, 77,197,186,140,230, 32,179,217, 28, 31, -132,224,192,218,172, 39, 8,206,231,115,246,246,246, 57, 63, 61,233, 95,243, 98,177, 96, 54,155,177, 42, 43,208, 64, 80,143, 21, - 67,150, 23,148, 85, 77, 93, 87, 60, 56, 62,101,189,174,176,109,172,108,150, 69,238, 54, 26,240, 62,238,189,157, 15, 92,185,114, -153, 44,203,169,170, 6,231, 3, 89,187,103,214,186,193,251,208,250,204, 11,179,162,136,211,102, 93,163, 26,168,107,223, 55,148, -104, 52,181, 50, 94,162, 55,189,181, 52, 46,126,127, 44,196,129,170,174, 81,239,227,132,174, 33,174, 85, 66, 60, 71, 86,229,146, - 60,139, 94,147,181,247, 28,204, 50, 10, 35,124,243,183,190,193,114, 93,182, 1, 48,218, 26, 4,197,226, 89,206, 11,242, 98,134, -150, 13,230,180,100, 47, 23,158,218, 47,120,250,115,215,184,253,226, 13,190,253,193,171,124,244,157,111,147,157,220,100,190,200, - 32, 95,244,193, 88, 65,180,229,102, 92, 80, 96, 82, 72, 77,198,195,235, 78, 82, 55,227, 0, 36,105,115, 36,142, 78,207, 9, 77, -205,127,240,165, 55,249, 27,255,205,127,142, 60,245,211,188,255,225,109,238,220,125, 64, 88, 29, 67, 30,155,182,107, 87, 15,216, - 63, 56,100,182,216, 39,152,156,186,241,132,166,194,249, 64,237,106,150, 43,135, 59, 63, 6,127, 22,227,108,173,160,146,163,106, -113, 85,131,197,225, 76, 92, 93,170, 49,209, 11, 64, 58,203,230, 24,126, 99,140,199, 90,131,147,140, 2,248,108,161,184,231,148, - 91,254,243,204, 62, 12, 24,255, 62,100,115,180, 99, 77,235, 69, 40,196,112, 24,201, 67,166,109,233, 13,216,100, 66,110,121,248, -121,242,253, 80,222, 31,189,228,143,223, 91,214,237,210, 67,119,163,144,104, 90, 33,106,200,131,224, 45, 81,158,209,238,117, 82, - 23, 53, 77,173, 85,147,130, 78, 31,250,209,154,210,244, 82, 51, 29,178,211, 25,100,115, 61,108,143, 25, 12, 85,146,168,210,174, - 75,138, 18,182, 16, 77, 34,232,108,110,187,163,222, 68,192,170, 53, 73,232, 27,135,196,168,100,124,165,219,166, 37,137, 94, 29, - 14,200,144,210,193,152, 88,135,140, 33,225,132,137,214,101,125, 7,124,164,225, 39,135,178,108,142,224, 17,181, 72, 32, 85,217, -214, 33,166, 91,123,241, 52,235, 21, 78,162,196, 42,232, 64,132, 10, 50,121, 50, 71,187,127, 77,162, 84, 37,113, 58, 75,233,208, -195, 77, 62,221,243,143, 24,158,109, 3, 54,207,179,232,107,222, 56,234, 42,180, 18,195,135,192, 80,210,193,112,154, 0,253, 93, -138,153, 7, 59,231,250,227,151,104, 86,167, 84,181,223,142,144,235, 35, 62, 52,186,133, 86,247,168, 81,140,250,131, 53,211, 59, -201,105,146,194,217,131, 4,240,162, 95,101,182,106,203,119,209, 4,195, 40,107, 96,130, 45,238,120,125,155, 7,213,195,200,117, - 65,225,244,236, 12,231, 99, 62,185,181, 25, 33,104,148,118,185,136, 42, 88, 19,163,119,246,246, 23,228,197,140,208, 68,183,190, -131, 75, 7,228, 69, 17,119,170, 33, 54,136,222, 59,124, 85,210, 13, 26,213,122,205, 98, 86,112,255,193, 17,203,243, 37,153, 49, - 72,102, 89,174,226,190,219, 7,101,150,231, 49, 93,173,174, 35,185,206, 73,107,195, 26,240, 33, 18,217, 26, 23,152, 23, 25,179, - 89,198,114, 89, 18, 90,163,165, 24,182, 99, 34,235,221, 10,153, 26,130,181, 24, 12, 70, 34, 81,206,183, 76,251,166,118,120,231, -219,207, 33,196, 70, 36, 68,244,175,170, 34, 52, 92, 20, 57,174,253, 30, 49,134,155,119, 78,112,222, 71,131, 24, 19, 45,153,171, -198, 19, 66, 96,150, 91, 26, 53, 4, 23, 9,122, 54,179,148, 38,163, 42, 13,123,238,156,151, 14,103, 60,255,163, 79,243,157,167, - 31,231,247,190,253, 62, 71, 31,124, 7,123,126, 31,107,227,240, 34,198,160,214,210, 69, 94,181,198,197, 59,198,198,164, 45,148, -139, 11,251,112, 34,119, 22,221,194,249,217, 25,175, 60,125,153,159,253,242,159,230, 75,127,244,167,225,241, 23,185,125,231, 8, -215, 84, 92, 58, 88, 48,187,118, 64,145,207, 89,204,103,204,231,115,102, 25,152, 60, 99,237, 44,229,217, 9, 33,115,248, 0,141, - 70,130,162, 95,129, 6,139, 72, 96,145, 27,156,228,156,175, 29, 5, 21,217, 34,199,215, 51, 22,225, 12, 53, 51,202, 10, 66,149, -227,137, 13, 86,156,244, 13, 70, 35,194,236,128,194, 27,222,156, 57,120,121,198, 45,254, 16,197,205,128,117, 31,128,221, 99,240, -247,144, 29,147,123,250,160,203,206, 14,126, 52,216,233, 14, 2,206,247,181, 31,255, 1,167,245,109, 68,185,144, 24,207,160, 67, - 23, 73, 66,154, 83,141, 48,114, 45,177, 70,117,236,221,208, 21, 84,194, 8,146, 48, 45,196, 27,218,138,156,181, 73,107, 46, 73, - 1, 49,232,200, 50, 86, 38,219,211, 40,135, 10,237,122,111,176, 20, 13,125, 19, 64,111,112, 19,115,207, 91, 96, 88, 67,191, 19, - 52,109, 5,243,154,194,215,180,191, 59,146,228, 48,177,105,232,211,233,194, 4, 64, 14, 73,106,186,164,177,148, 36,211,216,184, -244, 14,147, 90,252,133,126,194, 36, 78,224,144,190,232, 76,207,206,225, 55, 77,180,232, 58,224, 40,177,243, 79,135,210,193,166, -210,176,105, 71, 19, 66,151, 64, 39, 35,158, 65,159, 71, 46, 50,209,208,203, 72,171, 79,146,100, 39,109,195,247,160,118,228, 70, - 34,195,216, 8,222,143,177, 2, 67,160,110,167, 42,147,196,205, 74,154,166, 39,131,155, 92,215,160,205, 76,160,106,189,175, 51, -107, 38, 80,150,126, 10, 18,137, 60, 18, 4, 55, 12, 53, 58, 86, 9,164,236,240, 71,248,165,221, 62,219, 24,115,225, 35,155,226, - 39,143,106, 77,153,218,183,238,218,193,119,158,254,253,253,184,235,189,107,234, 57, 72,111,250, 98,147,140,120, 70,241,174,155, -196,122,231, 3,247,239,221,141, 19,106, 75, 56,181,214,182, 58,249,200,124, 15, 33,202,235,180,105,200, 51,203,217, 42, 6,176, - 92, 62,140,238,100, 46,212, 88, 99,163,125,104,104,211, 27,213,115,118,118,202,122,189,194,135,192,186, 44, 89, 87, 53,153,137, -202,137, 14, 96, 48, 86, 88,204, 99,122, 90,221, 52,236,205, 22,100, 25,148,117,201,122,181,196,218, 61,140, 24,138,214, 52,166, -174, 98, 51, 48, 43,114,196,102, 45, 60, 31,161,221,204, 90, 52, 68, 93,142, 15, 13,214,128,177,150,178,170,122,167, 57, 85,197, -133,208,115,108,140, 49,253, 26, 36,207,103,209,248, 74, 97, 54,179,216,204,208,180,132,190,168,212, 49,184,118,175, 60,155, 21, - 44, 22, 11,138,162,136, 50, 73, 98, 17, 52,198, 98,173, 64,150,113,123, 45,132,163, 79,248,204,229,130, 87,127,246, 77,190,241, -206,115,220,126,231,187,212,235,115,170,114,133,171, 75,124, 93, 66,104,144, 80, 97,165, 37,116,218, 40,229,139,146, 37,217,104, -212,165,133,144, 31, 70,142, 51,173,140,247,193,209, 25, 63,241,194,156, 95,252,139,127,142,103,127,228,103, 48,243,171, 28,159, -172,153,201,154,253,253, 43, 44,230,115, 22,251,251,160, 22, 19, 74, 86, 85,201,250,236, 12, 35, 21,107, 39, 56,175,212, 62, 42, - 3,150,149,163, 62, 95, 65,168, 48,173, 91,158,177, 74,237,148,140, 6, 83,196,213, 77,109, 61, 33, 43,208,178,193,138, 39,179, - 57, 4,219, 54,255, 54, 18,187,131,130, 58,172, 64,109, 45, 11, 49,188, 57,171,104, 94, 90,112,199,253, 24,139,143, 42,196,223, - 1,187, 72, 38,236,113,147, 67,127,150,201, 40,225,243,209,136,114,187,255,226,251, 46,209,223,207,180, 62, 58,227, 58,162, 92, -151,140,214, 21, 61,213, 54,195,219,128,213,129, 68,214, 94, 11,237,146, 40,131,246, 59, 50,172, 33,215,128,241, 74, 21, 18,119, -186,214,170,206,183,211,118,167,153,214, 86,163, 76,103, 72, 19, 35,199, 18, 89, 92, 27,142, 32,177, 65,232,145,132,196,167,189, - 59,112, 98, 74, 90,123, 56,105, 18, 42,170,131, 47,184,136, 38,102, 37,154,184,231,233, 24,162,157,132,153,144, 16, 2, 59, 68, -160,157,237, 55,108, 87, 83,234, 89,135,120, 72, 58, 53,165,200,133,200,214,132,177,241,103,165, 61,119, 37, 36,112,167, 72,151, - 15, 63,200,219,198,129, 49, 50, 90, 33,164,197,189, 11, 82, 25,119,157, 67,134,246,160,253,211, 30, 98,157,238,134,210, 6, 64, - 67, 0,231, 32,179, 56, 31,179,177, 37, 57, 20, 2,138, 51, 25,207, 28,238,199, 88,206, 58,196,125,103,138, 92, 36,140,244,190, - 40,168,227,147,187,247, 17, 49,125, 65,255,193,152, 39, 99,104,255, 97,187, 48,217, 72,143,250,244,211,121, 8,225, 81, 94, 78, -175,255,221,150,217,190, 27,136, 31,118,229,122,193,151, 14, 74,140, 45, 19,119, 79,170, 27,208,147,254, 30, 78,154,152,109,166, - 28,221,231,159,229, 57, 31,127,252, 17,235,213, 18,105, 73, 92,153,141,187,204, 90,155, 88, 40, 51,195,186, 92,115,231,206, 29, -170, 50,154,198, 92,186,116,137,189,253,125,202, 58,194,226, 65,163,123, 90,150, 89,214,101, 67, 85,149,220,189,119,143,166,174, - 89,151,107,188,139,114,167,202,121,188,143,230, 64,198,152, 56,253, 26,161,169,107,154,186,161, 4,140,177,172,235,154,187,119, -239,114,245,177, 39,227,217,225, 26,108,158,199,162,153,105, 47,195,205, 51, 11, 89, 52,148,105,154,134,170,174, 41,203,154,213, -106,133,171,171,152, 65,238, 35,255, 38,179,150,198, 57, 52,248,150, 85,110,218,243,210,145,231, 25, 98, 10, 50,155,181,103,103, - 92,101,212, 85, 73,181, 94,163,206, 97,140,193,100, 57,153,201,163,165,176, 49,145, 76,214,241, 12,124, 76,164,116, 30,202,178, -110, 13,138, 12,183,151, 48,175, 62,230,179,135, 25, 47,189,245, 57,170, 38, 80, 54,142,229,170, 98,189, 90,177, 90,151,172, 86, - 43,214,235, 21,213,122, 69, 93,173, 8,117,137,248, 26,163,174, 71, 28,165,151, 43,106, 66,154,149,150,220,170, 35, 2, 36, 45, -135,196, 5,229,141,231,175,243,199,190,244, 69,102, 7, 55,152,107, 13,133,112,226, 10, 50,239,216,195,147,169,227,236,244,132, -251, 71, 75,202,211, 59, 84,206,177, 46, 61,198,149,100, 54, 90,212,250, 16,155, 33,231,162,199, 62, 54, 39, 52,113,125, 81,171, -193, 87, 53,115,171,212, 88,154, 26, 50, 28,165, 49,100, 89, 70, 81,228,212,101, 5, 46, 18,138, 3, 6,117,190, 37, 35,217, 86, -157, 5,165, 10,123, 94,120,115, 81,241,155, 47,205, 57,109,254, 16,179, 79,190, 6,242,255,243,246,238,191,146,101, 89,122,208, -183,246,222,231, 68,196,125,100,102,101,101,102, 85,117, 79,215,208,211, 51, 30, 11,195, 96, 15,216, 98, 52, 3, 50,200,230,241, - 3, 70,178,144, 64,200, 66,194, 96,144, 5, 2, 1, 22,195,152,193,255, 25,191, 34, 64, 2,201, 24, 51, 51,253,154,174,119, 85, - 86, 86,222,155,247,222,136, 56,231,236,189,215,226,135,181,246, 62,251, 68,196,205,204,234, 46,200,209,116,119,213,205,123,111, -196,137,115,246, 90,235, 91,223,227, 21,200,109, 26,148,180,153,220, 91, 1,208, 91,112,214,239,255, 39,249,165, 54,244,223, 1, - 39,238,196, 63,168,236, 17,222,180,227,212,116, 47,165, 48, 57,155,130,133, 5,177,164,174, 9,213,135, 24,146, 33,172, 4,173, -146,231,157,101,193, 49,174, 19,118,217, 5,150, 40,204,140, 89,147,206, 40,150,178, 52,131,190,101,223, 79,141,238, 89,154, 98, - 68,141, 71,123, 51,121,112,179, 67,117,152,253,227, 5, 88,248,160, 83, 69, 33,184, 6,115, 21,178, 25,183, 1, 42,199,200,116, -147,129,174, 5, 86,121, 4, 14,232, 58,172, 48, 33, 69, 84,239,248, 67,232, 88,154,107,113,175, 66,180,102,251,210, 98, 69,209, - 22,101,111,141, 79,203, 98,149,234,219,175, 71,116,178, 9,190,200, 0,105,241,119,151,183, 33, 47,216,159, 88, 76,113,142, 14, -166,127,123, 26,114,154, 96, 74,164,133,141,171,121,125,160,243, 30, 23, 46,227, 43,206, 11,132, 0,149,219,112,168,129,214,247, - 28,130,183,216,221,111,107, 2,121, 98,113,223, 70,151,190,149,126,181, 37,150, 53,236, 62,249, 22, 13,183,156,102,200,201, 1, - 96,179,200, 93,193,253, 44,248, 67,179,161,183, 63, 52,102, 40, 29, 39, 39,124, 35,140, 90, 68,236, 36,175,193,102,121,217,140, -172,215, 27,124,254,217, 23,184,190,122, 9,215,159, 35,198, 9,155,179,115, 53,116, 33, 66, 22, 70,240,192,221,237, 29,118,251, - 1,222, 76, 92, 30, 62,124,160,201,101, 57, 99,181,222,152, 76, 77, 97,237, 85,223, 99,183,221, 33,197,172, 41, 94,153,225,201, -205, 44, 17, 1, 98, 78, 8,166,221,223, 58,194,205,171, 27,156, 63,184, 68,244, 30, 46,105,136,212, 55, 87,175,224,124,103,170, - 12,160,247, 4,231, 3,242,160,123,254, 41, 70,155,218, 3,188, 15,216,239, 71,107,196, 8, 57, 49,118,195, 4,130, 54, 26, 49, -206,166, 51,101, 48,144,172, 68, 57,117,188,115,232,251, 30,222,244,234,165,112, 80, 10, 90, 28, 99,134,163,140, 21, 17,216,107, -232, 12, 81, 82, 50, 30, 37,120, 4, 68, 97,116, 1,200, 76,136, 41, 98,213, 5,172,250, 0, 16,225, 54, 10,124,140,240, 46,162, -119, 14,155,206,225,209,163, 0,121,248, 0, 66,143, 32,174, 67, 98,194, 62,102,220,222,237,176,221,237,112,119,183,197,126,187, - 5,241,160, 65, 55, 8,136, 57,235,202,148, 1,230,136, 32, 25, 93, 23, 84, 3,238,156, 54,212, 94, 51, 50,200,121,188,119,222, -227, 55, 63,252, 30,198, 16,112,119,243, 10,159,125,254, 28,239,222, 94,227,209,147,247, 17,251,135,120,126,189,195,112,247, 5, -246,227, 14,219,145,225, 73,224, 67,143, 72, 30,226, 54, 26,241, 58, 90, 66,161,168,227, 29, 35, 32,143, 19, 58,202,144,174,215, -212, 59, 82,133,130, 99,192, 59, 65, 38,135,149,203, 72,157,190,150,222, 3,169, 95,129,179,146,230,148,201,172,147,122,217,253, - 11, 11,118, 34,120, 8,224, 95,120, 48,224,255,248,209, 35, 12,211,239,160,191,250,223, 33, 20, 1,244, 32,200,193, 10,148, 22, -182,199,175,141, 82, 61, 69, 14,250,214, 97, 49,223,241, 31,186, 15,126,103,155,196,205, 32,164, 45, 8,197,157, 37, 86, 43,202, -217, 11,220,131, 64,164,147, 25,101,104,106,217,162,179,183,112,134,134,100,224,154,201,130, 33, 77, 64,140, 84,153, 28, 85,249, -141,212,105,180, 76,199,128,148,161,222,186, 76,198,210, 16,133,142, 72,158, 5, 17,160, 3,214,167,212,125, 61,205, 99, 44,181, -241,165,243, 1, 47,205, 84,212, 58,205, 81, 51,177, 23, 69, 0, 56,206,209,139,181,185,105, 13, 70,232, 4,193,238, 20,134, 35, -203,233,222,126, 87,155, 42,220,122, 49, 11, 81, 99,102, 66, 71,211, 95, 45, 38,246,154,164, 97, 67,183,166,169,197,101,175, 32, - 35,157,247,232, 8, 24, 83, 90,238,236,140, 7,224, 64,198,166,135,105,170, 9,153,147, 18,150, 66, 7,226, 9, 63,185, 26, 0, - 55,135,237,204,145,179, 7,161,174, 53, 60,166, 97,190,159, 64, 68,222,200, 91, 59, 52,232,255, 86, 89,198, 77, 4, 44, 73,211, - 96,125,139, 4,167, 74,236,121,131, 41, 5,181,104, 9, 14,248, 11,167,122,240, 37, 77,147,238, 67, 30, 90, 95, 1,105,115,173, -233, 36, 92, 95,156,220, 94,119,178,205, 94, 15,115,231,182,234,123, 60,127,241, 13, 94, 62,255, 10,223,255,209, 63,139,237,205, - 75,156, 95, 92, 54, 77,157, 96, 24, 6,108,239,238,224,189, 87, 50, 92,240, 56, 63, 59, 55, 77,122,211,248, 91,193,116, 68,184, -187,187, 67,140, 58, 41,167,148,144,115, 52,195, 19,123,230,137, 16,153, 65,102, 35,187,221,222, 89,156,114,174,171,189,196,192, -205,221, 22, 4,134,239,188, 77,248, 10,197, 79, 49,193,123,157, 82,119,251, 17,132, 81, 73,158, 4,228,156, 48, 78,163, 22, 26, - 80,117,183, 75, 57,215, 51,128, 89,209,130,190,239,193, 44,240, 78,229,125,227, 56, 33,166,201,252,227, 29, 98,140,245,186,103, - 86,242,231,202, 7,253, 28,106,129,208,252,114,129, 50,241, 21,202,247,170,217, 78, 9, 32,134, 55, 68,130, 65, 72,226, 48, 37, - 69, 54,132, 51,130, 35, 4,159,176,242, 14,189, 19, 92, 94, 18,240,240, 18,228,222, 65, 68,128,228,140, 62,232,206,126,179,238, -176,217,172,145,169,215,223,149, 19,216, 82,222, 66,231, 53, 23,157,213,114,247,172, 15,160,110,131,207,159,191, 2,189,122, 1, -225, 53,194,213,136, 39,151, 43, 60,190,217, 97,242,103, 24,167,164, 28, 38, 31, 16,188,250,209, 59, 36,116,222,129,187, 21, 56, - 7,164, 20,145,137, 1,241,202,118,143, 9, 78, 50,196, 17,166,105, 0,113, 66,232, 3,132, 60,114, 78,144, 44,112,200, 26,197, - 96,235,160,206, 59,112,214,251, 63,120, 32,146,186,207, 81,206,128, 23, 80, 22, 56,138, 96,239, 49,100,135,103,196,248,237, 71, - 3,254,175, 15,159, 33,239,127,203, 52,236, 89,145, 86,153, 7,198, 26, 5, 11,117,199,123,237, 9,115,127, 22,210, 91, 65,231, -242,182,213,249,219, 66,240,116,130, 40,231,138,113,193,114,233, 0, 39,197, 71, 93, 42,100, 12,210,224,138, 74,148,106,148, 15, -185,129,172, 97,123, 36, 49,163, 24, 54, 77, 41, 31,240,178,203, 33,145, 48, 23,215,162,201, 21,193,129,220, 74, 11,191, 91,176, -237,237,176,230, 6,146, 39,170, 43,131,146,229, 78, 7,193, 92, 77, 54, 28, 28, 45,127,166,216,174,223,217,239,100, 57,177,115, - 45, 93, 30,150,114, 60, 64,179,128,199,186,171,190,135,194,238,100,118, 21,195,125,150,167, 82,155, 44,136,128,251,115, 92,116, -140,105,183, 71, 52,116,162, 28,130,108,172,251,217,208,100,126,141,174, 33,239,201,129, 12,207, 45, 98, 88,155, 32,143,166,200, -122,114,120,118,209, 35,142, 3,190,216,142,224,162,221, 55,135,192,140, 89, 47,159, 69,192,146, 64,221, 6,143, 31,157, 99,184, -187,194,148,116,247,120, 90, 91,126, 28,151,202,204,175, 39,218,189,237,238,106,233,103,249,246,227,126, 81, 7,212,189,255,236, -157,240,182,127,202, 62,189,162, 64,135, 41,168,180,168,183,139, 29,247,253,253,137,180,106,254,134, 98, 40,111,192,230,228,136, - 25,127,114,252, 40,207, 93,201, 10,144, 19,198,151,141,159, 60, 65,157,214,174, 94,222,225,163,143,126,129,191,248, 59,127, 13, - 95,125,241, 9,222,121, 39,162,235,123, 76,211, 8,231, 8, 55,183, 91, 76,113,196,122,181,198,221,246, 14, 15, 30, 92, 96,181, - 94,129,200, 33,231,132, 20, 39,205, 7, 32,117,158,187,219,222,225,230,246, 6, 49, 70,236,119, 3, 82, 76,200,204,245,172,168, -164, 82,206,232,188, 6, 67, 77,211,132, 20, 19,124,175, 18,203,100,112,247, 48,142,136,211,168,177,164, 89,247,238, 2, 45,194, - 32, 53,240, 73, 41,215, 41,220,123, 13,142,201, 22,132, 51,197,212,220, 74, 42,205, 83,228, 45, 96,189,238, 1, 43, 68, 41,101, -236,111,239, 16, 83, 86, 85, 8, 37,132,160, 60,129, 16,188, 34, 88, 94,229,114,220,114,143,156, 18,232,196, 72,127, 57,171, 70, -190, 36,161, 49, 52,215,221,153,113,149,119, 4, 49, 82,111,215, 5, 48, 58, 37, 4, 66, 16, 19, 91,144, 78,182,162, 24,235,253, -123,183, 23,120,201, 24, 61, 97,235, 12,117,115, 4,182,108,130,205,170, 3,113,143,172, 33, 25, 88,109, 58,132,208, 99, 31, 71, -172, 55, 30, 28, 30, 99,114,128,248,128, 59, 89, 35,221,100,132,176, 67,191,234,177, 10, 30, 18, 60, 98, 4, 98,142, 32, 97,244, -129, 65, 62,129, 77, 99,223,121,175, 90,127, 78, 74, 31,118, 14, 67, 18, 72,206, 88, 27, 65,125,202, 73,109,145, 69,141,104,124, -177, 23,102,193,148,163, 53, 31, 70, 24,117,154,152,199, 78, 27, 69, 18,134, 15, 58, 80, 36, 6,118, 81,240, 1, 39, 92, 61, 78, -248,232,123, 31,194,253,226, 26,196,159, 42, 12, 95, 41, 54,135,238,159,210,144,177, 79, 67,242,242,198, 10,251,255,243,164,126, - 31, 81, 14, 53,170,148, 42,107, 91,137, 22,179,134,124,214,208,210,129, 20,103,214,170,187,146,239, 92, 66, 85,138,197, 34,153, - 71, 48, 73,163,145,214, 31,192,150, 31, 94,131, 51,106,105,155,135,103,215, 22,248,131,220,233,202,209,108,248, 0,124,116,100, - 73,221,210,159,250,152,196,118,214,109,137, 41,144,221,161,136,170, 58,180, 1,139,255,141,102,125, 32, 70, 20,212,181, 64,163, - 83, 46, 90, 97, 43,180, 76,210,212,154,211,166,133, 4,153,163,103,243, 4,113, 38, 49,108,154, 20, 62, 40, 88,212, 32, 20,212, -184,127,201,129,225,236,161,134,189, 4,205,176,101,142,151, 23,151, 57, 97, 59, 0,158, 91, 8, 87, 63,171, 36, 14,239, 92,156, -161,203, 19, 94,236, 35, 58, 71, 24, 77, 32,127,185, 9, 72, 59,213,147,122,194, 66,247, 76,181,168, 45,139, 18,125,139,123,120, - 41,221,122,205, 19, 68,173,247,254,235,205, 40,228,224,179,146, 70, 10,147, 45, 49,235,173, 94,163, 28, 72,199, 14,220, 62,244, - 58,231,202, 75, 81,167, 56,247,134, 93, 63, 45,209, 10, 17,224, 62,165, 65,235, 9, 76,203, 38,109,185,251,199,210,135, 64, 14, -137,130,114,239,251,154,159, 63,143,143,126,241, 11, 48,143, 32,215,225,250,234, 37,222,121,242, 20, 62,116,136,211,136,105,156, - 16, 83, 6, 73,130,247, 30, 23,231, 23, 88,175,215, 72,137, 33,228, 48,140, 3,250,190, 67,215,173, 1,104,108,232,106,125,142, -235,171, 43,149,145,169,111,171, 18,238, 82,134,247,154, 65, 14, 40, 10,152,153,113,125, 29,113,125,125,133,119,251, 77, 13,179, -129, 83, 98, 92, 78,169,114,109, 18,171,185,140,239, 58, 76, 49,106,250,153,233,210, 37,171, 15,252,206,166,123, 54, 5, 77, 65, - 9,130,247,246, 26,146, 77,199, 14, 73,148,172, 58, 77, 19,198,105, 66, 23, 60, 28,116,247,158,134,168,206,120, 78,167,100, 71, -135, 94,140,234, 47,159, 82,130,239, 58,136,176,126,191,115,224, 44,112,222,166,120, 82, 66, 96,102, 64, 18,131, 88,109,104, 67, -154,208,245, 61, 28,133,234,135,160, 13,129,254,115, 76, 25,222, 9,124, 8,250,236, 58,189, 91, 70, 1, 98, 98,196, 49, 66,114, -194,186, 39, 12,217, 1,219, 59, 4, 79, 88,247, 29, 4, 1, 55,187, 17,121, 28,112,222,123,208,249, 10,193,123, 92,108, 86, 88, -159,159, 99,226, 0,146, 8,136, 54, 62, 18,213, 57,142, 68, 37,207, 83, 22,120, 30,224,131,174, 60, 84,249,199, 74, 26,244,132, - 40,134,242,146,104,209, 30, 21,117, 32, 7, 68, 4,112,154, 48,229,132, 56, 14,122,253, 21, 6, 84,185, 36, 3,194,172, 81,179, -142, 64,226,170,236,174,172, 71, 71, 56,132,200,248,161, 79,184,121,127,141,171,219, 31, 97,245,245, 43,128,118, 0,173,148,199, - 67,167,247,210,212,236, 89,171,195,104, 51,142,138,224,180,231,246,193,185, 34,223,186,176,255, 18,211,250, 61,108,189,192,165, -251,177, 66, 86,108, 46,133,200,252,207,219, 32, 19, 89, 64,113, 37,169, 43, 31,139,110, 17,234, 6, 67,108,242, 47, 7,186,202, -219, 50, 73, 3,105, 23,230,253,204,134,119,102, 30, 83,138,107, 53,102, 41,135,142, 65,245,115,167,197, 54, 25,187,133,142,182, -157, 60,185,249,125,212,216,111,230,123, 36, 59,165, 99, 19,154, 93,244,168,105, 6,138, 30, 31,142,102,190,177,180,191,179, 25, -215,105, 54,132, 88,233,162, 31,187,198,224,164,232,241,107,246,119,153,134,203,116,148, 35,182, 73,185, 12,238,192,242,182,133, -170,185, 65, 32,244, 71,243,145,162,187, 68,112, 22, 93,251,236, 0,183,244, 70,119,102, 77,250,114, 24,171,132,177,222,216,222, - 99,179, 62,195, 59, 93,198,213,152,144, 1,172,137,208,133,128, 56,237,241,233,103, 91,144,247, 8,158,170, 85,172,216,135,233, -137, 14,100,130, 50,199,126, 10,142,138, 85,187,135, 47, 44,127,221,185,115,109, 68,239,109, 1, 78, 25,197,223,183, 54, 94, 72, - 51, 27,233,162, 49,100,153, 85,126,244, 38,247,183,194,126,111,157,221,150,127,135, 17,186,222, 14,109, 66,215,117,184,187,189, - 1, 14, 3, 51, 14,214, 45,135, 12,131,183,114,212, 59,244,131,111, 20, 45,199,139,126, 57, 90,139,220, 47,129,179,231,188, 95, -225,179,207, 62,199,221,237, 13,206,207,207,112,117,245, 18, 49, 69, 60,121,242,126, 67,222,116,216,238,110,209,119, 29, 54,155, -141,230,158, 39,133,149, 41,120,189, 14,222, 35,120,135, 24, 7,101, 53, 91, 17,157,166, 9, 49,170,151,185,247, 14,227, 56, 96, -138, 81,117,202, 57,129,200, 97,216, 39,188,186,126,133,135,143,159,192, 21,246,183,192,238, 15, 45, 96, 41, 39,245,223, 7, 48, - 24, 41, 45, 4,133,141, 57,103,220, 13, 3, 94, 94, 93, 99,154, 6,115, 3,156,155,226, 44, 2, 98, 70,202, 90, 44,201,147,106, -214,133, 48, 77, 9,227,160,141,137,238,118,245,148,152,178, 97,127, 44, 32, 18, 4,215, 89,246,187,194,239,206,246,214,217,200, -166,222, 7, 51,223, 81,185, 90, 49,132,201, 57,107, 99, 82, 94, 77,210,231,121,138, 12, 55, 70,221,231,119, 1,112, 65, 9,239, - 54,145,172,130, 3,204, 63,191,239, 60,146, 56, 80,142,250,140, 57,192,247, 1, 64, 48,164, 15, 96,214, 79, 62,187, 30, 47,110, - 19,166,184,135, 23, 70, 23, 8,222,143,184, 88,123, 12,114,166, 43, 5,243, 4, 73, 65, 97,115, 50, 31,126, 7, 49, 2, 32, 48, -230, 9, 97, 18,100, 10,112,204,232,123,135,236, 86,144,172, 77,150, 14, 96,222,228,184,170,148, 16, 2,178,100, 36, 34,196, 36, -112,204, 32,239,145,216, 1,105, 2,145, 32,137, 7, 39,229, 40, 80,112, 96,246, 70,182,149,138,244,101,139,221,221, 8,240, 27, -235, 17,255,228,251,151, 72,187, 31, 33,236,254,239, 10,195, 47,140,201,234,211,229, 48, 59,112, 74, 67,168,251,118, 75,244, 67, - 30,208,255,183,132,185,227,159, 30, 52, 83,184,120,160,183, 44, 39,131,162, 85, 68, 48,243,191,139,101,171,237, 13,125, 61,122, - 74,128, 69,145,161,205,233, 96,206,116,201,177, 56,183, 53,135,109, 57, 35,184,248,146,211,156, 4,110, 28,252, 10, 29,207, 94, -217, 5,158,158,101,101,153, 58,245,129,207, 12,231,128, 78,227,161,234,190,190, 64, 43,229, 67,227, 50,121, 46,252,206, 77, 47, - 79, 51, 83, 84,154, 29,166,190,143, 37,146, 80, 30, 92,161, 99,197, 99,185,222,188, 48,111, 97,140, 25,166,183,167, 37,201,237, -112,162,196,220, 56,149, 8, 74, 52, 36,183, 83,214,163, 34,154, 30,182,144,144,181, 26,123,106, 89,244,179, 31, 58, 9, 0,103, -106,134, 98,113, 90,154, 32, 57,140,145, 37, 16, 11,120,218,225, 23,187,136,200, 14, 43, 15,140, 6,157, 19, 17,224,252, 50,120, -166, 97,133, 37, 41,225, 47, 56, 8, 42,145, 69,241,160,166,249, 42, 36, 55, 2,208,119, 1, 62, 16,132, 29,166, 41,213,194,190, -136, 49,165,166,101,126,141, 56,119,201,103,107, 61,177,181,164,167,204,184, 92,175,241,187,191,241, 3,252,236,243, 47,241,243, -175,175,176,233,187, 95,142,253,110,183,238, 20, 39,124,240,228, 25, 30, 61,184,192,167,159,126,138,206,187,165,212,232, 4,114, - 33, 7,175,207, 78,210, 58,177,159,162,212, 45, 28, 69, 10, 92,127, 64,248,163,163,133, 84,129, 25, 79, 19, 3,231,207, 67,191, -119,189, 94,227,171,175,190,194,171,171,111,112,241,232, 25,136, 28,190,121,121,133, 56, 77,120,240,240, 49,200,121,156, 93, 92, -160, 95, 91,118,247,229, 3,157, 30, 59,133,150, 87,235,141,122, 45,228,132,171,171,107,124,252,201,199,184,185,185, 65, 23, 66, -125, 70,245,160, 86, 54,166,134,170, 56,228,100, 9,112,193, 97, 24, 39,220,221,222,234, 32, 80,226, 91, 83,174, 4, 79, 22, 32, -166,164,210, 58,102, 76, 83,196,170,247, 8, 33,224,250,246, 22,211, 56, 97,138, 17, 57, 43, 2,144, 51,207,142,128,128, 73,243, -116, 66,244,228, 0, 71,216, 15, 35,192,192, 48,105,177, 33,231, 20,254,182, 34,236, 64,166, 99, 87,226,158,230,194,107, 86, 59, -145,102,147, 59, 86, 15,121,182, 80, 24,102,221,157,107, 80,140,106,236,153, 51,156,173, 38,156,101,154, 67,204,165, 51, 51,130, -153,230, 16, 71,136, 35,164,148,225, 29,193,245,125,149, 12, 79, 49,131, 89,117,222, 36, 25,253,170, 7,195, 3,156, 64,150, 79, -208,145,224,108,179,130,116,107,196,253, 30,193, 19,128,206,172,126, 9, 99,118, 72, 35, 67,134, 65,207,124,231,224, 36, 99,181, -242,232,186, 53, 50,121, 56, 97,184,224, 53, 38,214, 72,196, 68, 17,174, 11,216, 77, 14,156,110, 32,164, 1, 45,171, 14,128,119, -144, 76,240,196,136, 0,226,126, 2,241,136,148, 5,148,148,201,229,145,193, 14, 96, 9, 64, 30, 21,194,103, 70,240, 86, 33,148, -108,161,164,224,156, 33, 57,219,189,239, 48,102,224,169, 99,124,255,209,132, 63,127,246, 62,252, 71, 95,131,248, 51,192,109,106, -102, 69,211,193, 87,101, 79, 13, 22, 43,134, 92,243, 67,113,210, 2,251,190,153,155,126,149, 90,253, 54,211,250,209, 51,106, 41, -109,222, 43,227, 16, 44,200,162, 55,141,199, 44, 29, 19, 97, 35,155,185, 2, 8, 67, 36,171, 33, 13, 60,146, 39,147,148, 21,120, -218,129,156, 84, 54,122,221,223,214, 2,221, 64,195, 92,228, 90,109,124,165,185,158,149,125,109, 93,190,179,237,145,231,213, 0, -140, 80, 7,206, 64,255, 3,184,239,247,248,193,244, 83,108,159, 11,174, 69,137,121, 1,179,229, 40,159,112, 57, 19, 89,146,161, - 0,245,171,159,153,222, 12,225, 57,187,154,218,176,154, 69,241,150,197,134,184, 53,245, 56,164,132,101,161, 99,151,181, 83,148, -202, 74, 90,155, 27, 39,162, 89,167, 47, 75,178,186, 66, 92,225, 12,171, 14, 72,227,222,144, 23,106,108,125, 79, 64,169,198, 98, -103,114,240, 78, 59,112, 33,157, 16, 88,102,206,192,209,171, 19,198,126,210,207,187,115, 51, 89,174, 52, 9,143,214, 29,114,206, -184,137,169,126,182,179, 7, 74,145,226,201,107,225,235, 2, 93,207, 27, 6,133,171,157,193, 16, 26,137, 9,112, 90,174, 66,138, -164, 17, 36,245,202,241, 61, 15,198,236,188,214,154,238, 96,177,210,185, 92,117,120,188, 9,248,153,228,183,122, 84,219,157,122, -235,215, 95,126,108,215,245,184,125,117,133,225,238, 21,246,163, 58,178,221, 23, 18,211,150,221, 83,156, 4, 58,130,202, 15,109, - 68, 63, 12, 52,177, 0, 0, 32, 0, 73, 68, 65, 84,151, 16,197,241, 30,126, 89,232,219,200,158,215, 18, 3,109, 61,177, 94,245, -248,250,197, 11,124,250,209, 47,240, 87, 63,252, 77,124,243,205,215, 8, 97,133,219,237,128, 7,143, 28,126,248, 27, 63,194,126, -191, 3, 4,232,215,107,228, 20,177,223,222, 97,183,223, 33,167,136, 24, 7, 12,195,128,187,187, 59,220,220,110, 49,216,181,216, -238,246, 74,178,202, 42, 43, 75, 41, 35,101, 37,158,229,148, 45,132, 69, 37,101, 49,101, 92, 93, 93, 97,123,119,139,205,249, 67, -184,224,205, 81, 78,155, 0, 1, 35,197, 50,241, 10,114, 78,184,187, 27,145,179, 22,122,103,172,245,113,140,106, 48, 83, 80, 22, -219,179, 67, 8, 49,235,247, 22,130, 29, 39, 13,138, 73,156,112,182, 89,219,148,152,213,173,142, 21,133,200,162, 7, 44,145, 83, -135,196, 78, 25,230, 53, 55,126,102, 34,105, 38,188,179,113, 70, 8,142, 20,138, 15,193, 89, 49, 22, 67, 16,184,162, 93,112, 78, -249, 2, 32,228,100,161, 40, 68,112,125, 0,231,164, 4,187, 16, 48, 37,134,128, 17,186, 0,208,170,174, 35, 88, 28, 28,171,100, -111,181, 10,232,214, 27,236, 71, 86,253,184, 91,169,148, 47, 16,186,190,179,148,180,217,208,104,202,162, 10, 5, 36, 36,100, 76, - 41, 99,237, 51, 2,173,213,239,160,235,144,132, 16,144, 17, 25,184,219,143,232,120, 68,232, 2,216, 7,140, 19, 33,184, 1, 9, - 14, 49, 69, 48, 50,134, 72, 24,135, 9, 46,239, 65, 93,192,152, 61,144, 34,250, 32,216, 82, 0,199, 61, 64, 9, 68,198,193,176, -152,220, 8,168,236, 81, 50,188,176, 25,143, 1,145, 0,151,128, 95, 11, 17, 47,159,173,113,115,253,235,232,175, 94, 2, 46, 2, -232,234,144,135, 3,155,248, 37,231,107, 89,252,103, 52,249,112,138,248, 46,118,232,111,192,239, 79,235, 86,143,100, 52, 65,164, - 68,136, 54, 30,240,152,245,233, 98,240,140, 50,215, 25,130, 14,222, 63,132,248, 29,124,154,144,179,154,142, 56, 19,197,177, 40, - 4, 20,156, 96,101, 50,167,212,192,216,190,217, 97,123,243, 14,231, 66,148, 43,251, 75, 89,250,150,207,220, 96, 13, 31, 17, 33, - 51,139, 41,133, 54, 0,249, 27, 96,235,177,246,132,232, 76, 71,111,122, 75,129, 51, 47,248,217,228,164,185, 63,103,136,205,184, -179,100,143, 27,224,209, 57,129,103,198,128,165,238,155, 22,147,235, 44,129,163, 67,137, 68,153,190, 23,110,165,114,154,113,221, - 76,115,237,132, 42,198,115,208, 24, 75,187,209, 56, 87, 63,114,135,185, 33,130,115, 56,239, 9,219, 73, 48,178,155,119,206,116, -168, 78,178,107, 42, 11,178, 66,245,244,102, 44,153,217, 51,148,106,196,187,133,222,117, 94,204,151,182, 41,230, 92, 21, 2,139, - 84, 62,105, 16, 14,121, 3,124,181, 88,207,232, 29, 42,194,200, 41,163, 51, 70,115,182,155,165,149, 25,210, 98,242,156,131, 77, -218,162, 88,180,206,108,113,192, 82, 82,244, 26,216,154, 0, 4,231,112,125,183,195,255,252,143,255, 12, 55, 83,194,102,213,189, -214,180,227,200,206,246, 68,126,174, 39,135, 49, 70, 12, 83,137, 85, 93,194,225, 75, 46,188, 28, 79,209,167,154, 31, 57,104,104, - 22, 75,192,215,199,205, 46,133,134,109,204,210, 27,142, 38,210, 41,118, 63,101,252,252,103, 63,199,239,255,117,135,190,235,176, - 90,173,112,113,113,137,179,205, 25,118,119,175,112,115,115,141,119, 30, 63, 1,199, 9, 47,191,121,142, 97, 80,219,208, 97, 24, - 48, 12, 59, 45, 90, 32, 56,167,211,243, 52,106, 38,121, 74, 73,167,116,182, 34,142,162,231,230,250,242, 98,210, 9,254,234,234, - 6,207,191,122,142, 15,127,248, 0, 4,130,183,181,207, 56, 77,152,166,201, 10,120,172,255,159, 51, 87,120,158, 82,214,221,127, -140, 32, 82,254, 68,201, 9, 96,139, 5, 13,193, 65, 68,201,117, 98,134, 58, 83,154,208,247, 29, 88, 8, 28,213,200, 38, 78, 9, -193, 43,135,199,145,201,196,234, 42,198,214, 97,164, 40, 68,223,105,113,234,130, 3,249,174,146, 68, 75, 40, 16,185, 18,131, 77, - 16,226,218,200, 23, 67,160,206,154,199,108,107, 5, 88,195, 43, 68,136,153,161, 17, 1, 17, 14, 64,232, 60, 86,125,135, 36, 74, - 80,212,230, 68,155,153, 46,120,149,189,177,142,114, 93, 8, 26,207, 74,140, 85,223,193,119, 43, 99,241,151,238,218,161, 3,163, - 91, 7, 0,218,116, 0, 64,100, 32, 15,123,181,251, 77,163,114, 38, 50, 67, 82, 70,176, 93, 58,239, 7,184,206, 33, 38, 2,113, -196,200,130, 52, 37,172, 93, 70,244, 61,118, 35,176, 33,163,103,231, 12, 38,103, 59,249, 4,134,211, 64, 49,175, 25, 32, 46,235, -192,201, 89,224,136,213,239,157,169,121,132, 5, 17,130, 51, 56,124,120,145,241, 39, 31, 60, 70,222,254, 0, 62,253, 4,240,161, -174,124, 91, 18,110,225,212,204, 1,156,212, 36, 41, 54,134, 96, 39,168,205,120, 61, 40,248,237,138,253,137,191, 40,111, 98,200, -149,157, 58, 42,243,155,106,132, 31,139,238,211, 59, 18,115, 22, 34, 36, 51,121,113, 2,100, 90,129,207, 24,151,110,194,230,150, -241,205, 8,164, 10,157, 55, 21,161, 30, 25,198,156, 23, 84, 93,117,185, 96,190, 72,172,100,206,229,214, 2, 69,149, 96, 85,224, -249,226, 75,222,184, 96,171, 71,176, 39,120,108,129, 23,140,159,178,131,116,133, 11,208, 16,216,236,119, 23, 19,156,214,231,154, - 76,243, 13,219,117, 41,147,155, 17,133, 43,114, 0,115, 99,115,173, 54,190,176,227,105,185,141,164,134, 29, 95,238, 20,119, 32, -148, 40, 19,162,158,181, 60,155, 63, 16, 78, 76,250,114,130,164, 52,135,129,148, 63,222,123, 32,238,112, 29,245,209,247,214,144, -149,141,147,175, 5,185,205, 77,151,122,211, 22,166,118, 57, 72,102,115,148,198,156,162,209,151,211,162, 8, 45,239,197,109, 76, -245,112,154,107,190,153, 12, 53,119,191, 0, 39, 77,110, 14,111,224,154, 19, 79,154, 51, 94,236, 59, 79,181, 71, 39,141,243,113, -236, 19, 80,211,207,228, 96,162,165, 37,169,109,159, 53, 58,183, 51,168,178, 45,170,204,162,211,220, 61,187,117, 58,100,184, 91, -239,234,141,140,122,114,119,125, 72,106,196,125, 6, 25, 56,189, 31,135, 28, 93, 3,122, 93,142,252,161,201,140,188, 97, 74, 63, -240,107,234, 87, 27,252,248, 39,127,134,221,237, 13, 30,189,243, 46, 82, 26,145, 57,225,249,215, 95, 97, 24, 6, 92, 62,120,132, -187,187, 59,188,120,241, 28,156, 25,206, 7,196, 41,218, 13,172,145,167, 34,130, 96,113, 68,227, 56,129, 57,207, 41,130, 54, 77, -138, 49,196,139,220,213,145, 7,131,209,117, 1,219,237,136,235, 23,223,224,195,127,230,135, 16,116, 72, 73, 37,110, 2, 96,154, - 34, 82,212,212,180,113, 28,244, 51, 11,190,174,206, 98,102,100, 97,179, 47, 22, 51, 65, 82,152,124,156,210, 12,137,231,140,148, -178, 66,249,227,164, 30,243, 46, 32,229, 12, 78, 25,227, 52,214, 21,158, 19,160,235,131, 21,117, 58, 50,137, 34,211, 72, 59, 43, -222, 58,120, 59,120,239,170, 18, 64,207, 30,130,239, 93,189, 87,179, 64,101, 97,142, 32,100, 69,185, 11, 21,205,116,142,106, 51, -145, 5,136,153, 65,156,213,118,119,154,224,193,232,214, 43, 76, 19,208,121, 66,223,245,128,119,216, 14, 35, 60,180, 48, 70,209, -117,192,122,189,210,157,118,142,230,160,167,150,180,137,163, 54, 18, 69,174, 39, 0, 36, 99, 20, 93, 47, 22,174, 64,105,192,122, -175,100,196, 41, 49, 2,101,136,235, 32,156, 32,228,244, 51,118, 14,123,238,224, 36,161,119, 14, 73, 60,242, 84,172,120, 73,155, - 2, 39, 24,157,199, 20, 29, 58,137,240, 65,144,176, 50, 51, 32,149, 43,178,168, 12,142, 44,136, 74,201,115,122, 15,188,239,129, -231, 79,128,175, 94,254, 0,254,203,175, 0,119, 11,193,234,232,168,144,230,127, 16,100,174,105,213, 48,140, 94, 3,127,191,206, -104,246, 87,231,201,211, 41,205,208,137,103, 58, 20,153, 24, 8,182, 63, 1, 60,207,133, 64, 68,195, 91, 68, 84, 70,224, 48,129, -166, 47, 64,215, 30,251,142,102, 90,186, 49, 31, 13, 29,135, 99,181,133,101,161, 69,127, 83, 33,240,102,183, 91, 38,205,229,110, - 95,212,219,221,190,190,240, 37,174,218,237, 18,253, 42,112, 8,224,179, 75,172,187, 29,194,126,192, 46,105,162, 28,176, 12,184, - 56,148,182, 85, 56,197,121,156,145,189, 87, 56,221, 27, 9, 35,102, 96, 44,210,176,131, 93,138, 44,179, 46,142, 15,239, 3,239, -245,197, 52, 38,205, 44, 36,199,209,162,203,226, 61, 31,110,206, 89, 49, 17,154,161,120, 44,227,101, 51, 55,233,119,116, 48,177, - 22,121, 14, 22,100,231, 58,157,102,225,185, 17, 59, 69, 85,147,251,148,221, 7, 60,128,194,174,110,111,124,107,126,220, 1,135, -235,158,141,240, 2,221,106, 13, 35, 72, 4,197,162,128, 78,124,239,162, 93,104, 41,254,237,187,177,101,186, 8,176,222,108,144, -210,132,113,140,115,212,110,129,254, 13,210,236,253,114, 2,103,102,244,171, 53, 30, 92, 94,226,250,234,165,186,233,181, 68,178, - 19,153,240,139, 34, 76,244, 86, 40,219, 82,198,246,186, 99,226,160, 33,145,102, 71, 69,111, 64, 69, 26,235,103, 28,160, 21,114, -207,223,111,129,150,139,203, 75,252,233,159,252, 41, 62,254,248,231,248, 11,191,243, 87,241,197, 39,191, 0,121,143,213,122,131, - 71,239, 60,198,126,187,197,167,159,125,166,141,165,243, 0,205,211,183,119, 14,108,254,235,195, 56, 98,191,221,131, 57,163,239, -122,140, 99,196, 52, 89,129,119,128,100, 69, 11, 57,243,236, 77,110,113,156, 62, 4,124,252,201, 39,248,224,251, 31,224,123, 63, -252, 45,147,137,101,228,152,144, 98,174,118,175, 89, 68,139,125,108, 96,118,209,162, 46,204, 74, 58, 35, 77,123,115, 84, 66,100, - 4,195, 16,145,162,194,237,211, 56,193,123,205,172, 87, 40, 94,101,109, 57,231,170, 32,241,101,226,182, 29,122, 33,193,149,102, - 57, 4,111,100, 64,221,241,247, 43,130,247, 1,157, 15, 74,112, 43,142,150, 57, 85, 4, 20, 80,137, 41,133, 0,239,181,152, 58, - 97,139,119, 38,147,216, 89,240,150,113,147,130,215, 53, 64,202,185,158,117,121, 72, 8, 62, 64,188,199, 16, 51,242, 24,141, 7, -160,175,185,239, 28, 92,183,194, 20, 19,120,156,244,119,155,121, 84,204,106, 50,147,196, 67,114, 66,240, 0,195, 85,203,106, 71, -192,148, 35,196,136,141, 68,132, 9,140,105, 74,240,121,132, 63,235, 16,217,193,179,131, 11,218,192, 56, 34,100, 7,140,145, 32, -211, 8,231,148, 68, 71,146,103,217, 52, 3, 36, 25, 81, 4, 62, 1,171,144,145,156, 64,146,174,143,153, 2, 36,235,103,235, 73, - 45,193,156, 53,141,145, 9,235,148,241,225, 58,226,234,131, 11,164, 87, 63, 64, 24,254, 31,192,203,145, 76,141, 14,158, 1, 17, -156,208,159, 52, 17,219, 39, 9,165,175, 5, 34,191, 99,121,219,113, 72, 69, 72, 22,124,160,185, 45, 14,197, 54, 56,216,242,123, - 78, 91, 99,211,131,151,131, 50, 99,218, 59,236,157, 74,150, 92,237, 36,171, 27,188,145,232, 68,165, 31,133, 93, 92,136,118, 50, -179,109, 11,171,220, 55, 83, 33, 85,250,249,204, 66,244,237, 89,213, 20, 59,199,128, 16, 3,105, 7,144, 18, 75, 28,212, 14,182, -181,253, 60, 52,229,175, 40, 0, 20,149, 40, 81,174,201, 46, 82, 0, 89, 99, 64, 7, 62,162, 88, 76,222,237,244,210,158,167, 21, -160, 33,105,138,115,235, 84, 38,139,164,180, 58,197,222, 67,180, 16, 97, 51, 97, 64, 99, 74,211, 58,202,113,163,171, 87,253, 63, - 73,241,181,159,147,217,220, 76, 72,168,126,241, 11, 4, 65,102,214, 60,209, 12,202,206,249,234,135,211,236,233,187,180, 52, 93, -181,165,144,217,254,182, 85, 8,200,169, 73,250,158, 14,181, 78,215,116,186,152,207, 69,115,254, 34,159, 48,119,107,137,128,156, - 84,151, 76, 13, 23,159,222,100,227, 75, 74,244, 74,113, 60,250,185, 68, 14,143, 30, 61,194,246,238, 14,251,253,160, 68,166,249, - 35,158, 25,251, 39, 60,163,233,164, 36, 19, 71, 61,250,177,188,229,196, 7,113,208, 53, 29, 53,151, 21,101,146,134,163,130, 35, - 78,135, 28,172, 79, 42, 33, 88,180, 72,223, 92,125,141,247, 63,120, 15, 23,239, 60,129, 39,135, 39,207, 62,208,248, 82, 8, 98, -138,120,241,226,133,238,223, 55,107,248,208, 97, 28,246,112, 94,247,204,128,158, 63, 49, 70,133,219, 49,147,227, 96,249,231, 69, -119,158,133,145,114,170,177,205, 19,103, 68,131,126,125, 8,216,222,238,241,227, 63,253, 19, 60,253,224,251, 16,242,152,166,136, - 56, 77, 22,240,210, 26,200, 8,146,186,151, 64, 64,136, 49,105, 49,176,253,247, 56, 69,196,148,140,152, 74,154, 10,153,181,104, - 79, 83,132,243, 78, 35,102,129,170, 83, 87,102,125,225,122, 64,181,248,110,142, 23,246, 65,109, 79,139, 45, 43,108,103,175, 95, -243,117, 21, 70,166, 33,207, 89, 87, 7,142,148,148, 22,188, 83, 29, 57,160, 28, 0,139,132, 45,205,100, 8, 30,112, 30,204,138, - 50, 56,175,121,239,186, 78, 99,164,236,204,156, 71,176, 94,245, 32,223, 33,197, 8, 56,216,174,158, 64, 22, 37,171, 71,128, 71, - 76, 12,176, 94,163,156,213,193,141,200, 33,145, 3,179,174, 33, 38, 22, 56, 47,138, 2,250,128,253,148, 64, 57, 89,211,226, 32, -112, 70, 84,140,112,146,193,220, 21, 49, 34,212,200, 83,144, 9, 72,160, 57, 1, 15,100, 65, 60, 25, 41, 70, 72,142,186,194, 21, - 70,231,213,149,110,204, 12,102, 93, 45,120,239,212, 50, 86,138,108,218, 82,253,156, 0, 62,128,197, 35, 50,227, 17,103, 60,123, - 48,225,211,199,239,195,127,254, 5, 32, 47, 1, 90,191, 65, 18, 51,163,140,109,158, 39, 53,161,101,135, 83,115,219,248,126, 39, -245,250, 62,134,239, 61,169, 83,129,157, 83,253,179,148, 28,113, 50, 9,134, 62, 56,201, 92,225,218, 29,103, 54,220,215, 57, 54, -216, 30,117, 42, 22, 59, 68, 65, 82, 37,113,190,250, 11,235,241,145,176,148, 45, 17,230,160, 17, 45, 64,124, 36,170,209, 4, 50, -215,184,185, 53,251,209, 82,132,242,128, 24,129,209, 57,211,133, 54,164, 6,243, 96,103, 34,235,162, 27, 19, 27,154, 67, 94,226, -129,199, 53, 31,236, 53, 91,110,130, 28,206,170,210,134,165,232,164, 47, 66, 7,107,131,153,201,221, 90,193, 82,147,204,114,228, - 46,102, 56,248, 2, 66, 61,178,172,109,140,131,154, 29,107,105, 50,170, 83, 96, 37,148,153,131,189, 52,133,188, 20,122,131,187, -229, 72,246,113, 98,140, 22,185, 23,101,168, 82,197, 54,249,112,113,255,157,214,231, 31, 18, 25, 15,239,109,126,163,140,100,102, -246,147,247, 88,247, 29,198,105, 92,120,208,180, 63,115, 24, 71,180,134, 73,139,168, 19,185,191,168,167,148,112,117,125, 13, 95, - 92,194, 26, 68,104,191,189,211,233,199,209,113,161,118,110,177,210,168,223,119, 82, 7, 78, 71, 75, 10,185,239,221, 31, 70,205, -190,129,161,223,102, 10,157, 12,187,104,254, 62,139,128, 14, 62, 96,231, 8,215,215,215,120,242,244, 93,252, 55,127,248, 15,241, -206,227,119,113,245,226, 75,172, 86, 43,172,194, 5,198, 41, 98,183,187,195,163,135,143,112,182, 57,135,243,132,245,106,131, 23, -223,188,192,203,111,190,134,247,132, 56,149,105, 92, 11,220,122,213, 99, 20,198,221,205,132,113, 24, 20, 65, 20, 27, 40,114, 42, -102,149, 74,204,172,146, 65, 66,112,138, 24,252,226,227, 47,240, 27, 31,255, 57, 62,252,139,255, 28, 4,192, 48, 78, 96, 43,188, -133, 88, 88,124, 28,156, 33,112,228,128, 64, 30, 34,108, 86,170,133,235,160,186,116, 50,105, 89,204, 17,161, 11,139,169, 59,166, - 12,206,185,105,232, 8,222,249,218, 32, 50, 11,156,167,106,115,237, 93,168, 62,239,206,235, 36,189, 89,175,117,229,201,217, 60, - 67,148,249,238, 12, 57,149,134, 44,236,188, 51, 91, 93, 93, 65,244,171, 94, 11,184,125, 56, 93,112,106,146,227,200, 32,120,155, -222,136, 0, 38,172, 87, 1,226,180,177,242,142,144,205, 69,114,181, 14, 32,175,110,123, 10,123,231,198, 96, 76, 85, 32, 61, 49, - 66,223, 97, 63,101,164, 41,194, 65, 19,249, 74,129,155,198, 8,199, 9,171, 85, 15,129,175,124,136,148,141,192,230, 59,220, 13, - 25, 36, 19,186,224,236,156, 71,125, 86,131,247,200, 80, 67,153, 82, 72, 25,132,152, 29, 36,141,232,156,128,200,155,219,165,131, - 23, 77,215,115, 78,237,100,217,206,208,196, 2, 15, 86,165, 85,102,192, 17, 70, 33,172, 39,198, 15,250, 9,223,124,112,129,233, -250, 7, 8,219,107, 72, 40,110, 40,111,168,175,141,105,205, 41, 15, 83, 89,252,165,111,225, 62,249,203,106,214,137,150, 44,233, - 22,126,119,133,128,228, 4,129, 25,158, 29,152, 74,198, 74,209,126,211, 44,191,151, 37,129,206,134,233,198,199,221, 28,127, 68, -224, 68,212, 98,182,198,187,210,108, 15,219, 20,220,114,227, 72,133,152, 78, 76, 48, 86,152, 73, 10,251,189, 77,215, 65, 37,147, -137, 65, 64,109, 34,219, 60,249,183,243,207, 28,134, 66,182,187,201, 21,206, 55,184, 91,142,101, 82, 84, 18,230, 22,215, 83, 45, -163, 10,100, 95,136, 93,140,227, 66,125, 74,115, 93,119,213,180,164,179, 83,129,154,155,104,206,130, 44, 56,135,170,227, 23, 52, - 59,251,170, 61,167,133,250,114,150,111,105,226,222,250,236, 12, 30, 35,110,183, 35,156,243, 88,154,145,222, 31, 80,176,152,222, -171, 79,191,156,242, 47, 91,148,160,226,236,183,188,109,151, 15,198,161, 20,228, 84,168,225,169,127, 71, 45, 81,144, 14, 8,124, -156,205,223,224, 52,111, 93, 4,102,211,185, 44,114,111,245,232,145, 66,166,167,254,236,246,131,113, 10,230,229,115,202, 9,151, - 15, 30,226,193,131, 75,124,249,197, 23,139,207,255,222, 53,205, 73, 60, 67, 78,179, 96,219,189,142,208,233,189, 95,221,251,208, -220,212, 85, 36, 69, 78,160, 14,116, 74, 29, 7, 50, 9, 17,115,196,127,242,247,254,115,252,243,127,233, 47,225,167, 63,254, 51, -236,135, 61,134,253, 30,231,103,103,120,250,222, 7,234,111, 46, 25,155,117,111, 41,108,140,199,143, 31,227,230,230, 21,134,155, - 91,149,153,217, 46,152, 25, 24,199, 17,195, 56,128, 89,247,215, 57, 26,252,156, 53, 72, 37,155,203,154, 15, 78,215, 76,153, 76, -182, 38, 70,124,116,248,232,163,143,241,189, 31,254, 38, 82, 76,186, 75,159, 34,146, 77,117,156, 21,190,239,122,213,104,111,119, -251,138, 40,101,123,125, 5,146,103, 59, 0,198, 56, 34,199,132,205,217, 90, 17,128,113,196, 52,168, 86,158,138, 49,145,125,214, -125,223, 41,103, 32,171,159, 90, 8, 1,222,185,202,252, 13,193, 27,255, 69,139, 81,215,117, 11,238,205,148, 82,109,100,187,174, - 67,178, 64,153,148, 24,228,154,212,204,172,207,191,119, 51, 75, 91,236,236,212,198,113,206,199, 13, 68,160,222, 60,231, 29, 97, - 50,107, 88, 34,135,142, 8,190, 95,213,243, 45,120,175, 70, 55, 57,153,146, 73, 63, 23,237, 37,188,162, 43,108, 90,111, 82, 72, - 63,197,136,108,171,130, 62,104, 80, 77, 49,240,137,153,225,196,180,242, 76,160, 50,237, 39,129,247, 9, 25, 1, 57, 49, 86, 46, - 35,154,217, 15, 33, 35, 51,129, 56,161, 8,171, 85, 77, 64, 72,211,132, 14, 9,174,235, 22,167,136,218, 79, 27,221,155, 1, 79, -140, 44, 94,165,183,148,145, 51, 33, 18,227,161,120,188,119, 62,225, 23,239, 60,129,223, 61,178,105,125,117,239, 84, 76,247,184, - 69, 44,161, 66,158, 77,209,154,201,254,117,205,245,119, 2,193,183, 57,216,109, 81,207,162,240, 87,201, 32,115,150,154,198,100, -142,111,162,133, 52,217,163,239,154,195, 65, 4, 11,178, 83,101, 85,139,202, 53,136, 9, 25, 14,137, 72,151,247, 7,131,158, 52, -249,222,243,180,171,200,128,151,165,214,125,222, 47,139,201,211,140, 0,103,213,149, 27, 79,117, 39, 75, 39, 46,215,192,237, 97, - 33,219,153, 59,253,140,217,164,165, 20,124,110,138, 24,201,124,232,241,225,101, 20,149, 5,117,164,235,137,137,103, 97, 55,181, - 48,185,233, 75, 75,167, 15, 35,226,145, 43,100, 62, 35,204, 57, 45,230,213,240,165,120,207,219,193,225, 90,152,184,108,126, 91, - 55, 61,211,130, 22,219,220,210, 84, 56, 59,160,133, 4, 49, 14,250,142,205,166,178, 53,138, 61,148,119, 52, 54,253, 71, 85,149, -238,209, 84,139, 28,228,204, 99,118, 45,107, 99, 14, 95,107,210,112, 96,156, 82,222,251,161, 6, 92, 22,255, 65,139,118, 66,178, -152, 43, 24, 29, 35, 9, 7, 59,125, 58,224, 16,136,252,242,143,221,161, 67, 92,153,208,227, 52,226,238, 21,227,208,104,230,212, -123,150, 35,118,197, 27,242, 95,229, 68,102,244, 41, 6,109,243,117,169,228,184, 3, 2, 67,245,143,144,147, 89,210, 2,224,230, -230, 6,127,229, 47,255,101,252,203,191,247,123,248,234,139,207,209,245, 61,124,215,227,225, 59, 79,208,133,128,179,179,115,132, -208, 97,140,147,122, 31, 24,100,220, 5, 13, 42, 25,198, 81, 89,220,125, 15, 17,193, 48,142, 42,101,203, 19, 24, 26,186, 50, 77, - 81, 39,250,164,228, 72,101,182,187,202,112,119,228,224,140, 92, 27, 99, 70,191, 89,227,234,229, 53, 94, 93,189, 84, 98, 93, 74, -136,147,106,158, 83,102,205, 78, 15,218, 4,239,247,131, 66,208,152,125, 34, 56,243, 12,227,230,172,126,238,113,194,217,217, 6, - 33,104,145, 21, 40,235, 94,198, 60,223,107,162, 5, 59, 4,141, 80, 37,167,234, 10, 71,138,104, 56, 31, 10,111, 29,171, 85,175, -103,145,215, 32,149,156,181,169, 9,222, 27, 33,184,184,173,217, 40, 85, 37,146,118,239,147, 83,214, 62, 8, 49, 49, 66,199,154, -101, 95,166,121, 53, 78,215,123,222,123,116,190,200, 97,141, 56,203,113,150, 26, 23,242,167,157, 13, 33, 56,196,168,241,183,197, - 89, 19,194, 42, 29, 21, 64, 56,155,125,116, 70,134,195,184,143,181,128,119, 94,239,217,148,216,226,108,129, 46,116,128,116,198, -198,159,116,109,144,146,218,201,118, 14,226,231, 48, 40,206, 25, 49, 11, 56, 70, 13, 10, 35, 85, 43,119, 36, 64,231,145, 19,192, -148, 81,163,192,200,169, 51, 99,206,154,232,232, 8, 83,240, 64, 86,207, 18, 71, 64, 38,205,172,135,100,140, 4,208,144,240, 52, -100,124,241,248, 12,233,155,247,224,247, 87, 64,184, 95, 85,190,224,233,136,156, 24,114,154, 97,151,230,147,180, 32,193,203, 88, -212,239,218,134, 70, 78,170, 84,130,128, 45,131, 28,224,106,130,100, 5, 92,104,182, 41,109, 15, 62, 57, 22,101,185, 22, 28, 20, - 1,232, 28, 83, 16, 32, 15,170,129,167, 19,243,217,225, 25, 68, 75,155,211, 25,254,165,250, 69,103,137,108, 9,141,169,140,201, -220, 10,169,174,152,206, 46,139, 78,101,175, 85, 24,187,245,157,147,226,167, 94,216,248, 40,230, 58, 77,227,210,176,209, 90,147, - 18,125, 91,140,209,174, 75,133,205,120, 38, 99,149,221,139, 91,196,168,154,235,188, 52, 87,177,241, 34,164, 38,240,163,181,201, -245, 7, 10, 2, 13,182, 56,224, 78, 31, 72,246, 90,254,147, 3, 33,199,136, 76,122, 40, 46,132,105,188,180,203,109,231,246,146, - 57,207, 45,236,115,146,132, 37,243,254,181, 89, 89, 44,125,151,229, 36, 73,206, 29,162,251,205, 20, 75, 11, 44, 76,142, 30,174, -121,175, 94, 18,217,168,162, 43,133,213,124, 56,225,207, 43,140,198,166,239, 59, 54,106,150, 42,101,243,152,166, 9,195, 56, 34, - 56,255, 26, 81,202,129, 7,255,107,193, 60,121,253,103, 65, 75, 70, 98, 59,125,215,157,249, 97,238,188, 52,201,110, 34,247, 30, - 31,211, 56,224,251,223,123, 31, 23,231,151,186,134, 8, 94,119,156, 36,240, 30,216,239,111,225,156,199,122,125,134,205,197, 3, -196,164,241,166,251,221, 14,227,126, 15, 34,160,183,130, 62,165,169, 18,215,134,221,136,221,118,135,113, 24,225,131,241,109, 60, -169,164,140, 51,200,121, 37,135, 17,129,157,161, 99, 89, 93,201, 54,235, 53,110,119,183,248,236,147, 79, 64,221, 57,182,219, 45, - 24,185, 66,193,100, 59,228,113,156,144, 98, 54,196,129,193,156,204,236, 70,153,232, 41, 37, 12,251, 1, 83,156,112,126,182, 65, -191, 90, 99,138, 89,115,223,179,154,204, 20,173,124,240,193, 96,121,109,144,203, 20, 94, 77,179,156,135,119, 30,125, 31,204,241, -142,140, 53, 46,154, 88, 22, 28,130,239,205, 2, 90, 76, 17, 96, 30,114,198,140, 39,210,198, 6, 4, 4, 71,232, 86, 74,232, 43, -241,169, 1,172, 36, 59, 82, 38,188,247, 30, 33,120,116, 37,218, 54,179,173, 17,180,224,122,231, 16,186, 14,137,141, 45,109,171, - 39,206,102,193, 42,192, 52, 77,139, 19, 59,139,162, 36, 49, 50, 2, 49,152, 28,166,148, 17, 40, 35,116,157,238,207, 89, 79, 95, - 61, 43, 92,253,157,201,114,235,147, 16, 56, 37,116,158, 48, 49,128,172,211,248,148, 1, 65, 68,202, 48,255,122, 93, 77,184, 16, -180,232,179, 64, 56,194, 35, 43,235, 31,172,196,108, 22, 56, 36, 16, 5, 56, 2,206,130,199,224, 86,112,201, 1,146, 52,119, 61, -155,204,208, 5, 76, 44,184, 20,193,211, 7, 25,159, 62,122, 6,183,255, 12, 36,119, 0,245,184,207,220,245,148, 13,196,242, 12, -105,182,237, 21,209,109, 21, 70, 77,147,254,203, 20,248, 83,231,209,107, 6,142,160, 15, 4, 35, 91, 40,138, 55,194, 6, 19,208, - 17,180,176,131, 43,249,173, 49,211, 91, 28,140, 84, 53,211, 70,186, 91,189, 3,126, 79,240, 91,254, 75, 60,248, 34,227,159,236, - 29, 6, 39,213,216, 70, 11,182, 91,156,161, 84, 29,235,168, 78,195, 84,225,219, 2,245,211,193,185,219,184,165, 45,176,122,179, -154, 21, 65, 2, 53,129, 49,237,234,112, 46, 62,133,196, 39,181, 8, 45, 39,226,249,192,148,202, 30,175,141,131, 44,181,210, 5, -197, 40,206, 68, 37,254,181,132,199,156, 58,194, 51, 11, 92,183,198,166,119, 72,195, 14, 19, 19,252,204,184,131,147,101, 19,116, -152, 79, 55,107,204,231,198,230,176,251,116, 77,183, 25, 10, 36, 8, 2,114, 68,204, 25,161,235,245,208,147,217,240, 69,236, 58, - 74, 75,243,163, 6, 35,184,175, 50,181, 89, 33, 71, 76,209,211, 22,164,109, 55,220,118,197, 5, 26,166,251,162, 76, 1,172,131, - 51,105, 82, 41,222,133, 50,171,236,192,148,179, 25,129, 28, 27,229,147, 28, 72, 16,133,126,165, 41,253,240,123, 99,156,224,157, - 87,242,152,145, 81,229,181,207, 53,129, 78, 46, 24, 94, 39,116,193,172,151, 91, 52, 78, 75,180, 67,195, 66,120,241,189, 36,173, -252,242, 16, 33, 57, 26,222,173,200, 56,236,118,123,220,221,221,194, 7, 77,234, 98,206,152, 98,196,110, 24, 16, 99,180,169, 82, -176,238, 87,120,248,232, 29,120,239, 17, 99,196,215, 47, 94, 32,115,198,217,217, 6,142,156, 6,129, 36,221,175,111,111,119,184, -187,185,211, 48,150, 20,205,207,156,172, 96,166,122,143,139,197, 65, 59,239,144,147, 22,102,149,188,169,217,201,207,127,250,115, -188,251,244,253, 10, 15,151, 51, 35,165,132,105,138,102, 72,197,118, 15, 27,212, 14,157, 68, 99, 74, 90,244,115,198,230,108,131, -245,102, 83, 57, 4, 49,171,209, 9,219,126, 59, 56,175,146, 50,117,142,209,124, 0,210,189,182,135,135, 15, 30, 33,104, 18, 27, -168, 49,220, 22,253, 57, 42, 67, 11,149, 28, 88, 26, 46,201, 26, 7, 29, 44, 68,166,248, 62, 56,104,200,137,126, 6,172,147,182, -177,227,189, 21,249,206, 19,250, 85,135,204,205,154, 40,120, 76, 99,182,176, 26, 70,191, 10,186,159,103, 37, 0,250,146,117, 96, -230, 45,251,113, 2,210,136,208,247, 72, 73, 11,189, 18,208,212, 68, 71,208, 35, 77, 58,165,235,250,174,160,253, 90,208,189, 87, -184, 61, 39,229, 75,144,168,244,211, 57,135,236,122,243,177,207,214, 8, 48,166,204, 10,249,219,197, 9, 14, 72, 8, 32, 78, 24, - 89, 48,236, 71, 72, 26,225, 8, 72,222, 65,152, 0, 81, 87,193, 4, 7, 39, 17,189,215, 83,251,204, 39, 12, 20,144, 70, 64,242, - 88, 93, 79,235,240,195,132,247, 66,194,243,199, 27,228,151,239,193,143, 55, 54,173,159,120,186, 12,217,164, 19, 3,201, 73, 41, - 46,181,172,121, 57,150,166, 54,127,145,126,149,205, 59,181,175,101,217,110, 7, 50, 72,200,217,238, 54, 11, 0,202,117, 87, 75, - 32,176,179,144, 18, 99,148,195, 44, 20, 43,196, 43,139, 64, 72,144, 19,240,244, 37,232,107,194,182,215, 14, 65,154,162,201, 52, - 67,199, 84,200,101, 52,123,165, 83, 99, 11, 91,162, 88,185,157, 38, 15, 36, 82, 21,154, 47, 31,128, 20,239,248,134, 53, 95,167, -205, 57,246,181, 85,255, 44,247,192,205,222,188,216,215,218,107, 43, 49,149,217,186, 80, 58,152,134, 22,133,238, 32, 75,189, 78, -196, 60, 19,214, 74, 19,225, 0,128, 35,242,164, 80,153,163,165,223,183, 59,224, 69,184,230,119,205,208,114, 81, 17,204,135,251, - 17, 1,237,192, 92, 92,120, 66, 56,127,140,135,103, 43,220,124,243,165,238,189, 12, 34,168,175,251,192, 66,216, 53,140,254, 99, - 7,189,229,154,247, 56,138,252, 20, 17,203,161, 40,198, 50,161,154, 89,208,129, 4,141, 27, 46,194,225,159,204,178, 76,238,179, -169,155,115, 66,183, 58,195,175,127,255,251,248,234,139, 79,176,221, 13,170,231, 95,114,244,127,101,117,233,125, 4, 85, 2,112, -121,249, 16, 41, 37,196,105,172,190,228,175, 17,165,157,120, 29,111, 33,124, 59, 10,154, 88,250, 48,139, 40,169,201,121,135,113, - 24, 15, 6,251,251,163,239,218,200,213, 89,178,235,112,245,242, 37,222,123,239, 25,126,255, 95,251,155,184,185,189,173,166, 46, -194,130, 85,191, 66,232,122, 51,143,201, 72,204,120,254,245,115, 69,193, 50, 35, 9,112,126,118, 14,129,178,222,243, 56, 96, 26, - 71,220, 92,223,224,246,246,182, 58,158,121, 63, 55, 11, 10,189,171, 69, 48,139,128,179, 6, 15,169, 29,172,121, 84,146, 64, 72, -176, 90,173,240,242,250, 22,211, 20,113,249,240,145,218,183,138,182,194,147, 89,197,130, 14,214, 56, 2,164,164,178, 53, 13, 53, -114, 88,247, 61,206,207,214, 32,231, 49,197, 9,193, 57,176, 87, 86,113, 8, 58,125, 7, 91, 37, 20,249,154, 39, 50,185, 91,175, -238,113, 38,235,242,142, 16,130, 25,204, 20,190,143, 35, 8,147,177,183, 29, 88, 18, 60,233,189,204, 53,222,122,254,104,157,159, - 23,149, 44, 98, 63,211,107,164,108,223,233,132,159, 50,156, 87,137, 89, 23,188,202,205, 82,172, 14,119,146,147, 37,188, 57,228, -152,144, 19, 3,156, 0, 82, 9,177, 39,177,243, 7, 8,171, 30,112, 1,142,147, 54, 80, 4, 36, 33, 32, 37,100, 8, 56, 69, 43, -240,154, 72, 87,100,129, 33,232,238, 61,217,250,195, 27,131,127, 72, 12,159, 71,136,115,152,146,128, 88,213, 14,146, 85, 74,171, - 77,129, 98,238, 20, 20,146, 31, 19, 48, 14, 3, 28, 71,144,119,200,226, 16,179,170, 38, 2, 1,226, 29,144, 61, 58, 47, 16,172, -244,186,176,160, 39,128, 59, 15,112, 15,230, 1, 41,171,229,172,247,132,140,128, 75, 2, 30, 93, 10,158, 95, 62,133, 31, 63, 7, -100, 80,148,227, 36, 93,133,222,130,103,115, 64, 87,110,139,123, 99, 56,214,238,222, 5, 39,214,101,111,185,117, 95,182,253, 7, - 59,117,154,163, 2,140,148,101,251, 13,154,137,102,186, 99, 47, 68, 53,237, 10, 51,205,185,211,121, 49,160,217,131, 34, 9,110, - 39,248,236,214, 33,121, 77,107, 43,133,136,155, 93,177,111,109, 64, 23,132,227,214,131,123,134, 47,234,228,222,188, 23, 87,194, - 80,154, 64, 74, 7,212,228, 56, 28, 48,167,233, 4,220,139,197,158, 29,139,137,128, 68, 14,124,221, 73,111,224,214,132,165, 64, -247,141,126,188,194,168, 70,120,227,134, 24,197,141,179,157,254, 28, 53, 77,136, 73, 33,122,223, 20,237, 67, 83,184, 35, 78,212, - 1,127,147,172,163, 47, 18, 67,180, 13, 69,133,231,117, 26, 77, 41, 99,181, 58,199,175,189,127,137, 31,191,252, 28,163,120,157, -204,205,252,103,110,122,102,138, 52, 29,200,162,203,207,227,102,162,230, 6, 5,169, 36, 72, 67, 68, 78,234, 58,113,191, 95,178, -220, 51, 1,183,107,155,201,166,156, 35, 18,185, 77,166,211,176,181, 67,156, 78, 23, 82,153, 71, 82,225,239,166,168, 51, 43,203, -249,111,254,171,127, 29,207,191,252, 4,255,203,255,250,191,225,108,115,134, 35,231, 35, 57,181, 79, 95,174,135,238, 35,234,205, - 68,204, 83,102, 20,203, 84, 54,206, 9, 57,183,235,163,226, 42, 72, 75,198,255,125,191,203,140, 82,174,190,121, 9, 17,198,255, -240,199,255, 8,191,247, 7,255, 10,126,254,211, 31,219, 30,216, 1,208,240, 21, 16,208, 5,143,148,148,228,229,200,107, 44,105, -231,209,145,102,141,199, 20,117,178,223,237,176,187,221,226,230,213,141,237,108, 25, 49,199, 25, 98,135,233,219,189,145,205,132, -144, 37,195,121,194,196, 73,225,115, 81,135, 56, 79,154, 84,225,187, 14,175,238,118,216,238,247,216,172, 55,240, 93,111, 41,123, - 4, 23,130,221, 11,186, 99, 79, 41,129,115,212, 6,217,171,126, 60,120,157,192, 11,140, 30, 92,176, 29,111, 50,159,118,169,174, -148,133, 23,211,119, 1,171,126, 5,114, 14,161, 11,134,206, 56, 56, 23,116, 74,245, 78, 27,250,108,137,113, 32,116,171, 30, 93, - 87,166,106,170,197, 51,244, 93, 69, 23,179, 65,254,206,163, 34, 80, 33,120,108,214, 43, 37,232, 58, 7,231,149, 85, 79, 36,240, -222, 67, 72,189,225, 51, 39,112, 22,164, 52, 33,167,104, 73,112, 38,173, 51, 46, 21, 57,178,223,129,106,194, 19,156,141, 54,204, -205, 67,106, 81,168, 49, 67, 36, 34, 56, 93, 51, 8, 8, 49, 1,200, 17,112, 14,121,138,112, 20, 1, 71,144, 12, 36, 88, 86,189, -169, 22,144,116, 13,146, 68, 9,144, 5,117,241,100, 49,205, 62,128, 73, 48, 68, 70,220, 15,232, 92,130, 95,245, 96, 56, 76,137, -193, 41, 35,144, 32, 18, 1, 41, 34,208,132, 40,106, 93,228,124, 7,134, 71,240,130, 46, 16,134,220,129,166,136,206,101, 16,249, -122, 63,109, 68,240,189,243,140,151, 79,222, 65,126,245, 20, 62,253, 66, 93,230,240, 6, 64,236,219,100,157,183, 3,245, 34, 5, - 81, 22,210,230,163,245,215,219, 44,244,228,126,187,106,149,163, 55, 95,103, 27,139, 11, 4,223,238,169, 21,150, 52,120,214,233, -215,195, 76,175, 50,114,217, 76, 50, 98, 16,224,149,232, 80, 66, 73,138, 13,233, 34,209,172,124, 93, 80, 9,111,229,152, 97,110, - 67, 96,150,161, 23,210, 16,231,228, 96,215, 92,244,240,220, 20,222,234, 67,210, 76,145,135, 94,247,100,147, 61, 99,217, 48,180, -215,154, 91,210, 89,227, 20, 69, 7,197,181,101, 20, 23, 66,210, 41,178, 69,249,160,139, 49,197,108, 89,123,176, 75,110,102, 75, -150, 54, 91,136, 22,157,155, 18,242, 14,118,205,118,119,149, 25,216, 27,235,121,189, 90, 35, 93,127,142,127,122, 45, 16, 9,232, -156,189,247,197,238, 92,142,246,187,116,176,255,158,255,121, 70, 88,164,146,248, 48,103,170,179, 28,149, 15,102,214,221,161,177, -147,241, 58,242,220,137,167, 70,108,255, 91, 63,147,106, 26,160,242,190, 28, 39,124,244,241, 39, 8, 93,167,100,164,102,178, 93, -120,173,176,153,125, 56,247, 43, 76,231,243,254,218,217, 62,244,159,254,227,255, 19,195,184,199,170, 95, 31, 16,103,112,175, 21, - 36, 45,124, 19,223,226, 34,208,145, 90,255,184,201,144,182, 89,152, 27, 86,224,245,142,117, 45,249,239,213,245, 43,176,100,252, -247,255,227, 31,227,247,255,224, 15,240,201,199, 31,205, 18, 57, 22,147,106,121,213,109, 83,243,110,108,186, 45,215,200, 5,143, - 60,142,184,187,189,193,246,246, 14, 47, 94,188,196,118,187, 53, 43, 82,133, 81, 99, 74,240, 54,181, 42,161,174, 83, 73, 88, 74, - 72,156,173,152, 75, 69,211,196,118,199, 66,128, 15, 30,157,116,200,153,113,115,119, 11,111,105,120, 69,126, 88,236,129,115,210, - 64, 32, 71, 14, 93,223,213,169,219,123,175,178,176,224,225,132,172,240,231,153,163,193,106,112, 82,154,238, 46, 4,248,208, 97, -181,238,177, 57, 59, 71,140, 42,191,115,198, 32,215, 92, 5,189,247,162, 36, 56, 59, 41,250,190,211,209, 73, 52,136,165, 20,219, -204, 17,125, 8, 90,104, 77,191,173,169,126,250,180,119, 94,217,255,142, 4,161, 87,247, 56, 97, 43,232,230, 12, 42,204,102,193, -171,168,192,217,102,165, 12,242,152,230,225, 72,111,250,106,112,163,247,111, 94,116,219,100, 1, 41, 49, 37,117,130, 51,222,132, -115,206,120, 67,186,167,167,114, 15,228, 12,120, 64,178, 51,197,131,190, 55,239, 28, 50,107,222,102,209,125, 19,105,128, 20,153, - 39,128, 55,254,192,144,129,105, 24, 17,144, 16, 66,128,144,105,229, 89,221,229, 84,255, 46, 16, 81, 76, 53, 37, 65, 47, 17,107, - 39, 32, 90,131,197,161, 35,129,172, 28, 38,108,128,184,135, 16,195,137,131,115, 2, 65,192, 35, 18, 60,120, 32,184, 58,127, 10, -127,253, 57,202, 2,250, 62, 82,233,235, 74,184,220,247,228, 29,110,196,208,132,197,148, 32,153,111, 93,220,103,174,208, 41, 4, - 33,148, 41,172,205, 41, 47,144,122,110, 24,213,190, 22,125, 88,183, 60, 23, 15,114, 75, 90,108,245,123, 98,177, 76,241,214,196, -164,181, 11, 61, 17, 35,217,100,221,202,129, 86,186,117, 2,107,231,118, 87, 17,131, 86,159,222,146,237,104, 62,204,104,150,102, -249, 58,245, 43, 92,239,155,242, 21, 22, 19,211, 18, 69, 40,205,129, 43, 19, 56,176, 48,101, 89,152,159,212,215,184, 12, 40, 57, - 77,122, 62,158,207,232, 4, 33,113,110, 54, 96,166,129, 55,100, 99, 0, 0, 32, 0, 73, 68, 65, 84, 11,122,184,177, 61, 20,167, -136,207, 44, 75,121, 20,215,230, 69, 59,147,196,106, 3, 89, 27, 26, 57, 86, 71, 75,147, 33,223, 94,223,186, 29,146,165, 12,171, - 50,224,157,249,214,131, 76, 94,114,188, 26, 96,230, 55,113,187,223, 40, 47, 91,188,235, 3, 13,120,223,247,139,207, 83, 14,224, - 6,177, 98,212,175, 87,170,143,254, 14,228, 38,133, 5,251,179,143, 62,130,247, 65,227, 57,223,128, 2,208,235,143,136,123,145, -247, 35, 39,164,251,174,145, 28,170, 54, 80, 73,135,175, 61, 70,156,195,221,237, 29,246,251, 29,254,187, 63,252, 35,252,155,255, -214,191,141,159,255,236, 39,216,237,118,234, 78, 6, 66,226, 12,114, 22, 39, 27,122, 76,113, 68,138, 81,167, 99,239, 84, 43, 94, - 60,185,227,132,237,221, 45,110,174,110,149,173,254, 74,155, 5,141,100, 85, 68,199, 59,143,208,117,182,171,159, 52,203,124,229, -212,130, 52,149, 9,143,235,231,167,125, 28, 43,243, 28, 90, 68, 28, 57, 35,183,101,108,183, 59,196, 56, 97,220,239,241,240,225, - 67,132,205, 5, 32,106, 20, 35,208, 48, 35, 13, 61,209,137, 57,132, 0, 31,180, 72,146, 11,192, 36, 72, 9, 22,161,218,213,102, - 98,181, 90, 33,116, 29, 86, 93,192, 7,223,251, 30,246, 83,194,120,117,165,247,188, 87, 86,123,223,245, 0, 17,178, 68,116, 33, - 88,195,103,114, 65, 71,232, 93,135,152, 18, 56,114,117,218, 19, 0, 93,231,209,247, 29,200,193,138,184,106,209, 67,167,158,243, -222,123,101,140,231,136,245,106,101,235, 83,129,179,188,139,110,221,171,199,189,217,182,194, 38,239,118,231, 91, 44,194,139,231, -136,112, 82, 69,142, 53, 45,197, 8, 70, 85, 4, 25, 93,240, 32,167,171,132,156,210, 44,169, 99,181,188, 82,229, 7, 25,255, 90, - 64,206,207,121, 6, 4,107, 16, 4, 48, 68,199, 57, 75,177,179,192,170,196,202, 55,240,142, 33, 8,152,146, 32, 80, 84,198,215, - 76, 92,130,179,236, 1,161,128,148, 5,195,148,128, 60,162, 95,101,116,171, 53, 64,107,244,196, 64,239, 48,200, 6, 20,247,128, -203,224,236, 16,211,132, 62, 17,158,116,140,235, 7, 15, 32, 55,143, 64,252, 53, 64,254,128, 4, 39, 11, 87,185,251, 10, 59,189, -174,184,211,177,164,246,168,128, 83, 67,242,173, 7, 20,225,126, 87,142,251,255, 4, 97, 86,251,197,172,134, 6, 75,168,219,244, -224, 37, 51,221,246,168,174,105, 96,184,228,207,202, 92,244,203, 68,198,173,233,137,180,242, 52,105,242,211, 21, 42,103,154, 27, -135,234, 59,222, 30,194, 70, 60, 91,120,117,211, 76,165,171,183,103, 37,210, 45,103,146,242,218, 92,219,125, 81,147,101, 82,221, -206,168, 49,164, 41,133,105,153,122, 69,237,190,152,168,242, 13, 68, 14,253, 0,104,177, 19, 94,232,142, 73, 78,232,175,105,249, -115, 15, 8,112,197, 35,190,192,251,133,124,215, 38, 97, 51,150,112,125, 41,190, 14,173,201, 8,213, 69,137, 24,116, 81, 2, 48, -248, 64, 78, 85,185, 8,208, 72,218,226, 1,144, 23,235, 3,243,204,110,136, 90, 85,174, 88, 53,209,250, 64, 59, 56,136,147,197, -189,182,208, 69, 31, 60, 58,199, 15,136, 73,117, 42,234, 49,199,213, 22, 85,195,107,243,206,219,121,182,120,156, 19,192,146,177, -234,214,120,244,232, 33,190,252,226,115,164,100,169, 86,223,150,229,126,226, 95,110,214, 27, 35, 97,201, 73, 82,250, 33,242,116, - 2, 60,127,195,131,124, 98,244, 63, 21, 8,209,122,220, 11,189,245,214,158,156,195,110,187,197,171, 87,215,248,175,255,219,127, -128,127,231,111,253, 45,252,244, 39,127,134, 97,191, 71,191, 94,227,225,195,199,152,198, 9,215,215,223, 0, 16,116, 93,143,243, -139, 75,124,241,197,103,202, 7,105,100, 91, 83, 76,136, 41,226,238,230, 22, 87, 87, 87, 24,135, 1,219,221,174,134,169,164,148, -144,140,188,214,247,189,182,159, 4,172, 86, 43,196, 24, 49,140,154,175,158,153,231,181,141,204,237,170,243,206,178, 1,216,166, - 68,109, 86,179,157, 31, 41,101, 60,122,252, 24, 63,248,225,143,192, 2,140,195, 30, 49, 70,155,204,181,168,100,131,186,251,190, - 87,171,212,156,107,244,105,240, 30, 28, 50, 56,139,134,215,108,214, 32,242, 88,117, 30, 63,252,225,175,227,242,209, 99,124,246, -197,243, 90, 36,201, 20, 47,229, 28,235,187,206,138,182, 71,113,119, 45,208,185, 99,135, 16,212, 21,174,220,227,153, 51,188, 3, -132,141,251,100,123,124, 31, 58, 56,102,116,157,199,148,196, 20, 76,130,174,243,128, 80,213,164,135,224, 49, 76,192, 20, 71,211, -250,155, 47,131,152, 34,164, 78,232,176, 22,223,118,235, 16, 48, 49, 98,204, 22,128,147, 53, 42,183,211,253,127,137,133, 21, 46, -215, 87,204,247, 93,175, 97,100,129,164,168, 65, 49,162,158, 8,106, 74,167, 77, 0, 25,175,200, 23, 4,199,200,118, 44,234,240, -232,136,109, 96, 73,182,130, 0, 50, 74,195, 99,186,121, 27, 20,132,116, 40,203,142,176,205, 14,251,187,132,135,241, 6,225, 60, -131,194, 5,122, 98,164,206, 33,231, 14, 73, 52, 4,202, 75, 70, 79,132, 39,171,128, 47, 30,175,176,253,230, 61,116,187,111, 32, -206, 8,220,167, 24, 46,212,118,209,167, 32,248, 86, 43,112,252, 72,202, 41, 9, 48,205, 8,118,155, 29, 82, 17,233,147,126, 19, -175,151,183,134,226, 44, 85,225,168, 38,128,197, 67, 77,127,152,176,112, 98, 42, 47,209,149, 67,182,228,155, 75, 59,213,181,197, - 17,200, 85,130,182,244,110, 47, 69,124, 73,152,214, 73, 82,172, 8, 84, 3,147, 67,200,180,254, 60,169, 12,237, 90,128,105,214, -189,139, 57, 71,185,166, 51, 37,123,207,138, 34,232,191, 79, 77,204,222, 50,124,100, 57,225,213, 64,148,154,112,214, 20,244,131, -204,221,211, 58,108, 89,200,220,138,102, 29,205,132, 92,229,106, 80,146,205, 28,178, 34,154, 98,103,143,160,186,108,185,147,166, - 45, 21,170, 55, 53, 65,203,145, 99, 44,141,105,168,216,247, 54,126,115,135, 66,117, 79,174, 58,145,249, 6,194,164,131, 6,111, - 94, 81,160, 70, 88, 58, 79,102,212,193,213,116, 69, 26, 89, 26, 27, 3,217, 59,119,116,205,220, 65, 37,140, 41,161,235, 58, 43, -148, 77, 99,193,120, 35,107,253,100,214,177,232,110,112, 28, 7, 60,255,106,143,208,173,176, 90,123,140,195, 30,167,197,228,175, - 97,198,157, 90, 15, 28, 58,197,157, 42,232,114,160,145,127,219,206,124,225,173,127,210,182,239,222, 70, 64, 90,237,227, 61,215, -141,156,195,126,183,195,171,235,107,252,189,191,255, 95,224,223,253,219,127, 27, 63,251,201,143, 17, 83,198, 59,143,159,224,236, -236, 28, 57, 39, 12,195,157,218,130,138,194,197,195,126,171, 4,174, 85, 7, 22, 65, 26,246,154,221, 13,104,212,234,237, 45,238, - 94,221,225,246,230, 22,195, 48,168, 71,131,193,196, 83, 76,234, 32,231,231,200, 81,111, 8, 64, 42, 19,103, 13, 30,146, 89,166, - 71,115, 90,160, 50,239,237, 12, 48,135,182,148, 18,214,171, 30,239,127,239,251, 90, 92, 37, 3, 88,129, 28, 44, 1,209,233,207, - 54,247,201,202,209,104, 8, 78,154,153,174, 38, 45,155,205, 6,253,106,133,148, 19,158, 61,123,130,243,203,135, 24,118,123, 92, -158,159, 97, 26, 46,145,210,164,134, 50, 49, 1, 73, 37,119, 93, 65,107,136, 49, 37, 70, 23,188,242, 2,166, 73, 39,248,160, 78, - 26,204,243,160, 80,120, 58,193,185, 26, 52,147,179,146,210, 8, 17,193,121,132,205,198, 20, 2,106, 21,157,133,209, 87,181, 67, -210,117, 16,185,121,106,180,103, 47,166,108, 19,179, 65,255,162,249, 18, 41,179, 42, 24, 68,144,179,158,172,190,243,181, 48,151, -144,154, 50, 89, 75, 78,170,255,119, 78,161,114,206,232,200,170, 4,103,192,105, 30,189,152,196,205, 53,237, 53, 11, 64,230, 15, -144, 89, 64,150, 86,199, 34,170, 2,168, 73,105,170,109, 47,150,176,100,168,110,113,226, 35,232,234,101, 18,193,171, 65,240, 64, -238,208, 93, 48,146,191, 64, 16, 65, 14, 14,121, 12,112, 50,168, 18,198, 57, 92, 58,194,179, 71,130,159, 61,122, 6,222,125, 10, -146,107, 16,173,150,242, 51,106, 92, 64,223, 72, 96, 59,241,213, 3, 5, 9,157, 88,182, 45, 6,190,150,123,180, 96,221,191,158, - 78, 59, 75,218,234,195,171, 80,178,151,178,199,182,105,145,164, 78,235, 76,213, 92,116, 46,176, 77,220,166, 84, 95,107,187, 65, -154, 70, 96, 1,184,138, 78,125,179,145,202,172, 71,231,195,105,190,217,235,151,126,119, 97, 45,107,255, 89, 38,106, 33, 13, 99, -161, 54, 73, 74,150,251,140,210, 52, 40,107,223,244,142, 53,248,132,106, 22,124, 70,107,170,211, 30,220, 69,239,190,212,108, 23, -159,119, 1, 41, 73,207,184, 0,109, 72,141, 28,106, 32, 72,109, 42,169,194, 87,205,148,110, 44, 92,111, 38, 16,226, 52, 10,146, - 27,121,154, 20,219,219,150, 7,112,240,177,251,195,137,221,162,117, 75,211,233,237,117, 4,231,213, 37,204,172,102,143,172,104, -237,197,123,180, 68, 66, 28, 7,127, 28, 57,144,153, 79,245, 1,143,160,181,130,245, 62, 96,189,233, 49, 14,251,170,239, 63,212, -161,115, 74,216,156, 95,226,221,139,115,188,186,250,198, 86, 6, 85,142, 81,209,131,215, 62,120,139,167,170,189, 73, 52,214,117, -138, 17,143, 30, 93,226,252,124,141,175,246, 59,220,107, 18,243, 45, 16, 49,162,165, 10, 64,238,181,153,110,169,152,111,205,123, -111,171, 78,189,187,193,199, 49,176,179,130,163,129,221, 95,147,222, 70, 68,152,134, 17, 47, 95,188,192,127,252,159,254,103,248, - 15,255,206,223,193, 39, 31,127, 4, 23, 2,158, 62,126, 23,222, 57, 76,211,136, 87,175,174, 44,224,102,133, 56, 69,196, 56, 97, - 24,246, 58, 97,101, 99,182, 24, 25, 75,192, 24,135, 61, 94, 93,223, 96,123,183,195,126, 24,144, 45, 39,221,123,103, 5, 68, 47, - 67, 74,201,124,209, 81, 19,210, 84,191,173, 86,210, 92, 61,169, 81, 9, 93, 26,158,162,235,158, 98,199,154, 88, 97,125,206, 25, -235,139,115,116,253, 10, 55,183, 55,154,180,214,117, 88,109,122,139, 88,101,244,125, 64, 48,200, 29,100,201,135,118, 63, 77,147, - 78,245, 93, 8, 88,159,109,224, 66, 64,206, 9,143, 30, 92,226,221, 39,207,212, 67, 94, 4,155,245, 10, 79,159, 62,193,221,221, - 29,246,187, 29,200,123,155,108, 89,117,213, 78, 11, 89,204,154, 36,231, 67, 48, 29,122,194,249,249, 25, 4, 14,211,180, 71,113, -201, 8, 33,168, 65, 24,205,119,137,102,157, 59,115, 52,212,159, 9, 34,228,164,207,132,183, 6, 64,204,212,133,160, 60, 3, 22, -181,219,133,153,241, 72, 33,173, 89, 70,125,137,181,141, 49,193, 65, 19,215, 0,181, 99, 37, 23, 84,134,215, 72, 92, 51,171, 12, -208, 59,130,131,162, 4, 57, 49,130, 48,124,232, 76, 95,174, 77, 74,240, 30,137,188,118,226, 2,253, 30,231, 0, 81, 95,255,146, -210,148, 68,211,248, 84,178,230,236,220, 50, 75, 90,167,178,189,204, 37,173, 49, 26,243, 94,101,128,142, 4,157, 35, 36,120,220, - 70,224,108, 59, 98,189, 17,248,245, 5,178, 95, 1, 76,154, 33, 79,130, 40,132, 62,101,188,215, 71,124,241,238, 6,227, 55,239, - 35,140,215, 16,207, 58, 2, 82,163,146,178, 68,188, 55, 61,145,111,122, 94,151, 3, 11, 53,199, 80, 51,210, 54,208,124, 75,100, - 87, 94,214, 1,150,121,226,168, 11,176, 64, 23,230, 22,150,214,143, 44,137,202, 42,138,132, 73, 4,149,146, 85, 45, 67, 69,140, -104,119,160, 66,166,146,193,110,254, 63, 38, 37,115,205, 91,227,198,100, 5, 77,113,103,154, 93,220, 10,140, 85, 26,138,121,146, - 63,152, 58,202,174, 88,100,113,198, 85, 72, 67,202,106,192,254,207,200,105,220,172, 7, 92,105, 56,170,182,252, 56, 60,133,237, - 98, 51,228,232,176,167,198,100,128,186, 14, 43, 48,114, 76,179,112,170, 9,214,176, 68,114,221,129, 51,230, 34,214,172, 33,200, - 44,108,179,232,180, 78, 34,152,138,188,139,168,126, 79,229, 61,208, 92,164,219, 38,138,205, 87,207,163,229, 4,232, 5, 46,220, - 9,231, 60,250, 16, 32,156, 23,210, 2, 1, 26,123, 87,170,252,139,250,239,141, 83,224, 26,198,123,235,143,223,174, 31,164, 33, - 30,202,162,226,233,195,220, 17, 33, 17,153, 26,249, 88, 7,170, 82, 35,194,217,186,199,171, 18, 22, 67,206, 60, 3,176,240,188, -191,247,161, 59, 32,199, 21, 56,165,124, 91,215,117,216,110,111,177,219,222,190, 53, 97,238, 30,208,109,190, 70,116,175,229,253, - 98,194, 63,180,220, 37,188, 70,203, 42,167, 85,111, 2,169,193, 36, 41,197,227, 12, 1,204, 62,243,130,215, 23,244,156, 51,158, - 63,255, 18,255,222,191,255, 31,224, 63,250,187,127, 23,159,127,246, 41,250,126,133,243,243,115,181, 95, 77, 19,182,219, 91, 8, - 43,228,158, 57, 35,198,201, 92,217, 80,155, 36,213,104, 59,164, 56,225,213,171,107, 92,125,243, 18,187,221, 30, 89, 50, 88,114, -245, 58,207,147,121,162,147, 3,156, 84,179, 21, 42,146, 69,158,157,222,150,174,134,106,241, 12, 46,191, 87,135,148, 20,181,144, -171,116,147, 27, 27, 97, 13, 81, 25, 6,129, 23, 86, 78,128, 43,133, 68,170,239,185, 54,137, 26,135,186,221,238,176,223,237,177, - 89,175,176, 90,111,176, 90,175, 52,104,134, 8, 79,159, 62,131,115, 30, 57,198,218, 72,157,111, 86, 8,206,163, 95, 41, 71, 99, - 26,247,106,173, 45,140,206,117,243,186,205,246,194, 49, 38, 92,156,173,241,222,179,167, 72, 8,120,254,252, 57,242,184, 67, 8, -157,250, 48,172, 58,179, 64,101,155,200,245,222, 8,222, 23,230,113,181,168,142, 49, 25,209, 48,163, 35,109,112,224,102,143,130, - 66, 20,204, 57, 67,160,185,235, 57,103,107, 12,244,190, 17,201, 16,231,204,215, 94,175,131,115, 0,123,135, 41, 38, 56,138, 8, - 62, 32,103, 70, 64, 6, 81,103,220, 3, 61, 59,125,240,200, 66,112,200,128,185,214,137, 53,103,129,160,171, 45,231,237,115,229, -202,169, 73, 41,235,239,198,140,194,146, 0,193, 1,112,106,110,227, 40, 67,224,145,152,225, 12,242, 23, 86,166,180, 39,245,124, -239,172,142,220, 77,128,240,136, 11, 97, 92,156, 93, 98,188, 56,199, 56, 4,200,180, 7, 35, 97,200,192, 67, 78,120,246, 14,227, - 23, 15,223, 71,120,254, 41, 8, 91, 8,250,197, 65, 70, 5,217,146,239, 78,242,122, 36,127, 51,110, 86,155,229, 94,184, 73, 21, -217, 94,240,232, 78,147,234, 2, 92, 41, 96, 6,247,240,204, 96, 47,140,224,100, 93,130, 39,133,209, 51,230, 48,249, 67,208,144, -138,155, 87,113,105,179,146,195,162,191,168,146,171,164,200,160,180,176,184,118,210, 16,158,165, 97, 77,238,120,110,153,241, 66, - 11,230,160,107,200,111, 45,140, 33, 45, 99, 93, 26,246,118, 77,140, 35, 77,160,107, 96,121, 87,215, 24,210,120,138, 43,155,160, - 15, 30,107, 34, 56,206, 24,115,198,190, 33, 6, 58,154,139, 15,115, 6, 27, 20, 54, 51,201, 91, 53,252,108,182,226, 76,206, 86, -154, 9,215,226, 46,102,133,171,233, 67,178,240,117,167, 70,242,215,150,159, 92, 39,118,177,255,118, 11, 66, 91,105,166, 10,138, -162,254,206, 25,251,209, 12, 46, 74, 70,114,109, 48, 24,194,168,105, 99,185,209, 62, 87,149, 6,205,133, 93,154,107,168,191,202, - 89,195, 54,211, 64, 43,243, 21,154, 14,200, 57,225,110, 27, 43,169, 78, 14,212, 3, 0, 16,186, 14,251,237, 45,254,252,246, 21, -130,243,182, 14,152,205, 33,124,177,251,189,223,170,173,241,173, 63, 64,180, 14,114,210,143, 52,253,111,232,206,229, 62, 64,128, -238,249,226,137,239,167, 35,202,141,188, 93,203,223,118, 89, 44,112,164, 54,165,167, 53,130,244,218,125, 96,123, 13,190,248,252, -115,252,235,127,227,223,192,223,255, 47,255, 43,188,120,254, 21, 32,192,217,102,131,105,156, 0,160,102,147,111,206,206, 49, 77, - 35,166,113, 4, 27, 91,189, 21, 60,166,172, 38, 33,211, 56,226,213,213, 43,220,222,220, 97, 24,246, 24,134, 1,227, 48, 34,103, -158,253,211, 1,149,171,149,231, 54, 91, 17,179,137, 95,189,220, 39, 45,254,110, 70,237,114,214, 68, 55, 64, 39,252, 24, 53, 40, - 38,103,213,202, 7,175,228,180,104,217,234, 5, 25,112,228,212, 76, 6,106, 82,163, 81,168, 19, 60, 57,116,171, 30,156,245,231, -220,221,222, 98,181, 82,102,187,166,188, 69, 92, 92,156,227,233,147,167, 56,191,188,172,191, 27,245, 96, 86,237,120,191, 94,225, - 74, 4, 57, 77,152, 88,141, 95, 10, 43,126,189,234, 17, 99,196,118,187,195,195,203, 51,124,240,189, 15,224, 92,135,117,215,225, -246,252, 18,175,246,119, 88,123,130,235, 58,115,139,115,152, 82,172,123,107,102,245,223,223,244, 61, 34,151, 93,180, 3,156,199, - 24, 19,200,252,242,157,102,189,150,110, 7, 34, 89,137,134,194,245,172, 39, 43,224, 25,162,166, 60,162,182,187,193, 9,124,232, - 16, 19,131,242,164, 43, 46,141, 87, 67, 20, 51,207, 9,110, 14,164,130, 32,116, 26, 3, 43,137,235,249, 84,216,248,142, 4,161, - 11, 32,167,178,194,108,138, 5, 80,225,217,100,243,179,119,200, 0,156,228,218, 12, 81,206,154, 18, 42, 2, 71, 26,157,235,152, -224,204,193, 47,101,229, 3,144,176,214, 40, 59,183,111,146, 3,223, 76,120,226,174, 17, 30, 4, 48,157, 35,177,162, 20, 83,102, -244, 35,227,105,191,199, 23,239,110,144,174,158, 33,164,159,213, 3,245, 40,128,122,225, 5,241,214, 0,252,219,175, 4,233,120, - 97,123, 24, 38, 67, 39,211, 57,164,133,223,245, 67, 15, 52, 79,166,149, 48, 85,242,176,139, 25, 75, 67, 86,211, 18,199, 85,230, - 38, 36,117,250,214, 41, 80, 13,255,129, 30,226, 61, 28,141,112, 73, 16, 11, 0, 76,212, 90, 14, 87, 15,118,105,166,188,178,151, -117, 71,242,176, 70,171, 71, 12,136, 91, 76,212, 85, 7, 78,179,121, 70,203,166,175,113,172,132, 58,157, 87,119,181, 2,215, 55, -210,173,194, 23,128,119, 56,119, 14,103,186, 96,214, 27, 63,235,244,220,198,184, 58, 48, 56, 50,198, 70,250,118,178, 64,148,162, -198,121,105, 28,211, 20,150,114, 88, 39, 57, 50,106,211,155,254,212,224, 71, 4,202, 9,145, 5, 33,116,102,164, 67, 85, 26, 4, -107,106, 92,241, 24,144,214,143,191,176,235,103, 86,186,235,122, 60, 56,219, 96,127,119,139,152,185,218,173,178,201,233, 92,177, - 15,183,149, 11, 53,186,239,154,249, 38,199, 90,243, 22,210,159,227, 97,231,132,181,138,106,212,107, 49,167, 96,205, 44,209,153, -164,119,175,195, 29,150, 63,150, 14,201, 7,124, 31,147,254, 91,202,216,238,171,221,133,144,121,162,209,159, 73, 94,139, 86,239, -228,163,123,242,247, 30,112,228, 52, 61, 46,206,123,230, 19,157,134, 52,119,119, 19,111,180,144,174,125,246,233,167,248, 43,255, -226,239,226, 31,252,225, 31,225,238,230, 6,195, 56,224,241,227,119,149, 1, 77,192,148, 34,114,102,116, 93,143,148, 19,246,195, - 94,173, 72,157, 3,177, 32,230,140,156, 18,114, 74, 24,167, 17, 41, 69,179,135, 29, 48, 12,218, 0,196,105,170, 68, 54, 17,101, -159, 39,102,139, 73,213,156,242, 49,198, 26, 79,218,175,214,120,252,236, 9, 46,207, 47,225,125,128,239,188, 78,118,182,103,223, -237, 6,196,105,178,132,178,128,204,140,253,126,143, 23, 47,190,193, 55,207,191, 84,142, 4,119,216,239,119,112, 97,165,187,118, - 98,139,128, 21, 99,229, 71,211,132, 19,134,253,136,253,126,135, 52, 69,244,235, 21, 46, 46, 46,208,247, 61, 66,215,225,252,252, - 12, 79,159, 60,197,106,189, 70, 74,169,242, 15, 60, 57,192,169,252,139,140,111, 84, 26,161,149,249,175,147,125, 54, 57,171,187, -221,122,213,227,233,211,103, 8,221,186, 94,143,139,179, 13,246,171, 13, 66,231,225,187,206,216,253,130,205,106,101, 41,109, 12, - 4, 27,200,178,162, 51,190, 11,128, 56, 76, 9,112,200,136, 44, 72,187, 1,155,205, 74,139, 94, 74,245,188,141,133, 9, 47,100, -246,183, 73,239, 81,203,165,200, 44,213,255, 32,167,172, 19,117,206, 8, 78, 77,118, 82, 22,136, 68,172,250,128, 12,175, 13,132, -115, 38, 75,134,250,148, 16, 33,137,131, 19,221,217,123,152,186,192,105,184,140, 24,138, 82, 26, 20, 72, 70,239, 85,167,238, 88, -224,136,193, 12,228, 84,238,216,178,102,211,221,185, 48,170, 4,144, 57,130,132, 45, 55, 3,213,166, 22, 54,204,109, 57,128, 94, - 37,188, 35, 47,176, 58,207,200,253, 26, 57,119,144, 60, 96, 39,192,163, 16,241,236,241, 10,159, 60,252, 53,248, 23, 95, 2, 24, - 64,232,142,106, 38, 53,103, 44, 4, 71, 24, 29,221,135,221,209,155,123,244,227,222,159,170,244,173,245,242,192, 34, 15,228,216, - 4, 50,120, 34,237,140,106, 48, 10, 16, 74,104, 74, 89, 89,185,194, 76,118,213,140, 68,227, 75, 59,211, 40,102, 99,187, 83,131, - 10, 26,161, 10, 51,249,130, 44, 53,136,138, 13,172,141,210,124, 64, 46,155, 51,201, 75, 34,220,146,239, 71, 66,203, 55,222, 48, -228,179,117,166, 78,154,163,177,236,180,173,115,243,173,250, 87, 20,125, 40,181, 93, 10,169,172,105, 14,202,123, 82,226, 96,198, -190, 16, 52, 26,141, 61,181, 59, 81,115,151,114,109, 44,233,137, 76,111,146,153,159,223, 66,204,237, 46,255, 62,133, 36, 91,215, -189,212,107, 91,145,207, 25,110,117,142, 85,112,152,118,119, 72,112, 51,137,178,236,167,133,142, 84,208,116,162, 34, 85,219, 89, -179,100,172,215,166, 56,182, 29,112, 49,155, 72,156, 35,155,227,214, 44,165,245, 75, 94,110,145,151, 76,247, 35,187,216,214, 75, - 94, 26,206,132, 53,152,111,150,190,153,186,130,102, 84, 73,190, 67,163,247,217,133,239,224,194,210,235, 86,114,109,216,238,178, -180,127,107,238,125,241,197,167, 19, 38, 59,197, 20, 73,100,161, 0,105, 15, 4,231, 28,190,250,234, 43,252,224,215, 63,196, 31, -254,195,255, 9,222, 59,188,188,189,193,195,135,239, 32,198, 8, 16,169, 44,108, 28, 16,124,135,148, 38,236,246,123,196, 41, 65, - 48,107,209, 53,199, 60, 97, 24, 7,108,183,123,131,160, 7,164,148,204,201, 44,193, 59,135, 68, 37, 97,171,160, 86,132,253,126, -192,176, 31,112,249,224, 1,222,125,246, 24, 23,151, 23,120,247,221,119,112,249,224, 17,214,235, 21,124, 8,102,156,148,180, 0, -219,189, 63, 78, 26,220,211,175,122,196, 56, 1, 66, 24,166, 9,219,187, 29, 62,255,252,115,124,244,243,159,227,171,207, 63,193, -237,245, 53, 30, 63,123, 31, 9,192, 56,141,134, 2,133, 58, 41,121,239, 17, 83,194,176,223, 67, 4, 56,187, 60,199,195,135, 15, -241,238,227, 39,184,188,188, 68,191, 90,153, 70, 91,201,100,229, 89, 40, 73,109,197, 31, 65,231, 0,194,170,239,113,121,113,102, -126,243,163,194,237, 89, 87, 19,171, 85,135,247,222,123, 15,171,245,185, 37,179, 5,172,215, 27,220,237, 35, 54,155, 21,122, 75, - 87,235,251,174, 90,192,146,239,116,231, 77,176,204,114,189, 95,146,165,204, 17, 4,125,167,130,221,105,136, 54,148,176,109,186, - 74,204, 41, 33,138,154, 0,229,164,113,171, 37,138,130,160, 50, 60,229, 95,152, 58,198,145,229,209, 51,200, 5, 80,112, 74, 98, -118,132,108, 40, 65,103, 57,238, 98,252, 20, 71, 0,103,117, 0,209, 52,186,206, 18,230,242,188, 66,229, 92, 27,137,224,131, 5, -211, 0,146, 53,178,149, 83, 82,211, 34, 16,188,215,243, 61, 11, 1,102,180,195, 80, 30,129, 23,117,139, 99, 67, 61, 29, 17, 50, - 41, 7,137, 56,195,145,224,150, 9,211, 85,194,227,248, 2,235,203, 71,216,173, 47,128,145, 0,153, 16,196,225,131,179,140, 47, -159, 62, 4, 95, 61,133,227, 63,135,184,112,239,162,124,110,208,233, 68, 9,255,246, 39,138,188, 14,158,199,156,117,177,136,165, -186,135,224, 26,184, 48,197, 73,138, 97, 83,213, 48,131,154, 3,186,154,212,176, 26,151,136,131,248, 0, 10, 17, 61,171,206, 57, -177, 78,233,197,192, 70,139,113, 4, 49, 16, 19, 33,219,228,236, 23,172,114,106,124,215, 81,104,111, 90,236, 75, 22,245,145, 13, -118,155, 11, 94, 52,227, 77, 1, 63, 33, 95, 98,123,208,138,164,141, 73, 14,118,197,101, 87,141,133,148,172, 94, 84, 18,100, 78, -216, 87, 24,159, 44,160, 96,246,137,103, 44, 95,195, 18,169,105, 24,239, 38, 69,155, 85, 4, 52,175, 8,160, 25,244,173, 71, 64, -137, 85,229,198,143,158,170, 43, 24, 45,237,191,161,144,220,197,217, 37,222,123,216,225,211,143,111,145,121, 41,129, 88,164,152, - 29, 52, 16,238,232, 58,168,107,211,237, 43,181,119,172, 6, 25,170, 26,109,160, 86,105,214, 37,168, 94,218,213,208,208,205,214, -183, 37, 59,187,124, 38,116, 10,174,110, 16, 33, 62,209,116, 20,242, 76,203, 26, 23,146, 55,219, 59, 25,236,223, 74, 7,209, 32, - 69,223,186,148,202,233,152,218, 67, 10,255,155, 56,249,199,191, 93,222,226,213,156,192,215,239,217, 61,144, 37, 9, 30,137, 4, - 15, 10,250,203,151, 47,177,217,108,240, 71,127,252,143,240,244,233, 83,124,252,209, 71,120,242,244, 9, 0, 65,142,170, 75, 30, -227,136, 16, 58, 76,211,136, 97, 63, 24,107, 90,149, 24, 57, 39,196,105,194,118,187, 69,202, 25,251,221, 14,219,187, 29,166,105, - 68, 28, 39,164,148,145,114, 68, 76, 73,117,217,149,156,165,215,224,238,230, 6,235,205, 25,126,247,175,253, 75,120,246,222, 7, - 0, 8, 49, 14, 56, 91,175,193, 89, 48, 12, 3,210, 52, 41, 75,218,105, 33, 77,201, 32, 90, 78,112,222, 99, 24,246,152,166,201, -172, 95, 19,198,253, 22, 15,206,207,240, 23,126,251,183,209,245, 43,124,249,233, 47,176, 90,111,224,250, 30, 57, 38, 77,160,172, -153,241,132,221,110,135, 97,216,225,242,226, 18,103,151, 15,176,234, 3,126,253,195, 15,241,224,157,199, 72, 49, 85, 19,169, 92, - 9,107, 74,100, 43,207,101, 93, 11,216, 51, 16,188,195,122,189,182,181,129,122,189,167,196,232, 66,192,247, 63,120, 15, 23, 15, - 30, 90, 51, 17, 16,204,141, 78,106,210, 6,176,234, 59,172,215, 27,236,135, 9, 44,162,113,169,222, 67, 56, 97,221,247,112, 93, -103, 70, 61, 25,211,164,122,114,231,128,179,205, 74, 37,122,172, 83,116, 18,221,183,115, 78,246,121,113, 69,116, 88,148, 67,225, - 96,228,192,178,150,165, 96, 28, 3, 70, 48,203, 91,144, 67, 31,156,173, 86,212,179, 93,155,152,255,151,181, 55,127,150, 45,203, -206,131,190,181,135,115, 50,243, 78,111,170,122, 53,119, 87,119,211, 6, 73, 6, 65, 96,169,165,118,132,176,194, 67,203, 70,180, - 32,104,133, 8, 4, 18, 97, 3, 17,216,152,144,195, 13,178, 37, 76, 25,248,171, 0, 7,132, 21, 6, 34,240, 16, 33,219, 40,164, -238,174, 66, 93, 93,195,155,238,187, 67,222,204, 60,103, 15,139, 31,214,218,251,236,147,247,190,251, 94,181, 93, 17, 82,191,170, -119,135,204,147,231,236,181,214,183,190, 65, 78,170, 50,161, 15,161, 52, 11,194,214, 39,202,213, 97,179,132, 46,149,179, 95, 52, -231,164,231,151, 56, 93, 22, 31,250,194,148,175,228,108,146,226,205, 89,210,236,188, 53, 66, 15, 83,212,162,152, 88, 37, 78,200, - 25,160,156,225, 28, 0,178,216,177,193,243,171,140,215,204, 25,142, 79, 44, 54,230, 16, 24, 12, 70, 4, 28, 51,227,222,221,140, - 71,199,111,162, 59,253, 12, 48, 73,193,108,126, 97, 97,159, 71,173,222, 22,143,124,251,241,242,194,191, 34,204,204,207,246,221, - 93,170,163, 97,205,174, 32, 56,206, 81,101, 26, 40,163, 42,184,200,217, 24,136,122,112, 19,149,160,143, 98,224,146,145,211, 86, -208,111,157,216, 12, 41,153, 37,151, 6,128,102, 36, 51, 59,121,210, 76, 6, 2,146,233, 83, 39,215, 73,235, 94, 72,107, 60, 21, -204, 74,240,161, 57,249,140, 74,193,147, 75,147, 4, 29, 23, 38, 38, 53,123,114,158, 79,143,133,224,151,203, 46,189, 49, 97,160, -134, 84,100,120,218,245,111, 19,224, 21,113, 72,181, 64, 76,175,131,103,100, 62,133, 79,136,247,102,209,137,165,222, 22,211,242, - 62, 21,244, 65,192,132,106,148,198,101, 31,230,153,111, 47, 39,178,215,112,254, 4, 31, 95, 18, 50,217, 26,122, 95,228,120,166, -129,118,203,207, 45,102, 58,169,153,126, 51, 77, 13, 69,113,124, 99, 46, 33, 63,229,117,183,133,189, 37,245, 55, 83,182, 78, 48, -172, 68,183, 18, 94, 81,148,177, 51, 66, 88,105,238,152, 27,239,255,189,169,191,225, 46, 84,207,255, 87, 44,198,101, 74, 47,146, -197,114,207,127,161, 32,245, 87,168,179,251, 73,166, 55, 7, 45, 49,230,134, 67,188,215,245,223,226, 96, 85, 85, 24, 55,248,182, - 95,251, 54,106, 60,172,111, 38, 33,146, 49, 56, 59, 59, 67,138, 17,191,251,193,223,197, 79,254,228, 79,225, 15,255,240, 15,112, -124,116, 34, 7,170, 78,105, 33, 69,116, 93,135,237,176,195,102,179, 69, 8,163,132,168,140, 90,176, 99,196, 48,200,174, 60,198, -132, 97,220, 33,166,128, 20, 19,174,214, 27,172,175,214,106, 89,154, 52,119,123,114,104,219, 14, 59,220,189,123, 15, 63,247, 11, -223,196,151,222,127, 31,167, 79,159,225,209,103,159, 99,216, 13,216,174,165, 73,176, 26,107,154, 98, 66,215,119, 34,147, 83,179, - 25,103, 29,198, 97,196,213,230, 74,109,113,147, 18,220,118,146, 16,183,221,226,222,221,187,216,110,174,240,236,217, 83,172, 14, -143,225,188, 68,195,142, 42,223,218, 92, 93,129, 83,194,221,251,247,113,116,114,130,206, 59,188,243,206,219,120,240,250, 67,140, -227, 8,231,140,146, 16,133, 65,222,117,157, 92,191,164, 76,125,149,244, 17, 0,178, 82,124,201, 24,116, 32, 28, 30, 28,225, 50, - 51,114,138, 56, 58, 88,225,222,189,187, 56, 62, 62,150,103, 66, 37,117, 94,109,106, 11,185,208, 26,145,206,133,152,224,189, 21, - 27, 91,253,250, 24,101,205,225,213, 91,222, 26,135,148,132,251,226,172, 56,174, 57,107,148,179,144, 37,159, 62, 39, 36,102,217, -145,239, 53,181,142, 8,214, 57,217,169,103, 86,212, 48,214, 4, 60,178,174, 38,211,201,227, 43, 8,173, 85,130,157, 68,221,102, - 68,214,236,144,156, 69,215,238, 58,140, 99,128, 67,130,245, 14, 68, 86,211,224,128,196, 6,224, 44,103,113,100,144,149, 21,164, -233, 28,114, 22, 68, 35,198, 18,222, 82, 26, 38,130,101, 6, 57,131, 4, 3, 74,169,102, 25, 25, 83,252,227, 89,255, 93, 45,184, -117,181,201, 22, 88, 71, 3,186,136,120, 64,207,176, 56, 36, 12,221, 10, 33, 50, 86, 41,225,237, 85,192,211, 7,247,144,207, 94, -131,201, 31,171,126,254,118, 39,185,154,104, 88,162,165,111, 35,207,252, 88, 71,202,228, 43, 79, 51, 86, 86, 75,128,159,204,213, -156,132,184, 40,179, 93,217,165, 92, 83,210,244,192,214, 9,215, 20,192,149,117,234,102, 77,110, 51,128, 87,242, 6,140, 16,186, -130,194,218,213, 86,150, 25,108, 38,213,185, 64,109,168,214,132,211,100, 88, 36,111,168,240,117,198,164, 59, 47,110,110, 37,195, - 87, 30,104,204,163, 80,129, 25, 49,109,158, 24, 94, 10,190,234,189, 9,123,140,227,178, 67, 39,141,145, 36,144, 17, 6,122,249, -154,180,151, 87,205, 84,184, 6, 60,143, 64,173,124, 67, 69, 8,154,162, 92, 39, 84,222, 71, 6, 24, 35, 79,254,237, 92, 35, 91, -231, 83,234, 77, 77, 2,239,237,170, 99, 42, 16,115,174, 55,221,194, 24, 36,142, 24, 51,195,106, 23,204,141,205,102,181,157,165, -166, 88, 54,110, 71, 89, 93, 2, 77, 3,117, 83, 27, 19,139,185,189,109, 21, 85,228, 60,133,153, 48, 55,171,148, 34, 69,164,122, -111,100,158,155,150,182, 13,194,190,118,158, 85,159,205,175,100,194, 54, 57, 39,178,100, 12, 79,159,216,143,241,192,221,180, 75, -231,198,177,149,248,165,116,183, 25,227,189,141,132,224, 87,241,215,219,139,192,173, 9, 95, 55,120,228,211, 45, 13, 1,145,193, -197,249, 57,198,113,196,223,252,239,126, 27,223,252,230,159,198,247,254,232, 15,177, 92, 46,113,112,120,136,113, 24, 53, 84, 69, - 96,220,245,122,139,205,118, 35,198, 45,163, 16,215, 66, 24,149,185, 44, 33, 30, 21,133,210,194,180, 75, 59,217,187,115,130, 49, - 14,137,131, 28,184, 76, 8, 41, 98,187,221,225,232, 96,133,159,250, 55,254,117,188,245,206, 59,184,186, 88,227,217,211, 83,145, -144,121,129,249,119,187,157, 78,151,114, 88,111,135,157, 76,107,154, 91,238,156,195,102,179,195, 48,140, 0, 51,134, 49, 96, 24, -118, 90,108,146,100,178,199,136,123,247,239, 35,134, 17,227,110, 39, 81,175,219, 45,144, 19,172,247,240,253, 2,247,238,221,197, -106,117, 0,107, 13,222,125,247, 93,220,127,237, 53,228,156,208,119, 29,140,181,149,125,191, 88,173, 96,172,197,102,179,197,194, - 89, 13, 57,146,189,113, 12, 81,206, 77, 35,222,236,228, 13, 86, 86,246,232,206, 0,119,239,222,193,225,225,145,164,171, 25,130, -245, 30,224,140,213,106,137,139,171, 17,195,110,131,195,131, 37,250,126, 33,108,115, 0,139,229, 18, 68, 6,187,113, 64, 78,162, -185,103,146,137,152,192, 53, 61,206,123,135, 97, 39,159, 25, 25,177, 87, 45, 74, 8,217,229, 75,209, 46,171, 24, 34,198,162,115, - 53,167,157, 85, 10, 85,120, 73,166, 90,220,106,248,148, 22,214,156,155,103,179,196,163,150, 80, 23, 75, 32,231,196,255,157, 51, -156, 33, 48,172, 76,236, 26,113,155, 73, 97,122,200,191,151,168, 86, 34, 81, 76, 49, 51,156, 97,184,222, 35, 37,113, 22,148, 81, - 10,170,187,159, 38,120,106,240,199,226, 95, 96,116,152,203,100, 17, 83,134, 97,113, 60, 92, 56, 96,203, 30,103, 87,192,125,247, - 28, 88, 57, 12, 88, 33,166, 13,238,217,136,123,247, 61,158, 60,122, 11,221,249,231, 32,147,192,112,183,122, 57,204, 76,157,155, - 16,175,107, 4,154, 31, 99,175,142,107,136,111, 33,129,235,234, 76, 3,204, 90,251, 89, 23,114,150,204, 89,157,192, 82,179,235, -141, 37,191,188, 73, 53, 51, 58, 9,103,245, 52,246, 70, 72,118, 86, 75,174,177, 25, 29,139,141,108, 84,205,251,200, 22,201,176, - 50,175, 39,134,122,106, 29,223,138,158, 93,181,221,212, 76, 86, 98,123, 40,123,126, 83, 11,156, 22, 89,221,229,183,254,238,243, - 2, 45,172,242, 34, 89, 35, 8,155,223, 52,157, 14, 23,114, 89,115,244,149, 27,162,236,123,139,196,205,214, 72,181, 73, 22,212, - 98,174,212,240,204,103,251,223,102,175,110,103,217,224,104, 86, 15,123, 97, 51,229,247,235,186,129,155,105,126,150,188,118, 13, - 93, 80,137,155,126, 6, 45,196,221, 27, 66,200, 6, 67,137,157,108, 37, 99,224,153,149,232,100,247,202,141,218, 97,223, 7,191, -164,226, 97,143, 63,160, 43,146, 61, 61,122, 46,198, 32,149, 68,200,179, 52, 59,236, 21,114,102,190, 30,111,136,198,230,114, 70, -174,187,233, 1,105, 8, 97, 76,179, 41,154,255, 37, 38,178,205, 54, 33, 55,228,216, 23, 84, 1, 68, 47,225,162,183, 13,234, 11, -187,137,235,134, 51,197, 68, 73,181,172,124, 27,229,190, 49,169, 34, 99,112,126,118,134, 97,216,225,111,124,247,183,241, 75,127, -241, 47,225,251,223,255, 35,228, 28,113,116,244,154, 66,222, 91,200, 26, 51, 98,183,219,226,217,211, 83,177, 22,142, 1,219,194, - 94,143,161, 22,129,130, 75, 25,107,192,163,222,203,214,192,123, 15,239, 29,118, 67,168, 6, 70, 76,164, 19,157,199,219,111,191, -131,215, 30, 62,192,241,241, 9, 62, 57,255, 17,134, 97,135,197, 98,161, 16,187, 48,222, 75,180,103, 78, 25,219,157,152,136, 56, -103,212, 29,110,196,229,229, 90, 83,254,184,174, 20, 66, 28, 49,142,131,172,125, 72,154,214,163,147, 19,108, 46,215, 50,189,198, -132,229,106,129,187,247, 31,224,232,240, 8,198, 73,168,209, 59,239,188,139,123,247, 31,200, 78,219, 89,248,206, 35, 4,129,178, -239,222, 57,129,247, 61, 46, 46, 46,167, 53, 64,158, 98, 71,173,153,100, 92,206, 59,120,221,193,119,206,161,239, 60, 58, 13,126, -241, 53,131,221,160,239,122, 24,235,241,252,252, 49,194,110, 64,127,184,210,247,204,232, 59,139,206,123, 89,115,198,140,133,247, - 32,227, 48, 14,131, 50,207,149,188,154, 25,227, 24,106,134,193, 56, 70, 12,195, 32, 5,144,132, 88,136, 60,233,192,189,243, 53, -101,173,152,207,148,194,111, 73,236,113,185, 14,123, 42,125,206, 9,214, 1,198, 72, 26, 27,229,172,198, 66, 74, 62,118,226,188, - 71, 78,188,247,115, 76, 18,209,106,157, 62,211, 58, 56,101, 49, 13,179,198,130,172, 85,139, 90, 25, 10,115, 78, 42,211,149,189, - 61, 1, 72,198, 32, 69, 2,114,212,125,188,160, 5,133, 99, 43,107, 4, 35, 59,116,211, 32,132,152,103, 29, 27, 34,116,134,112, -149, 13,252,101,196,177,125,142,220, 63,192, 56, 46,176, 74, 91,188,185, 26,112,250,224, 30,248,242, 53, 32,127, 6, 24,247,194, -167,113,174, 85,153,138,109,187,115,255, 34,133,253, 54, 45, 46, 53, 28,152,249,217,202,179,129,192,137, 17,191, 20,172, 88, 83, -216,168, 66,227, 96, 66,210,137,209, 19, 64,153,106,161,153,180,180,166, 78, 90, 4,249,128, 60,141, 48,129,177, 99, 2,187, 99, -216,131,128, 59, 97,141,221, 54,227,170,216,155, 54, 94,226,132,121,234, 22,205, 32, 73,106, 76, 0, 52, 93,136, 76, 37,215,149, - 93,152,120, 62,243,236,231,181,246,171,212, 4,207,164, 61, 66,150, 45, 83,187,158,202,142, 10, 73, 76, 73,131,237, 62, 95,205, - 81,234,244,156,209,248,205,210,172,136,181, 94,233,134, 90,169,151,238,204, 53, 53,104,159,173,108, 11,138, 13,141, 0, 0, 32, - 0, 73, 68, 65, 84,154,244, 39, 91, 58,232,218,112,208, 12,162,110,237, 11,107,176,133,190,121, 75,147, 21,170,101,198, 69, 12, - 2, 85, 26,170, 19, 91,249,181, 70, 87, 13, 51,123, 95, 76,201,103,173,213,109,110, 26,175, 76,220,242, 50,107, 35, 80,252, 14, -136,184,113, 0,203, 51,210, 92, 77,118,187,133,248,177, 63,173, 51, 55, 52,246,150, 29,202,123,205,206,222,138,162,237,174,102, - 44,252,198,198,182, 52, 30, 95,120, 74,167,185, 46,189, 93,146, 51,163,198,189,230,234,189,205, 55,144,228,246,203,239,205, 39, -192, 11,141,100,249,230, 86,133,102,252,250,233, 65, 51,198,226,244,244, 25, 98,140,248,155,191,253,183,241, 23,190,245, 45,124, -248,131,239, 99, 24,118, 56, 62, 58, 65,140, 9,187,221,149, 58, 47,202,238,251,236,249, 57, 78, 79, 79,209, 57, 89, 18, 85, 11, - 81, 53, 64, 17,171, 85, 33,154, 49,203,212,154, 57,163, 95, 44, 96,189,199,184,219, 33,134, 17, 45, 77,147,192, 56, 58, 62,193, -235, 15, 31,226,206,201, 29, 88, 34,236,134, 1,171,229, 10, 49,138,164, 44,168, 35, 91, 89, 3,164,152, 16,134, 1,166,235, 49, -166, 36,114, 58,230, 42,121, 35, 2,124,231,164, 40,230, 92,109, 77,101,114, 77,232,188, 67,232, 58,144, 9, 56, 57,121,136,163, -147, 19, 9,116, 97, 70,138, 1,175,191,241, 16,119,239,221, 23, 66,159, 53,232, 22, 29,140,145,212,182,174,243,112, 94, 10, 86, -215,123, 24,125, 93,142, 80,125,230,125,231, 36, 43, 62, 68,157, 64, 73, 76,107,150, 11,225, 21, 89, 35,202, 20,231, 48,142,163, - 54, 3, 78,220,217, 88,126,174,120,213, 68, 44,122,143, 69,191, 64, 38,131, 16,118, 88,116,242, 59,131,218,215,146,242, 10,168, -105,250, 50, 3,195,102, 7,112,130, 85,243, 27,142,186, 75, 87,210,107,231, 5,121, 24, 67,172, 59,111,107, 12,114, 38, 40,223, -177, 54,244, 41, 79, 46,125, 25,208,164, 53,158,177, 85, 89,221,104,138, 55,125,226,134, 43,164, 90,111,210,102,167, 54, 16,156, - 97,173, 65, 54, 6, 28,115,181,231, 46, 13, 64, 74, 25, 41, 36, 24, 72,128, 76,164,166, 54, 53, 3, 8, 65,244,254, 32,131,104, -173, 32,131, 72,186, 22, 16,227, 46, 3,171,242, 56,113,163, 51,148,113,145, 29,232, 34,224,232,248, 25,168,191,143, 16, 86,184, -135, 45,142,239, 25,156, 61,122, 3,126,253, 24, 48, 17,109,208, 11,110, 65, 72, 91,237, 56, 17, 79, 17,171,252, 74,228,154, 87, -146,176,214,179,142,104, 79,253, 42,127,112, 80,183,159, 82, 8,140,118,134, 50,212,152, 10, 79,155,134,168, 96,180,219,202, 25, -136,152, 8, 43,150, 74, 58, 98,153, 96, 69,222, 69,233, 2,121, 11,236, 50, 33,114,123,144,149,130, 57,105,188, 11, 4, 47,208, -187,217,131, 91,169, 33, 55, 53,122,235, 61, 15,104,185,241,180,201,168, 70, 49,172, 26,199,201,141,174,114, 54,148,137,105,180, - 40, 90,154,210,218,202,251,176, 96, 69, 50,184, 22,162, 92, 9, 3, 42, 99, 83, 70,186,105,141, 90,154,207,195, 26,113,187, 75, - 89, 72, 54, 81, 59, 12,179, 55,201,151, 21,131,216, 66,202,207,163, 74, 68,156,131,179,134,246, 81,233,146,106,133, 38,179,125, - 58,212,219,242, 81, 9, 99,205,180,156,219,215,130,169,193,186, 9,223,206,104,221,255,230, 51, 38,215,150, 50,215,223, 42,144, - 24,213, 53,118,235,245,190, 79,216,219, 47,238,204,220,212,124,158,237,175,246, 45,153,105,255, 62,167,102,239,196,243, 7,176, -252, 78,167,216,127,248,113, 7,245,189,144,180,182,176,166,156,176, 58, 60,128, 49, 2,115, 79,164,150,246,138,222,168, 22,191, -249, 8,105, 63, 11,190, 81, 77, 59,255, 57,109,115, 89, 36,132,214,224,217,179,103,232,124,135,223,253,224,127,196,207,125,243, -231,241,225, 71, 63,192,184, 27,144, 83,198,102,187, 81, 95, 4,134,179, 14,139,254, 0, 79,158, 60,194,211, 39, 79,224,212,173, - 45, 38,113, 80, 75, 49,194,117,122, 8,199,132,174,183,240,222, 34, 69,192, 90, 47,159,247,110, 64,223,119,122, 63, 48, 98, 74, -162, 17,207, 9, 93,183,192,193,209, 17, 34,103, 44, 87, 75, 73, 78,139, 1,214, 89,129,216, 33,211,220, 38,110,177,221,108,145, - 98,172,186,234,237,118,163, 18, 44,129,125,199, 16,116,202, 99, 96,148,235, 84,108,101,219,107, 97,140, 65,191,232,177, 52, 11, -156, 28, 31, 35,107, 18, 27,152,113,124,120,136, 7,175, 63,108, 32,107,217, 23, 27, 7, 28, 28, 30,169,193,139,220, 41,157,239, -224, 93, 70,140,162, 2,170,124,145,242, 44, 27, 41, 42,206,137,175, 59, 67, 10,176,181, 26, 43,155, 19, 86,203, 37, 58,239,208, -117, 29,194,110, 68,231, 44,250,147, 59, 72, 26, 15,219,119, 11,128, 8,195, 56,194, 90,130,115,157,132,219,176,129,233, 60,134, -221, 32, 59,116, 34, 24,206,176,222, 99, 24, 71,244,157,133,115,189,184,213,165,140, 97, 24,145,194, 8,130,129,119,226,233,144, - 99,172,207,185, 36,236,101, 36,101,199,195, 88,132, 33,232, 20, 47,127,111,173,120,213, 11,250, 36,214,206, 57,101,201,191, 40, -171, 70,171,121,237,234,225,110,141,236,208,133, 36, 8, 16,217,202,149,201, 73,238, 25,235, 8,198, 78,142,113, 49, 50,192,210, - 80,145,161,106, 34,100, 8, 32,107, 64,214, 32,100,134,201,218, 52, 41, 31,200, 48,195, 26, 6, 89, 66, 98,229, 0, 64,152,253, - 89,163, 94, 73, 37,189,142, 8,129, 12,158,108, 9,148,214, 88,221, 3,118,238, 1,108,244,120, 99, 21,113,126,255, 1,242,213, -125,152,252,248,133,211, 58,223,192,136,175,230, 94,133, 79, 67, 37, 93,148, 94, 90,216, 95, 58,200,243, 13, 40, 65, 89,231,103, - 65,203,165,168, 39, 45,120,152,147,110,202,108,232, 90, 7,170,118, 66,211,147, 51,137, 99, 13,146, 33, 80, 78, 32,102, 68,102, -140, 89,245,213,121, 68,138, 6,107,154,138, 63,148, 61, 42, 4,187,172,164, 56,177,165, 5, 3, 73,188, 83, 27,217, 17,102,221, -189,153, 49,163,105,239, 32,231,250,247, 73,101, 15,164,162,247, 66,123, 48, 52,135, 77,106, 65,203, 92,199,173,208, 76,238,115, -138,194,190, 49,127,107,120,147,145, 26,121, 75,203,191, 74,105, 90,160, 23, 7, 52, 82,119,184,201,117,109,218,191, 23,187,216, - 92, 28,228,234, 39, 50,151,146,149,249,108, 66, 41,132,147,208, 30,237,220, 54, 15, 45,220, 14, 49,118, 40, 94,215,133, 41, 77, -234,183, 92, 38,116,154, 17,252,166, 48,158,130, 48,240,158,221,168, 72,107, 90, 9,155,153,140,111,180,129, 48,234,216,150, 57, -207, 32,255, 18,102,209, 58,159, 1,123, 5,125, 15, 90,199, 11,210,233,166,169,153,167,187,100,182,159,215,204,131,220, 72, 5, -127, 28, 93,122,195,187,107,126,180, 52,115,214, 98,183,221,106, 4,166,153, 53, 51, 55,177,224,111,123,172,175,217, 12,239,193, -123, 55,171,219, 27,255, 5, 53, 62,185, 56,191,128,181, 6,191,251,193, 7,248,217,111,252, 60,190,255,253, 63, 66, 80,247, 55, - 99,172, 4,134, 24,131,229, 98,169, 69, 45, 97,216,238, 4,241,241, 29, 44, 17, 58,120,108, 54, 27,144,119,240, 66, 47, 70,136, - 82, 84,141,181, 24,153, 97,144, 97, 64,186, 27,119, 0,247,216,238, 6, 77, 42,179,240,112, 48,171, 21, 86,171, 21,238,222,187, -131,213,225, 17, 78,159, 61, 21,243, 38,229,221, 92,237, 6, 92, 93, 94, 97,187,217, 32,197,136,144, 82,163,111,151, 59, 49,168, -113,140,252,159,166,119,177, 52, 84, 41, 39, 97,124,235,253,222,119, 30, 33, 16,172,205,112,206, 33,196, 32,239,145, 39, 47,139, - 48, 12,232,151, 43,133,116, 51,198, 33,160,235, 60,134, 97, 68,214,176,153,190,235, 16, 83, 82,215, 60, 97, 74,103,157,118,140, -238,178,147, 78,237,162,207, 54, 8,227,136,190,239, 84,194,101,225,188,131,179, 6,171,213, 18,153, 44,182,167,103,224, 20,212, - 83,159,145, 82,128,181,194,123,242,150,224,252, 82,118,205, 86,150,152,227, 24,224,156,236,249, 83, 12, 24, 71,105, 54,250,222, -195, 25, 57, 83,115,214,157,182,119, 32,146, 63,199, 32,161, 52, 18,167,154,165, 65, 75, 9,136,106,215,155, 13,144,162,160,169, -202,133,130,238,192,171,187, 1,147,114, 36, 8,100, 44,188, 70,222, 18, 89,253,140, 98,189,174,208, 85, 44, 32,133,157, 89,206, -122,182, 70, 86, 10, 33,193,153, 8,178, 94,139, 55, 33, 25,163, 19, 55, 80,244,118,157, 37,192,245,136, 57,195,197, 84, 73,213, -101,136, 72,153,133,112, 71, 89,201,191, 98, 29, 46,231,152, 16, 51, 13, 73,195, 18, 51,100, 71, 79,192, 69,112,232,174,118,232, -142, 47, 1,119,140,215, 29,225,179,215, 12,206,159,190, 5,187,121, 38,163, 92,181,138,189,185, 16,243,117, 11,146,201, 52,134, - 26,206,215, 23, 37,229,242,203,135,248,234,143, 70,128,203,139, 19,120,222,226,112,151, 48,236, 12,118,122,248,115, 49, 13, 81, -187,216, 66,214, 42,187,223, 68, 90,200,179, 65, 50, 12,239,100,186, 46,249,198,177, 68,183,242, 20,206,210,146,208, 88, 77, 48, -140, 78,234,150, 4, 18, 73, 25, 32,119, 0,179,180, 56,204,107,140, 3, 99,139,105,103, 47,182,207,226, 83,156,200,195, 58,212, - 8,213, 98, 49,107,181,236,197, 25,137, 66,119, 49, 25, 48,214,214,180, 49,230, 61,235,208,102,186, 71, 3,201, 23,233,157,157, -153,192, 76,214,185, 83,206,251,228,219, 94,160,109,110,224,236,144,247, 83,212, 38,200,217,160, 53, 20,144, 46,126, 84,180,132, -243, 4,215, 19, 55,156,128,210, 76, 24,245,142,103, 52,100, 48, 52,185,236,243,123,105, 50, 25, 98, 56,223, 3,141,165,109,133, -215,169,133,220,233,218,132,110, 10,137, 17,115,217,228,244, 61,220, 52, 38,185,201, 26, 23, 40,205, 16, 77,225, 56,245,103,152, - 10,197,231,198, 14,152,104,142, 22, 76,190,204,147, 75, 29,191, 76, 47, 66,123,166, 66, 77,195,144,152, 95,170,134,123,169, 90, -142, 94,240,128, 3, 26, 20, 50,223,169,211,141,185,108,116, 59, 28,112, 19, 52,113, 93,136,127,189,177,105,126,122, 24, 3, 54, -155, 13,254,198,119,191,139,159,251,230, 55,241,225, 15,126,128,227,227, 19, 16, 24,151,235, 53,200, 88, 44,150, 11,172, 22, 75, -100,102, 92, 94, 92,128,136,176, 88, 45, 97,141, 69,140, 1,118,177, 64, 28,130, 6,120, 72,115,215,245,157,120,106,135,132,113, - 28, 42,219, 90, 72,116,242,181,214,202,212, 70,100,170,121,208,193,234, 0,111,188,241, 16, 95,254,202,251, 51, 88,122,125,126, -129,221,102,139,245,197, 26,231,231, 23,130, 8, 56,217,161,143, 99,192, 48,198, 42,105, 27, 85, 47, 78, 68,112,206, 85,135,179, -201, 20,170,144, 87,101,114, 23,239, 12, 89,107,133, 0, 56, 71,234,163, 14,236,134, 17,159,124,242, 9,238,223,191,143,187,247, -239, 99,209,247, 2,103, 15, 1,125, 47,220, 0, 82, 4, 64, 26, 15, 11,227,202, 51,152,107,179,202, 42, 45,201, 73,224, 98, 99, - 45,236, 98, 1,171, 40, 1, 17, 97, 28, 71,137, 6,238, 59,108,199,140,221,118,163, 97, 51,130,104, 4,157,234, 37, 7, 94,210, -234,198, 16,144, 99,130,115, 78,175, 49, 99,183, 27,145, 82, 64,231,172,132,200,140,220,200,213, 24,169,201,119,207,148,213, 7, - 94,152,235,177, 73,168,204, 89,162, 85, 37,184, 37,235,117, 34,241, 62,215,231, 83,140,105,228,201,239,189, 3,145,228, 83, 24, -103, 69,179,158, 4, 46,143,100, 49,198, 8,230, 88, 83,213,196,172,140, 53,189, 78,124,221, 51,137,131,104,202,178,123,207, 25, -112,148,100, 29,161,195,138,113,226, 17,111,148,148,156, 50,224, 76, 6,172,172, 88,192, 9,145, 13,160, 70, 55, 41,203,128, 85, - 66,190, 12, 17,140,115,122,254, 37,153,164,197,141, 24,189, 3, 98,182,184,216,101, 28,217, 13,236,210,225,200,247,120,235, 30, -225,252,193, 91,224,143, 63, 1,225, 9, 24,139, 27, 79,130,219,226, 93, 38,107, 87,170,126, 38,251,230, 53,255, 50,254,105, 55, -126,206, 40,209,160, 51,114,113,183,185, 40, 36, 81,115,194,161,157, 82,108, 8,100,200,114,193, 18, 39,133,238,243,148,190,214, - 24,139,112, 51,221, 48, 97,138,231,156,193,187,250,239,156, 0, 54,136, 57,162, 11, 18,193, 24,139,184, 95, 3, 84, 76, 78,200, -116, 8,123,178,196, 49,159, 35,110, 25,177,229, 18,231,140, 12,163,222,232,168,110,106,224, 4,182, 43,248,165,129, 11, 91,140, -105,178,252, 51, 44,223, 83, 81,130,134,205, 93,155,130,134,112,134,134,188, 70, 51,129, 65,201, 41,111,132, 73,245,242,145,186, - 29,177,194,106, 83, 34, 92,129,162, 36,205,110,242,111, 55, 74, 34, 98, 8,225,173, 70,176, 54,186,201,202, 59,200,215,253,240, -169, 38,192, 97,150,153, 77,205, 2, 36,166,136,147,123,175, 97,101, 19, 62,253,252,145,228, 70, 43,153,136, 64, 32,107,170,174, -188,157, 64, 51, 53, 78,112,152,204, 95,140,162, 4,117,199, 95,229,130,154,164,134, 61, 78, 65,123,141, 48,183,208,157, 14,101, - 37,202,128, 97,153,106,147,133, 25, 83,254, 37, 1, 46, 52,201, 21,247,191,254,139,228,181,240, 43,116,216,180,103, 65,203,229, -243,191,198, 76,191,169,172,243, 75,200,238, 55, 44,237, 49, 15,221,225, 57, 61,112,214, 0, 16, 12, 30, 63,249, 12,127,254, 91, -223,194, 47,127,251, 87,240,163,143, 63,198,225,225, 49,150,139, 5,206,207,207, 96,172,236,125, 59,231, 49, 12, 3, 54,155, 13, -146,234,148, 15, 86, 7,184,115,231, 46, 62,127,244,121,221,201, 59,239,229,239,179, 76,203, 34,107, 83,255,238, 28,176,219,137, -107,220,110, 24,128,164, 92, 6,202,210,176,133, 88,253,225, 87, 7, 43, 24, 50, 24,182, 91, 28, 29, 30, 34,167,140,103, 79,158, - 97,125,177, 22,217, 92,148,184,213, 28, 18, 76, 50, 24, 6, 49,141, 49,206, 85,252,174,160, 95, 69, 14, 70,202, 1, 74, 41, 87, - 11,227, 66, 60, 43,242, 40, 33,116, 57, 32,169,125,171,106,177, 99,202,120,244,248, 9,114, 74,120,235,157,119,209,247, 30,214, - 58,244,125,135,190,239, 37, 59, 30, 6,189,179, 8, 24,225,187,197, 68,158, 85, 99, 28, 38,209,176, 71,147,164, 8,235,245,234, - 59,135,126,185,196, 48,142, 48,198,192, 59,143, 24, 69, 78,135,156,177, 90, 29, 98, 59,142, 8, 97,128,239, 60,114, 38,120, 67, - 48, 78,226,103, 59,239, 49,176, 65, 76,161,222,215,206, 89, 56,181,225,222,108,118, 32, 36, 88,231,171, 2,192,146,129, 49, 84, - 45,116,165,233,200, 98,236, 66, 12,211,117, 64,136, 18,224, 69, 6,222,136, 22,188, 36,228, 69,150,120, 98, 83,188, 40,136,102, - 92,151,148, 89,210,219,200, 86, 52, 8,122,110, 24, 42,200,165, 64,233,220,202, 57,181,200, 27,146,251,169, 72,227,198,200, 48, -105,132,179, 70,161,111, 97,221,103,136,139, 39,177,240, 35,132,131,144, 32,126, 54, 81,228,209, 49,193, 27, 6,188,215,236,152, -140,156,169, 18,232,160,105,117, 49, 9,199,197, 35,195, 57,131, 13, 59,240, 85,196, 1,206,225,112,130, 55,123,224, 71,111, 44, -113,249,244, 29,116,155,167, 32,155, 53,216,101,110,174,252, 42, 3,117,203,153,163,150, 8,254,133, 98,149,111,250,218,235,175, -197, 97,119,137,112,150,241,140,167, 40,206, 84, 14, 23,221,107, 23, 15, 94, 2, 33,234, 53,177,152,166, 30,112, 68,138,192, 70, -253,221,139,246,180,212,239,132,214,122, 83,118,211,185, 68,165, 54, 78,107,201, 30,195,245, 9,171,184,197, 56, 16,214, 32, 52, -105,129, 58,201,102, 48, 60,176, 58,192,125,186,192,197, 46,227,121,214,184, 57,178,128, 81, 34, 27,231, 74,144, 16, 72,153, 1, -187,196,242,200, 96,121,117,133,199,107, 2,155, 86,179,140,185, 94, 89, 73,106,204, 34, 97,179,202,108, 76,117, 74,148,162,100, -137,166, 9,176,154,202,204,183,215,101, 82, 54,229,123, 20,154,203,133,108,119,109,183,172,150,177,218, 92, 12, 57, 79, 6, 64, - 10,103,182,206,126,173,255,122,241, 1,176, 52,201,211,248, 90, 0,206, 4,215,116,206, 97,115,254, 28, 59,101,167,154, 10,103, -203,142,171, 50,227, 83,154,201,205,168,245,142,203,211,207,227,150,137,217, 16, 25, 19,207,229,110,251,242,187,246, 86,173,228, - 62,204,107, 23,241,116, 79,237,187,187,190, 80,205, 70,123,255,189,176, 83,249,213,178,196,219,127,202, 53, 48,183, 5,189,240, -117,246,251,196,145,225,219,248, 47,175, 78,141,229,155, 91,145, 27,237, 42,245,131, 41,124,130,237,176,193,189,187,119,241,157, - 95,253, 53,108, 54, 27,196, 24,113,116,212,225,106,179,198, 16, 70, 28,172,100,247,191,221,170,129, 11, 32, 59,108, 34, 88,103, -113,255,193,125,108,182, 27,108,174,174, 16, 57, 42,220, 42,123,214, 24,163,220,215, 90, 44,162, 26,178,236,182, 3,214, 23,107, -145,219,232,100, 71,200,136, 33,193, 88,194, 24, 6, 60, 63,123,142,119,134, 1,236, 61,126,240,225,255,135, 31,253,240, 19,156, - 63, 63,195,118,183,171,141,109,214, 0, 18,102, 32,134, 8,223, 57,140, 33,170,183,188, 16, 74,161, 12,112,210,115,192,152,226, -145, 32,214,175, 49,230,249,133, 82,185,150,181, 78, 61,221, 19,188,119, 74,152, 4, 30, 63,121,138,229,114,133, 7,175,191,142, -190, 23,141,124,136, 17, 93,231,209,119,189, 52,154,142, 36,120,133, 25,139,229, 10,235,171, 45, 98, 88,163,235,186, 74,102,117, -222,195,119, 14,119, 78, 78, 96,188, 69,138, 9,222, 58,120,239,148, 36,215,225,234,106, 3, 32, 97,177, 92, 96, 23, 37,191,220, - 59, 33,232,229,156,193, 37,191,156, 8,203, 69,143,245, 85,212,189, 53, 33, 27,194, 48,102,196, 24,128, 44,138,159, 52,142, 24, - 67, 20,249,154,147,115, 76, 26,116, 89,135,112, 78, 72,156,225,173, 76,190, 68, 12,227,164, 73,115,198,106, 96,140, 1,147,129, - 3, 97, 80,107, 89,215,117,200,170, 64, 40,104, 69,142, 73, 28,229,220, 68,172,149, 0, 54, 11, 75, 92,243,210,235,186, 78,159, -197,162,113, 47,196, 55, 89,171,136,126, 61,115, 22, 61,189,209,247, 72,178, 71, 71, 74,232, 28, 16,225, 64,144, 66,206,208,236, - 0, 6,216, 24, 48,101,112,202,138, 16,106,254, 0, 39,120, 11, 56,103, 17,225,192, 41,194, 33, 35, 91, 43,103, 88,142,136, 36, -171,128,173, 27,112,104, 8,239,222,177,248,231,175,189,141,252,199, 31,195,240, 19, 16, 45,103,228, 55,190,133, 21,207, 47, 40, -236,204,165, 33,226,151,147,231,152, 94,225,144,155,255, 39,251, 19, 95,123,239,131, 16, 70,145, 37, 49,102, 90,111,162, 2,177, - 78,158,218,121,182,251,203, 85,239,189,223,113,100, 66,253,239,108,230,240,249,254,239,168,193, 36,110, 1,215, 51, 14, 56, 34, - 36,249, 62, 51,243,207, 32, 16, 89, 24,218,129,174,206,112,113,149,177, 43, 68,168,204,136,254, 62, 14,239,117,184,203, 3, 54, -246, 14, 86, 43,134,143, 17, 17, 70, 38,207,180,197,184,221, 98, 27,168, 26,153,114,133,236, 9,142,154,157,118,153,210, 27,253, -244, 53,127,245,150,236, 72,166,146,253, 74,209, 43,108,247, 34,183, 32,204,125,238,247, 77,104,102, 4,182, 90,160,185,217,251, - 55, 5,119,239,179,110,117,254, 25,197,122,119, 14, 73,243,222,239, 42, 19,116, 49,167, 48,198,168,247,188,174, 91,154, 7,177, - 68, 50,238,235,236,235,141,221,238,255,247, 76, 45,184,106,150,105, 6,165,243, 30, 11,253,166, 74,199,141, 36,204,182,123, 11, -106,244,241, 85,186,210, 72,181,104,143,241,215,242,203,248, 85,231,243, 61,179, 32, 53, 5,185, 81,159,142,198, 7,134, 94,204, -113,251,177, 1,254,125, 35,249, 87,109, 0,104, 98,251, 19, 17,158, 62,121,138,191,240, 75,127, 17,255,222,183,127, 5,159,125, -250,121, 77,200,138, 57,161,239,123, 32,171,132,173, 24, 65,169, 5,180,179, 86, 11, 8,176, 90, 29,192, 88,167,174,109, 25,222, -117, 8, 49, 97, 55,142, 72, 49, 32,196,128, 48, 70,132, 49, 96,183, 27,112,121,113,137,113,216,193, 88, 41, 38,219,221, 14, 41, -102,221,101, 11, 43, 28, 12, 44, 87, 43, 60,125,250, 4, 31,254,224, 67,156, 63, 63,195,102,187,145,248,208,204, 24,131,120,206, - 23,141,181,239, 28, 66, 20,247, 52,210,207, 6,141,207,129,209,169, 59, 39, 9,104,169,249,220,121,146, 85, 90, 35,210,171,130, -164, 37,157,214,173,177, 53, 13, 45,166,132, 24, 70, 28, 29, 29,193,185, 78, 76, 92, 82,196,178,239,225,187,190, 50,234,141,194, -254,198, 90, 68,141, 34,117,206, 33,140, 35,188,247,112,206, 73,192, 75,223, 87,148, 96,185, 88, 96,177, 88,193, 90,139, 97,140, - 56,123,126, 42,246,173, 65,156,249,156,151,162,239,156,151,221,188, 53, 18,174, 18, 34, 66,138, 24, 7, 41,204, 80,206, 66, 74, -141, 75,159, 42, 1,202,202, 67,154,157,164, 36, 62,174,254, 24,214,217, 42, 59, 11,138,184,148, 64, 37, 5,100,235,144, 82,244, -231,176,170, 55, 47,138,156,130, 34,130,181,201, 51,202,183,202,211,181,182,106, 80,195,220,160,136,166,162, 27,164,176,122,249, -122, 89, 87, 24, 25, 75,180,216, 23,164,197, 26, 6,145,133, 53,162, 65,151,247, 33,114, 54, 11,134,117, 6, 67, 54,136, 99, 16, - 56, 30,114, 63,192, 24, 37,176,105, 82,159,149, 70, 53,195,106, 16, 18, 16,217, 32,198, 12,147, 71,116, 6, 56, 94, 88,156,118, - 7, 88,159, 57,184,237,103,128,203,168,137,229,213, 65,147, 94,249, 81, 39,180,235, 87, 82,169, 26, 93,211,188, 95, 63, 11,249, -214,131,161,124, 89,223,247,176, 63,241,181,119, 62,136,195, 88,217,139,185,129, 24,147, 90, 75, 86,146, 4,113,157, 76,145, 19, - 40,102,132,100,177,171, 38, 45,109, 24,203,190,171,248, 84,136,120,150,149, 93, 96,114,128,242, 14,105,136,216, 36,249, 65,229, -235,205, 62,132, 81,114,218,213,217, 12,245,247, 37,152, 52, 34,133,140,129, 28,122, 27,193, 33, 97,204, 2, 61,137,227,157, 16, -217,102,218,114,162,249,126,154,230,103, 63,191,104, 18,226,150,229, 95, 71,213,234,144,102,201,192, 27,139, 78,245,105,133, 24, -200,250,218, 77, 35,121,175,196,186,230, 26,229, 98,224,211,222, 12, 69, 2, 72,243,226, 60,237,203,105, 38,152,158, 72,109,183, - 64,205, 5, 30,171,178, 51,204,137,100, 57,205,120, 29,173,165, 43,183, 70, 58,123,251,229, 25,220,188, 23,255,107,136, 94, 10, - 58,241, 62,243,189,236,206, 27,167, 58,236,201,214, 12,209,124, 88, 46,239,139,219,152,182, 47, 46, 22, 29,199, 17,239,190,247, - 37,220,189,115,130,211,211,103,181,145,104, 33,247,253,198,250,165,228,186,153,172,235, 38, 64, 15,123,176,124, 33, 6,208, 43, - 47, 14, 90, 37, 65,202, 25, 57,101,252,250,111,252, 6,222,126,231,109,156, 93,156, 55, 80,134, 60,255, 97, 12,141, 92, 81,224, - 90,107, 13, 98, 76,120,246,244, 25,158,159,157,129,153,113,116,116,136,123,247,238, 33,197,132,231,103,103,194,113, 73,161,106, -139, 67,212, 92,245,237, 14,195,176, 21, 51,152, 33,168,124, 42, 33,102,157, 50,141, 81, 54, 53,227,236,236, 12,167,167,103,216, -237,118, 24,195, 78,159,113,125,102,179,200,216,164,217,212, 44,237, 40,154,106,227, 68,195, 93, 10, 23,152, 97,156,236,238,119, - 10,211,151,233,209, 90, 43, 59, 88, 98,120, 39, 5, 19,200,162,219, 38,160,235,188,230,190,163,230,178,143, 33, 74,168, 75,215, -193, 57,135,190,239, 65,134,224,140, 65,215,247, 72, 49, 98,209,245,112,174,171,161, 41,206, 58, 37, 95, 50,150,203, 37,124, 39, -150,173,197, 97,206, 26,217,205, 91,103, 17, 98,198, 39,159,126,138, 56,110,225,187, 30, 49, 8, 34,177, 90, 46, 96, 92,135,113, - 24,176, 84,207,251,113,220, 33,170,108, 14,224,202, 15, 64,185, 78, 41,169,149,179,198,169,210, 20, 89, 44, 22,177, 9, 73,211, -221, 88,215, 42,204,185, 66, 95,210,160,155,170, 4,152,220, 32, 49,249, 70,168, 44, 53,107,250, 94, 98, 18, 52, 7,168,197,187, -220,115, 37,213,205,212, 67,171,209,157, 52, 19, 59,233,158, 60,169,100,177,144,239,234, 57,167,223,231, 72, 27, 56, 50,152,162, -136, 88,217,242, 73,173, 98,229,122, 88,203, 96,114,240,196,112,222, 0,198, 43,139, 63,195, 34,235,106,145,164,150,137,173, 34, - 8,140, 8, 69, 82, 83,192, 1, 50, 14, 15, 51, 30,185,251,136,103, 12, 59, 62,134, 98,248,115, 46,205, 23, 12,129,162,189,195, -123,170, 65,244, 5,167, 1,154,253,169,235,123,216,175,127,229,157, 15,118,195, 0, 78, 89, 44,249, 50, 16,117, 39,109,102,188, -239,169,216,165, 60, 34,229, 37,198,163, 55,224, 94, 3,254,132,207,112, 49,227, 42, 17,246,228,131, 51, 86, 88,217,183, 82,195, -160, 54,212, 58,144,145,122,195,151,221,113, 41,234,101, 67, 72,117, 45,144,203,206,172, 50,217, 9,196, 35,198, 33, 97, 96,192, -196, 29,182, 67, 22,137, 82,245,152, 23, 59, 69,163,127, 54,197,112,102,111,234, 77,154,157,203,173, 75, 7,239,245, 82,165,192, - 18,237, 73,210,228,195,113, 5,146,111, 26,132, 9,130,158, 10,186, 37,163,112, 51,166,152,196,102,226,221,207,226,182,123, 8, - 71,221, 87, 55,240,251,172,224, 19,221,172,111,214, 23, 86,204, 99,166, 21, 66,195, 15,208,201,134,148, 32, 83,183,178,181, 48, - 78,215,113,134, 64,204, 18,209,168,233, 80,139, 51,224, 92, 86,215, 22,248,107,197,178,133,175,153,103,157, 43, 55, 1, 64, 21, - 43,170,154,243,235,247,162,249, 2, 59,244, 23,193,239, 91, 13, 47, 33, 67, 55,180,224,215,133,171,116,107,193,221,103,174, 19, -232, 70,217,204, 94, 62, 95,245,135,124, 69, 54,128,154,204, 60, 63, 61,197,187,239,189,139, 95,251,143,254, 99,108,183, 59, 97, -164,119, 30, 33, 6, 60,126,244, 8,219,237, 6, 7,135,135,149, 64, 38, 12,244, 92,225,239,139,203, 75, 60,121,252, 8,214,138, -117,169,247, 30, 7,171, 67,108,182, 27,196, 56,136, 76,172,239,209, 43, 75,252,242, 98,141, 49,140, 24,135, 65,120, 36, 58,205, -150, 32,150,242,186, 68,182, 36,228,183, 16, 2,194, 56, 34, 40,129, 44, 37,133,222, 53,201, 80,118,172, 18,226,145,115, 66,223, -123,120,223, 11,124,174,187,108, 49,164,113, 24,199, 88,139,124,113,181,180,122, 32, 75,129,117, 58,217,231,230,217, 21,215,196, -114, 95, 58, 43,208,252,102,179,197,110,216, 32,133,168,147,167,129,177,242,154, 39,255,247,140, 48, 6, 45,174, 25, 41, 69,172, - 22, 11,153,158,220, 84,204, 37, 3,221, 84,105,231,249,229, 37,158, 61,121,162, 58,107, 33,171, 25, 35,168, 80, 74,242, 57, 88, -107, 48, 4, 49,149,241,206,195, 24,171, 69, 85,174,209, 24,130,186,237,229,154, 57,239, 69,127, 38,174,123, 90, 96,135, 65,136, -107,204, 98, 38,100, 84,254, 43,206,113, 86,153,245, 4, 34,167,233,111, 66,146, 35, 69, 51, 50,207,179, 27,138,124,175, 34,113, -237,254, 92, 17,204,226, 52,103,202,239,104,221,203, 21, 85,129,242, 24, 12, 4, 65, 17, 68,140, 38,131, 26,107,193,176, 26,150, - 35, 70, 58, 5,149, 41, 43,142, 12, 2,107, 35,229, 12, 96,157, 7, 96,148,237,110,166,232, 82, 13,133,145,192, 24, 69, 19,160, - 74, 13,121,145, 72,204, 24, 98,198,110, 76,184,155,119,232, 78, 24,143,241, 26,248,249, 22, 38, 63,215,117,130,153, 65,116, 68, -179,197,215, 45, 69,250,250,177,193, 45, 66,123,109, 90,167,151,254,156,186, 78,237,122,216,159,252,234,219, 31,140,195, 32,242, - 9, 54,146,130, 83,164, 78,205,137, 90,161,106,206,224,100,144, 14,222,199,240,165, 14, 63,121,247, 20, 95,191, 76,248,112,195, - 24, 10, 51, 30,152, 77,191, 76, 83, 87, 38, 33, 1, 84, 93,220,186, 2, 1, 55,197,142, 20, 21,160, 44,129, 41, 65,242,128,196, -219, 93, 39,175, 92, 39,228,189,196,182, 10,151,155, 6,154, 45,141,129,108,153,103,238,103, 77, 38,123,241,149, 55, 13,149,153, -107,171,113,211, 69,156, 87,220,114, 40, 56, 66,125,141, 69,198,149, 48,119, 77,115,181, 56,106, 42,146,178,193,103,150,169,251, - 48, 52, 79,176,188,221, 91,223, 22, 63, 1,218,163, 97,240,181, 98, 62,239, 83,202,123, 32,174, 86, 51,179, 90, 97,218,247, 79, -211, 74, 6,134,196,163,153,105,150,201, 70,160,217,100,250,226,200, 89,190,102, 46, 99,154,175,173, 17,180,229,221, 80, 19, 27, - 78,251, 58,142,121, 66,217, 76,254, 70,237,178,103, 94, 23, 95,181,184,179,178,245,119,187, 29,118,187, 93,133, 51,111, 42,170, -212,120, 49,123,231, 85,139, 29, 91, 69,255,181,223,251,210,135,159,113, 93,162, 49,211,210,221,178,220,215,206, 57,140, 1,159, -127,254, 57,190,243,157, 95,197, 55,126,254,155,120,252,248,177,154,197, 88,172,175, 46,176,221,108,112,126,113, 33,210, 59, 3, -120,133,154, 89,181,200, 70,225,247,113,216,225,206,201, 29, 44,151, 75,108,183, 59,128, 8,157,247,184,188,188, 68,215,117,224, -156,177,217,136,235,220,229,229, 26,227, 48, 34,196, 8,239, 28,250, 69, 15, 67, 34,123, 43,147, 49, 64,232, 58, 95,159,157, 49, -140,250,247, 42, 69,211,174,205, 59,167,140,237,140, 16,146,106,194, 1,231, 58,248,174,155,238,117,205, 73,151,232,213,164, 33, - 51, 50,205, 90,109, 32,178,190, 47, 97,226,167,106,133, 10, 24,101,132, 27, 53,209, 17,119,184,194,166,143, 49, 99,183, 27, 37, -113,110,148, 53,195,110, 55, 8,242, 16, 3, 6,109, 74,118,195, 0,206, 9,135,135, 7, 88,173, 86,112,206,131, 33,153, 12,214, -154,234, 17, 79, 0,198,144,241,228,241, 99,228, 52,130,180,168, 26, 99,144, 51, 99, 24, 6, 16,103,244, 93,223,196, 38,147, 90, - 64, 71,132, 16,165,152,199,160,211,176, 32,151, 99, 8, 26,162, 68,122,253,184, 54, 55,146,178, 23,213,152,101,178, 40, 22, 39, - 55,145, 10, 18, 19,188, 70,160,102,101,185, 23, 59,239, 49, 68, 49,177, 65,163,182,129, 56,226, 65, 67, 86,140,238,201, 11,140, -110,173, 21, 89, 89, 46,134, 44,102,118,155,146,145, 34,155, 99,128, 53,172, 58,119, 77,187, 83,159,123,217, 97,103,181,157,133, -254,110, 97,202, 27,102, 56, 39,197,152,213,112,203,121, 21, 83, 42, 10, 33,126,240, 25,214, 48,216, 56,196, 40,104,115,113,158, -179, 52,201,120,193, 18,110,102,172,193, 8,135,205,142,113, 20, 54,232, 14, 19,206,236, 61,228,117,132, 77, 23,210,216,151,247, -194,170,128, 34,254,177,198, 6,186, 70,201,121,245, 19,170,253,141, 93,215,195,254,196,215,222,253, 96, 28, 54,200,217, 3,221, -107, 24,239, 69, 60, 92,140,184, 55, 0, 79,147,122,203, 98,202, 55,143,121, 68,118,111, 99,120,247, 30,190,250,224,251,248,153, - 79,174,240,127,125, 74,248, 40,147,232,217, 91,253, 55,209,108, 79, 80, 38,220, 98,218,226,245,235, 98, 83,160,139,141,107,134, - 1,249, 14, 71, 29,112,136,140,144,117,202, 39, 3, 56, 11,103, 50,136, 61,176, 88,225,192, 7,228,144, 17,120, 14,201,206,247, -191, 19,188, 93, 38, 82, 57,248, 77,117, 60, 67,181,155,149, 15,135,247,226, 48,247,229, 69,133,209, 95, 38, 86, 91, 12,111,244, -117,138,225, 65, 18,147, 25,210,223, 3,154, 13, 90, 5,134, 42,123,163, 10, 31,171, 52, 47, 21,123,220,166, 49,106, 87, 2,118, -182,118,161,198,175, 31,117,157, 82,247,238, 77,140,172, 33, 51,197,116, 98, 10,116,161,189, 9,121, 10, 92,153,195,235, 37,241, - 46, 99, 30,141,187, 31,171,199, 55, 48, 68,233, 6,136,125, 95,147,110, 72,249,242,140,153,156,178,250, 28,211,237,252,208,118, -235,204,252,226,157,253, 23,121,252,140, 30,246, 47,134,185,219,134,161,177,185,189,230, 18,201,215,174, 40,237,197,224,222, 40, - 99,155,121,182,211,237, 15,121,147, 26,197, 57,227,233,211,167,248,203,127,249,175,224,215,255,211,255, 12, 79, 79,159,226,232, -240, 16, 0, 97,189,190,168,197,169,152,185,156,159,157, 99,187,221, 2,160, 73, 83,237, 28,188,243, 98,109,234, 59,228,148,240, -236,217, 83, 92, 94,174, 53,190, 84,246,157,155,205, 6,231,231, 23,184, 92, 95, 97, 28, 6, 12,195, 88,189,194, 55, 27, 73,107, -243,206, 85,125,180, 49, 6,198,217,154, 47, 62, 12,131,152,207, 40,215,131,136,100,215,111, 8, 67, 24, 43, 50, 39, 48,183, 17, - 25,157, 94, 26,103,109, 45, 2,153,179, 22,219, 88, 85, 0,164, 49,175, 33, 68,181, 78,144,224, 19, 64,116,237,133,157,221,198, -153,150, 78, 82, 76, 95, 36, 26,212, 26,131, 16,165,144,131, 89,118,224, 57, 85,191,247,148, 18, 22,189,199,189,251,247,213, 79, -157,209,119,157,104,243,173,232,187, 57, 75, 56,205,229,122,131,167, 79, 30, 9,164,172,178, 46,239,188,162, 10,132,126,177,148, -253,180, 66,235,211, 26, 37, 33,164,132,172, 82,181, 82,232, 83,148,255, 46,211,185, 60, 83, 33, 37,109, 0, 34, 56,199,170, 53, - 79,172,242, 51, 35,186,114,112,214, 64, 25, 65, 48, 98,102,140, 97, 4,169,159,124,204, 16,114,153,179, 18,140,196, 73,136,143, -214,168,129, 25,107,145,148, 81,171, 20,106,103, 1, 99, 61,230, 62,161, 60,227, 15, 37,150,157,189, 37, 33, 83,178, 66,225,165, -113, 22,231, 95,201,251, 8, 33,195, 34, 86, 59, 94,214, 76,137,105,181,167, 33, 97,169,192,254, 70, 57, 4,170, 89, 87, 57,156, -179, 22,100, 61, 50, 83, 77,212, 43,104,162, 45, 48,191,234,217, 83, 98,220, 49, 17,203, 35,131,179,238, 62,226, 37, 96,226,115, -133,137,219,224, 50,170,107,210, 31, 91,158, 86,237,190,249, 21,207,167,233,220,238,187, 30,246, 95,251,218, 91, 31,236,182, 35, -216,222, 69, 60, 54, 56, 92, 94,224,157, 45,227,108, 75, 56, 7,193, 21, 91, 19,189,248,158, 44,128, 17,216, 62,129,121, 58,226, -147,231, 22,159,176,129,181, 42,195,210, 98,206,104, 73,110, 84,167,172, 50, 9,187, 2,199, 23, 75, 21, 38,176, 91,194,118, 25, - 29,203,222, 39, 67,178,222, 61,103, 12,153,170, 6,157,201,192, 80, 6,165,128,144, 68, 30, 83,227,180,155,230, 96, 70,176,187, -246, 58,218,162, 39, 83,178,109,137, 85,149, 48,151,193, 53,130,122,210,219,211,222, 36, 93, 66, 80, 76, 3,217, 39, 48, 88, 15, - 1,230,180,183,155,167,185,236, 24,147,211, 93,141, 40,165, 9,125,104,119,174,212,196,195, 86,104,184,204,180, 13,196, 77, 77, - 52, 41, 55, 30,106, 85, 87, 79, 60,243, 97,161, 27, 10,101,187,147,111, 11,166,209, 38, 38,227,246,232,211, 34, 93, 51, 55, 77, -181, 55,222,208, 13,171,190, 54, 90,172,210, 66,105,148, 80,114,232,247, 96,122,218,223,233,191, 96, 31,117,179,141,234,205,175, -233, 54, 9, 91,171,220,104, 53,168,183,125,127,219, 42, 82,171,101,125, 33,183,142, 39, 4,130,246, 4,241,183,244,237, 19,170, - 65,120,252,232, 49,126,246,103,126, 22,191,253, 59,191,139,205,110,139,206,123, 28,159,220, 65, 74, 9,207,158, 62, 21, 27,214, - 49,194,123,143,156, 51,182,187, 1,151,235, 53, 46, 47, 47,112,231,206, 29,156, 28, 31, 97, 24,196,219,189,235, 58,140,227,128, -179,243,231, 88,175, 55,149,160, 5, 0, 41, 68,153,210,159,157, 34,134,128,174,115, 26, 0, 98,165,113, 24, 6,217, 41,235, 52, -153,121, 90,147, 48, 50,198, 48,130, 21,110,103,117, 3,178, 86,194, 56,182,219, 29, 82,146,131, 60,115, 70,138, 25,206, 89,244, - 93, 55, 11,178,177,226,108, 82,157,238, 74,226, 88,106,236,121, 83, 78, 21, 10,159,216,241, 84,243,224,203,207,115,206, 78, 77, - 28,203,196,105,213,227,220,104, 88,139,184,172,105, 67, 64,140,152, 50, 58,107,240,230,155,111,162, 95, 44,101,199,109,141,158, - 1,220,108, 77,196, 1,237,236,236, 28,219,171, 75, 56,239, 43, 66,215, 45,122, 93, 1,200, 19, 24,194,136,164,144, 63,169,155, -159,144, 4, 7, 49,138, 73, 42, 39, 76,218, 88,160, 88, 72,139, 79,124, 74, 81,119,232,226,254,198,156,171,225, 84,212,194,103, -157, 3,242, 52,124,101, 13, 59,202,186, 71, 51, 68,240,222, 2,100, 43,210, 97, 12,193,169, 46,190, 26,203,104, 51, 94,210,209, - 66,146, 93,183, 33,163,114, 65, 51, 35,208, 74, 35,192, 48,198,129,217,136, 95,137, 53,123, 58, 82,141,101, 37, 73,231, 51,148, -225,157,149,196, 55, 40, 84,223, 76,255, 69,145, 83,206, 55, 75, 89, 72,114,153, 42, 71,195, 32, 11,122,206, 4,103, 4,137, 50, -122,125,141,102, 18,196, 12,228,152, 97, 33, 42,141,192, 22,135, 57, 97,113,192, 56,243,119,145,214,128,141,103,162,191,191, 41, -197,129,232, 11, 79,237, 19,242,202,205,120,208,238, 84,233,197,231, 25,203, 78,221, 25, 13, 99, 73,121,135,188, 27,225, 54, 9, - 79,174, 8,159, 37,192, 22, 12, 88,242,240,176, 48, 9,125,202,216,166, 1,188,206, 56, 77, 14,143,189,193,194, 10, 31,208,226, -134, 21, 52,205,201, 87, 89, 33, 31,195, 64,224,134,248, 6, 70, 74, 35, 12,101,152, 44, 5,135,210,136,171, 72, 56, 87,251, 89, -203,226, 16, 71,105, 68,164, 14,180,236,113,200, 27,140, 67, 70,104,118,189, 86,127, 71,158, 21, 59,136,219, 91, 37, 4,170,148, -162, 4, 21,148, 92,247, 25,149, 89,136, 22,206,137,113, 77, 72,141,244,140,230, 81,176,173,108,169,104, 98, 83, 78, 48,253, 17, -142,151,140,245,217, 57, 6,150,160,136, 50,112,217,198,168, 38, 53, 70, 55,164,186,244,145, 27,119,236,242,187,136,107,161, 45, -217,237,243,106,198, 66, 34, 68,172, 0, 0, 32, 0, 73, 68, 65, 84,141,135,187, 92, 11,102,190, 6,241,114,221, 69, 81, 77,151, -106, 19,227,102, 90,241,253, 48, 80, 37,240,181,251,255,138, 20,112,158, 61, 92,222, 90,120, 67,216,198,116, 13,102,226, 23, 22, -193,146,177, 76,115, 61,251,204, 53,110,242,186, 39,141, 11,110, 67,118,218, 56, 92,162, 41,239,248, 69,197,243,166,194,254, 50, - 77,250, 13, 91,132, 87, 48,169,161,253,214,238,246,224,150,246,195,125, 21, 23,170,178,162,209,159, 42,187,105,198,175,252, 7, -255, 62, 96, 8,222,119,112,206, 99, 24, 2, 58,223,193, 90,135,225,242, 82, 34, 43,115,210,233, 88,152,199,222, 26,156,159,158, -234, 4, 43,112,170, 76,198,140,139,139, 51, 57, 68,188,199,152,162, 24,204,140, 35,206,207,206, 17,198, 17, 41, 69, 16,201,196, -151, 82, 64, 24, 70,113,115,243, 29,114,138, 2, 41, 51, 11,113, 43, 38,137, 43,165, 98,157,202, 53,214, 87,166, 96,217,235, 23, -169,217, 56, 6,116,125,143,197, 98, 89,179,194, 25, 19,108, 93, 98, 84,131,122,157, 23,118, 58, 50,171,135, 57, 99,185,232,116, -170,142,176,206, 40,178, 75,245, 18,123, 39, 19, 43,106, 84,176,176,201,115,150,223,211,249,165, 72,235, 52,153, 46,198,136, 16, - 3, 14, 87, 75,188,254,240,109,244,139, 21,118,131, 92,135,190,243,218,100,168,145,140,106,235,119, 87, 59, 92,173,207, 97,157, -236,189,193, 50, 29,142, 99,192, 56,238, 64, 44,174,119,222,139,116,175,236,202,167,117,155, 92,159,168,215, 15,234,163,158, 70, - 77,109,203,146,113,159,147,228,123,148, 96, 22, 9,159,145, 45,116,167,254,248,172,205, 71, 74, 89,221,247,196, 41,212,104,231, - 26, 99, 70,103,178, 42, 10, 8,206, 25, 69,251, 12, 56,201,132,205,186, 63,119,162,199, 21, 73,156,183, 72,129, 65, 41,192,194, - 79,195,133, 49,234,245, 81,144,185, 12,239, 13,114,242,200, 49,194, 56,131,172,124, 0, 57,157, 5,181,233,188, 69,102, 7, 70, -170, 78,149,168,140,250,140,206, 2,201,247, 24,135,136, 20, 89, 16, 17, 43,201,128, 60,237,121, 17, 51,129, 18,195,154,164, 92, - 2,131,200, 25,208,255, 54,194,130, 67,198,194, 6, 24,223, 35,193, 32, 37, 96,151, 2, 94, 55, 17,233,161,195, 71,252, 62,242, -199, 1, 38, 61, 2,108,127,243,153,178,239,253,254,133,203,123, 99,116,134,201, 8,109,158, 69, 61,255,199,101,157,126,252,120, - 1, 62, 35,156,102, 73, 84,243,149, 85,100, 65,222,162,243, 25, 71,153, 65,137,177, 99, 49,224,119, 6,232, 40,131,179, 17, 73, - 85,177,169,211, 98,147,234,185,212,228,176,171,141,106,108,118,188,172, 81,171,148, 71,196,209, 32,106,156,106,177,148, 45,178, -186,204, 77,182, 58, 8,100, 59, 44,220, 0, 10, 2,207, 3,242, 33, 6, 50,112,214, 73, 7,152, 18,130, 54, 17,208,236,118,178, - 4,171,114, 11,106, 2, 2, 50,151,137,190,152,208,136, 17,131,181, 70,180,248,152,244,209, 21,146,110, 8,133,104,228, 87,197, - 77, 45, 15,107, 92, 4,209, 93, 82,149, 97,105,164,108,121,111,153,225, 12,193, 48, 35,228,140,108, 38,195,150,216, 88,180, 86, -139, 93, 61,240, 91,185, 97,158,115, 18,235, 52, 95,230,192,180,103, 77, 74,109, 24, 10, 55,179, 34,205,111, 24,158, 21, 35,158, - 28, 20,184, 56, 3, 50,198,113, 0,145,133,243,118,198, 47,200,153,103,210, 57,190, 93,210, 61,175,101,152, 2,107,172,177,234, - 77,157,102,133,214, 26,211,196, 18, 78,218,125, 96,114,224,163, 23,144, 29, 95,229,117,188,146,114,124,223, 22,191,121,206, 94, -220, 20,236,155, 30,223,174, 98,227,253,132,183,219,138, 59, 77,156, 2, 67,132, 71,159,127,142,127,231, 23,127, 17,255,214,159, -250, 83, 24, 67,130,181,190,186,152, 93,174, 47,177, 88, 44, 4,162,141, 65, 10,164, 21,120,157, 7,217,241, 62,125,118,138,139, -171, 45,190,252,254,151, 4,150,205, 66, 10,155,224, 9,198, 56,238,176,185,218, 98,216,238,132, 4,199, 50, 17, 14,105,212,100, - 47, 65,211, 68, 34, 38, 12,108,129,203, 13,152, 28,134, 16,234, 46,148,140,133,133,176,221,173,179, 8, 99,128, 49,162,243,102, - 72, 97, 13, 99,196,209,209, 33, 14, 15, 15,112,118,118, 38,211,179, 78,234, 67,144,172,246,210, 28, 26, 50, 53,201, 48,229,140, - 24,138,182,158,148,236, 40,127,182,222,104,158, 69,214,251, 77,149, 53,137,107,147, 83, 98,140, 1,129,223,129, 17,198, 57,108, -174,182,240, 62, 98,177,232,113,255,222, 61, 28, 30, 29, 99, 80,141,191,119,162,203, 47, 97, 40,226, 27, 47, 38, 45,187, 97,167, -104, 66, 67,210, 77, 73, 19,212,104, 98,203,147,129,211,181,130, 52, 37, 73,174, 93,215,227,252,252, 2,200, 73,178,228,179,160, - 29,169,176,210, 53,129, 46, 51, 99, 12, 73,108,128, 21, 82,146,244, 51, 93,222, 25, 53,203,225, 56,201, 79,173, 22,186, 24, 36, -155,156,128,221, 24, 38,178,177,177, 53, 21,174, 16, 41, 89,209, 1, 88,139, 24, 51,172, 1,156,177,128,117,224, 28,235,121, 91, - 9,175, 6,176, 44, 62, 40,148, 50,156, 35, 36,178, 69,133, 86,221,216,202,153,228, 12,129,201, 34,197,140,156, 0,147, 18,200, - 42,251, 62,101, 49,151,177, 36,245,168,146,248,178, 28,180, 86, 62,183,206, 18, 18, 92,141,158,205, 40, 4,189,168,251,113,141, -221,102,134,119, 25,214,247, 96,242,176,156, 97, 28,192,240,216,129,240, 22, 39,140,111, 56,124, 50,126, 21,248,108, 0,241, 57, - 64,221,139, 75,243, 77,197,248, 85,124,103,168, 13, 79,219, 83,129, 85,185, 13,207,200,211,206,150,138, 0,217, 39,117, 84, 38, -163, 98,241,106,145,145,177,224, 12, 36, 96, 83, 2, 67, 96, 42,147,157,117,239, 27,180,149,136,104, 93,115,116, 39,165, 59,156, -178,219, 29, 27, 66,214,196,109, 39,100,163, 38, 45, 69,130, 2, 11,246, 30, 61, 70,196,200,146,252, 67, 0,120, 64,186,220,225, - 41,140,102, 54, 51, 64, 94, 10, 75,220, 96,179, 73, 72,222,227,200,201,132, 15,226, 58,181, 91,107,225,114, 70,136, 83, 76,106, -226,234, 69, 49, 3, 70,145, 71, 12, 91,158,246,222,152,236, 92, 9, 19,131,158,247, 32,211,210, 95, 34, 39,140, 89,229, 49,152, -199,153, 38, 22,189,229,193,114,137,183,238,244, 56, 52, 25,143,206,214,248,228, 42, 2,198, 84, 37, 64,153,168, 91,200,215,170, - 46,222,233,103, 58,166,172,211,179,102,158,235,238,177, 77,119,203,179, 27, 77, 83,212,120,158,184,150,184, 13,142,189,129, 32, -216,240, 15,178, 58, 73,189,249,230,187, 24,119,151,120,126,118, 14, 82,171, 77, 3,160,211, 93, 93, 72,218,140, 20, 98, 96,179, -219,167, 91,138,189, 76, 89,211,110,189,210,122,202,251,111,230,220,226, 88,151, 42,225,113, 74,247,123, 85, 93, 55,223,212, 89, -220,246,157, 13, 18,112,173,214, 50,223,210, 62,180,168,193, 11, 92,224, 53, 96,227,252,236, 76, 92,196,250, 14,199, 71,199,122, -152,242,220,162,234,134, 99,196, 24,131,199,143, 62,195, 87,190,250, 85,252,151,127,245,175, 97,181, 58,198, 48, 72,238,185, 49, - 6,155,205, 6,219,205, 21,172,147, 60,240,245,250, 10,199, 39,135,176,150, 16, 2, 87,253, 50, 89,139,237,110,131,211,211, 83, -188,118,255,181, 26,226, 65,100, 36, 69, 77,245,210,219,205, 22,163,146,198, 88,139,120,201,247, 46,135, 77,215, 21,127,248, 4, -239, 28,162, 22, 58,178, 18, 65,234, 53,249,141,213, 0,164, 88,165, 10, 89,205, 98, 24,130,238,195, 25,222,137,247,186, 49, 6, - 73,211,189, 82, 76, 85,206,196,202, 24, 79, 81,119,232, 80,216,213, 26,244,125, 87, 33,218,178, 14, 40,247, 87,201,102, 7,237, - 37,231,105,110,123,225,147, 20,214,123, 71,132,152, 12,250,222,227,181,251,247,112,124,114, 7, 49, 68,221,205,219,170, 49,207, - 57,107,160,139, 54,235, 57,227,106,125,169, 4, 54,225, 0, 88, 43,103, 89, 78, 89, 27, 39,101,237,171,197,110, 84,142,129, 49, - 6, 41, 68,140, 26,240, 18, 50, 48,108, 55,147, 20, 57, 37, 4,149,164, 21,255,123, 82,253, 54,212,200, 42,229, 92,147,215, 72, -147, 47,189,181,178, 42,225,172,228,198, 18,159,154, 20,178,151,157,122,239, 45, 64, 14,227, 24,192, 57,194,123, 43, 13,126,226, -218,204,167,196,138,174, 72, 3, 16,217,136,116,204,104,227,164, 97, 55,229, 62,102,229, 80,180, 73,142, 73,246, 48,138,196, 24, -109, 14, 51,144, 19, 50, 24, 99, 2, 40, 69,241,217, 7,129,163,190, 39,206,176, 96,144, 34, 48,202,145, 19, 87, 81,125,182,170, -110, 62, 9, 74,192,100, 96, 25,200, 86, 62,207, 14, 65, 26, 61,146,156,251,164,250, 60, 71, 89, 20, 5,108,240,186, 75, 56,189, -183,192,238,236, 33,236,246,162, 20,154, 23,158, 41, 51, 95, 19,166,151, 20,118,158,147,167,246,148, 53,251,120, 95,203, 84,112, -220,120,153, 27, 22,203, 85, 86,253,119,113,139, 67, 48,216,229, 73,252, 31,152,234,132,152, 10,156,222, 20,141,150,196,149, 49, - 57,129,181,199, 88,141, 13, 45, 44,117,158,152,232, 78,181,241, 1, 64,228, 4, 14,140,145,248,230,137,206, 88,144, 99,152,148, - 17, 83, 70, 90, 30,227, 75,175, 63,192,189, 21,131,207, 62,197, 15, 30, 49, 46,141,146,216,136, 96, 17,145,134,136,168, 69,129, - 56, 33,153, 30,139,222,192,132, 29,118, 81, 58, 87,106,101,111, 84, 17,158,137, 17, 95,156,227,184,101,215, 55,233,182, 90,125, -173, 53,160,220,196,192, 52,118,175,156, 69, 19,249,240,181,187,248,169,215, 87,240, 57,224,193,202,130,126,116,134, 31,110, 83, - 13, 82, 40,123,168,164, 89,199, 86, 81,132,196, 4,103, 0,195,210, 61,151,157, 93,209,166, 38,190, 89,113, 85, 83,187,244,115, -172,132, 61,158,123,163, 23,176, 38,237, 19,223, 10, 9, 47,103, 36, 6,222,123,255,125,156, 63,250, 99, 60,122,252, 12,139,165, -171,205, 1,211, 20, 96,210, 58,186,205, 12,189,136,102, 78,117,197, 56,195,168,107, 79,133,223,185,189,133, 77, 37, 51, 18,243, - 20, 41, 94,120, 18, 53, 95,126, 90, 43,188,108,234,230, 47,226, 19, 51, 83, 78,220, 92,195,111,247,153,162, 91, 95,143, 49, 6, -235,245, 26, 23,231,231,248,153,159,253, 6,190,241,141,111,224,251,223,251, 30,126,239,247,254,190,228,139, 91,115, 43,156, 71, -100,112,126,254, 28,214, 58,252,245,223,250, 45,188,255,254, 87,112,181,222, 2,106, 14, 18,198, 17,151, 23,103, 48,206,226,217, -147, 39,184,184,184,196, 98,185, 64,136,242,108, 76,236,126,174,158,227,231,103,103, 56, 58, 60,196,114,181, 66,136, 81,101, 94, - 59,140, 97,168, 65, 42, 99, 8,216,237, 74,170,154, 65, 66,172,242,167,178,173, 45,105, 91, 89, 95,103,138, 9,189,247,117,138, -143, 49, 41, 81,137,106, 76,173,213,152,209, 97, 28,171,123, 92,167,223,211,242, 26, 88, 27,136,164, 69, 65,208, 84, 22,255, 12, - 69, 14, 11,211,157,148,192, 70,141,196,178,174,207,161,214,178, 78,220,175,140, 18,232,140, 18, 56,203,123,138,137,100, 90, 12, -132,195,131, 21, 78,238,222,213, 70, 87,166,125,209, 83, 43, 36,106,157, 6,250, 0, 32,135,243,231,207,176,190,188, 80,221,124, -153,222, 1,231, 52,252, 69, 29,237,162, 26,244, 8,236,174,197, 47,102, 49,250, 73,161, 42,124, 24,144,166, 45, 6,140,195, 40, -175, 81,101,152,210, 76, 8,163, 27,197, 6, 55,102, 24,147,171,169, 76, 49,152,146, 73,220,212, 98, 46,254, 83,242, 89,120,107, -145,140, 23, 99, 28,171,195, 66,150,230, 40,103,134, 37, 97,150,135, 49,130, 85, 51,206, 24,225,156,240, 30, 56, 99, 22,179, 92, - 38, 87,175,137,106,200,140, 49, 49,210, 48,160,247, 4,104,184, 11,233,121, 98,202,153,130, 12, 54,166,238,241,139,210, 37, 49, -116, 90,135,248,241, 67,229,105, 96,228,152,171, 23,124,181,138,133,200,247,216, 56, 57, 43,147,192,252,178,210,183,136,201,192, -210, 40, 57,238, 73,108,102, 3, 0,111, 2, 6,103, 97,131,195,145, 31,176, 57, 56,132,217, 30,128,248, 10, 32,255, 2,164,111, -239, 79,213, 94,238,197, 11, 65,194,188,110,220, 70,170, 43, 72,165, 34,229,154, 82, 85,138,106, 66, 67,144, 80, 98, 88, 22, 6, -119,214,147, 44,171,118,188,221,212,154,102,186,202, 45,115, 84,111,197, 50, 97, 27, 52, 59,222,234, 3, 47,186,115, 3,150, 46, - 67,137, 2, 54, 51, 6, 16,192, 17, 12,177,104,116, 36,240, 8, 72,254, 44, 29,167,116,184,132,128,180,189,196,101, 7, 28, 88, -130,201,212,120,137, 79,154,230, 9, 50,111, 34, 96, 83, 84,187,211, 41, 80,156,180,200,152, 89, 2,203,196,136,202,237, 68, 89, -220,219,234,129, 37, 33, 53, 57,171,143,122, 51, 17,151, 99, 36, 19, 99,140, 1, 87,137,112,231,206, 49,150,219, 11,108,214, 22, -119,251, 14,103,227,128, 75, 45,128,121, 86,149,166, 84, 55, 64, 30, 2,104, 76,108, 97,136, 23,253,123,210, 41,253,154,121, 78, -227,146,231,116, 39,149, 80,166,254, 41, 28, 38,177,240, 42, 76,205, 69,230, 89,222, 56,233,202,224,159,252,195,255, 27,156, 25, -139,229, 98,118, 51,103,230,198, 27,126,154,208, 95,168, 3, 87, 54,244,162,235, 16, 70,129,131,139,146,101,206,170,159, 98,120, -203,165, 41,235,154,196,121,182, 69,104,221,222, 95,245, 31,254, 2, 9, 74,140,107,106,186,151,124, 63, 53,221, 53, 55, 32, 60, - 87, 98,216,233,233, 41, 82,138,248,175,254,218, 95,199,159,249,197, 63,131, 56,140,248,233, 63,249,211,184, 56,191,192, 63,252, - 71,255, 15, 78, 78, 78,110,217,243, 19, 54,155, 43, 92,156, 95,224,183,190,251, 93,252,219, 63,243,179,184,188,184,132,247, 29, -174,174, 46, 1, 48,118,195, 8,231, 61,174,174,214,248,228,147, 79, 0,164,234,220,182,221,238,112,120,112, 0, 2,107, 24,135, - 64,223, 33, 4, 60,122,244, 8, 95,254,242,251,112,214,226,226,226, 2,231, 23, 23,232,188, 36,132,237,118,131, 36,165,165,140, -126,209, 97, 24,133,220,229,138, 99, 25,178, 66,188, 37, 56, 68,236,142,141,186,151,109,182, 59,196, 20,107, 81,201, 53, 90,153, - 53,129, 44,214,189,187,179, 22,221,162,135,209, 9,222, 57,167,129, 38,185, 78,121,165, 72,113, 74,147, 44,138, 25, 93,231, 84, -135,175,197, 93,155, 1,107,165, 8,151,157,181, 16,187,212,245,172,164,140,129, 96,157,238,130, 65, 74,164, 35,244,157,195,253, -251, 15,164, 8,135,136,174,239,192, 12,140,195,136,190,239,225,189,155, 60,210,147, 88,185, 94,173,215,136, 49,194,251,133, 22, -217, 40, 54,187, 81, 86, 32,229, 53, 80, 81,129,128, 53,181, 45,170, 22, 29, 8, 33,169,103,186,196,186,238, 0,196, 49,192, 89, -201, 29,207,185, 16, 11, 81,247,249,178, 98,136,128, 17,205,191,133, 1, 71, 33,155, 13, 65,127,191, 81, 82,158,179,213,248,201, - 59,167,207,162,198, 63,135, 8, 71, 4,234, 60,134,144,224, 40,195,118, 11,132,216, 74, 4, 75,195,144,116,205,161, 60, 45, 56, -204,198, 7,141,249, 6,137,101,173, 91,116, 18, 37,203, 70, 10, 18, 25, 56,195, 96,178, 50, 32,145, 5,177,196,192, 50,107,113, - 6,193,120, 91, 9,136, 41, 74,129, 54, 98, 37,167, 26,121,163,188, 13, 83,249, 56, 89,237,191,123, 7,192,123,140,153,192, 33, - 74, 0, 17, 34,146, 1,114,210,124, 16,130,168,176, 66,130,227, 4,231, 24,119, 93,198,233, 73,143,116,126, 23, 54,172,111,139, - 93,127,193,190,253, 5,136, 27,115,147,232,246, 10,107, 67,154,106,139,253, 87,190,242,214, 7,187,221, 22, 89,108,125, 5,198, - 64, 22,255,224, 4,153,202, 73,246, 93,166, 45,140,149,149, 45, 69, 43, 53, 83,120,106, 10, 71,241,128, 47, 38, 50, 37,176,164, - 36,193,161, 70,231,201, 5,119,186,111, 78,250,161,103,149,131, 25,106, 2, 42, 52, 24,101,210, 97,139, 91, 28,193,192,228, 17, - 23,151, 23,248,225,227, 75,124,114,101, 0,111,208, 53,123, 70,110,108,105,101, 18, 55, 48, 16,233, 75,228,198,246,175,213,125, - 51,110,152,174,168, 50,237,109, 53,215,129, 42, 4,164,160,197, 25,155,123, 58,208, 43,108,172,208,240,122,179,195,197,102,196, -176,221,226,211,211, 75,252,224,114,196,182,146,214,154,244, 55,211,106,219,155, 93, 77,249, 29, 45,179,127, 79,163, 62,249,195, -243, 12,174,241,214,224,168,147,244,162, 49,139,204,195, 27, 43,201, 91,133,121,218,198,131, 80, 43,245,225,106,202, 82, 14,201, -219,181,151,183,179,221,115,102, 88,231,112,176, 90, 33,134, 17, 41,241, 36, 81, 36,158, 81,240,171,212,178,109, 34,192, 58,165, -209, 36, 7, 97,122,161,203,219,191,200, 63,188, 71,176,191, 93,197,194,104,227,106,230,102,194,211,242,198, 24,131,231,207,159, - 35,197,132,223,249, 59,255, 3,190,253,237, 95,193, 31,253,225, 31,224,159,254,254,239,131,163,236,152,255,249,255,251,207,208, -233,228,115,211,181, 60, 63, 63,199,233,233, 41,126,253, 55,126, 19,223,249,181, 95,195,230,106,139, 24, 3,158, 62,125,132,203, -203, 11,248,174,131, 33,131,211,211,103,248,209,199, 63,172, 13,233,229,197,165, 76,102,106,128, 2,133,189,235,238,159,228,160, - 52,100,176,217, 94,225,244,244,121,101, 23,111,174, 54, 88, 95,110,228,126,114, 14,198, 26,209,176, 55,146, 36, 82,175,240,204, - 89,243, 15, 38,215,177, 24,131, 64,241,229,115, 83, 59, 81,113, 38, 22,104,184, 16,210,138, 25,204, 27,111,188, 1, 34,131,139, -139, 75,157,118, 51,194, 56,168,163,154,209,105, 59, 85, 93, 59, 80,216,236,182, 38,171,145,106,148,203,190,220,168,219, 92, 49, - 79, 49, 80,182,180,162, 82,101,170, 55, 86, 56, 59, 41,101,140,195,128,119,223,125, 11,247, 31, 60, 20, 51,156, 69, 47,106,161, - 6, 78, 47, 70, 69,101, 7, 61,142, 35,206,207,207,133, 72,166, 48,187,115,194,172, 15,234,204, 86,194,102,178,174, 18, 72, 9, - 75, 37,144,101,183, 11, 24,134, 1,195, 48, 32,132, 17,227, 16, 16, 53,168, 37, 55, 59,216,114,109,188, 53,112,222,171,241,138, -174, 55,114, 2,169,209,206, 24,229,223, 13,137, 53, 46, 48,125, 14,165, 32,102, 38, 81, 73, 88,192, 57,175, 50, 88, 8, 15,194, - 24,132, 12,196,113,132,179,164, 42,130, 66,254,181,138,116,202,128, 68,214,128,121, 50,180,169,102, 81, 36,106, 39,231, 29, 74, - 86, 40,179,132,113,149,166,168, 88,211,182,114, 55, 49,169,201,147,127,124,166,105, 77,164,209,176, 12,209,201,151,137,222,112, - 18,149,150,106,231, 25, 4,203,202,114,135, 69,142,178,103,231,106,162,163,201, 40, 37, 50,150, 8,158, 9, 7, 29,176,246, 75, -108,175, 44,204,238, 57, 64,249, 11,201,217,104,246,255,232,166,191,120,185,182,189, 57, 23,251,190,135, 75,186,219, 45,142,103, - 49, 39, 48, 14,144, 14,143,209, 31,157,227,235,219, 45,174,206, 13,126,148, 8,201,202, 52, 87,117,235, 58,137,229,134, 80,197, -179,137,125, 34, 49, 77,235, 77, 70,170,166, 46, 25,148,139,188, 42, 11, 49,163, 36,171,105, 55,218,122, 11,147,254, 46, 41, 52, -197, 26,150,129, 28, 17,213,118,149,201,162,243, 6,222, 83,141,118, 44,214,183,197,158,150,148, 23, 0,154,164, 21,150, 44,184, - 97,202,115, 19,216, 66,101,106,168,230, 47,226, 49,156, 51,171,188,174, 20, 26,205, 71,183, 22, 43, 98, 12, 41, 97,100,106,156, -134,120,198,119,174, 59,243, 56,224, 15,126,248, 25, 62,212,157, 91, 38,192, 21,195,133,162,179, 55,133, 8,168,240,122,221,237, -107, 96,203, 94,177,143, 55,216, 23,184,210,176, 40,218,144, 1,236, 82, 66,239, 44,142,188, 69, 98,221,133,170, 52,165, 51, 50, - 37, 77, 8,195, 4,191,151, 96, 8, 71, 6,198, 42,220,206, 55, 71, 18,210,181,210,118,221,148,134,181, 41,200, 41,226,236,236, -172, 54, 49,188, 15,144, 76,233,173,149,211, 81,212, 2, 69,217, 64, 77, 66, 30, 97,206,124,127, 57, 73,239,213, 2, 85,136,174, -147,229,136, 95,244,253,243,130,222,218,234,112, 3,185,159,159,157, 97, 24, 6,252,221,255,233,127,198,183,190,245, 75,248,223, -255,222,255,134,179,231,207,177,219,238,176,219,109,177, 92, 46,224,106, 42, 89,147,146,149, 25,151,235, 75,172, 47, 47,241,198, -155,111,226, 63,249,205,223,196,159,253,115,127, 14,159,125,250, 41,114,102,108,119, 87,136, 33,224,225,195, 55, 64, 32, 60,121, -242, 24, 31,125,244, 33,214,235, 43, 44, 23, 61, 88, 19,214, 46, 46,214, 56, 60, 58, 20, 4,199, 89,244,189, 64,176,146, 48, 39, -133,238,211,207, 63, 83,135, 51, 43,186,242,113,196, 48,140, 85, 38,229,212,155,188,188,191, 2,183, 59,107,193,150, 17, 67,214, -103,177,200,204,180,113,215,207, 77, 32,245, 92, 11, 56, 17, 9,139, 92,253,231, 65, 4,223, 73, 82, 90,202,210,120, 12,131,164, -184,145,145,192, 9,145,109, 41, 65, 47, 79, 55,142,216,203,102, 37,176,205,253, 12, 50,203,252,232,237, 36,223,141,218,228, 20, - 63,248,154,244, 54, 70, 36,155,209, 57,143, 7,247, 30,224,232,232, 68,156,236,188,171,146,174,229, 98, 1,239,123,108,182, 91, -216,156,209, 47,122,100,149,151, 13,227, 40, 54,172,138, 44, 25, 69,198,172,230,170, 87, 54,125, 8,130,134, 89,135,156, 19, 58, - 47,159, 71, 8, 1,125,103, 96,205, 18,103,103, 82,220,203,222, 62,115,174, 59,244,156, 69,129,195,153,193,150,212,110, 55,213, - 36, 59, 81, 40, 40,163, 61,203,179,110,156, 56,237,201,223,165,106,136, 3,206,210,200, 56, 39,105,154, 96,120,103, 16, 18, 16, -198, 65,180,225,186, 14,180,170, 99,207, 57, 85,253,191, 33, 70, 74,194,174,183, 16, 73,161, 20,123,189, 15, 8,213, 30, 54, 68, - 2, 82, 16, 57, 99, 38, 32, 6,229, 24, 65,220,238,140, 43,211,140,196,182,234,164,152, 88,226, 86,141,145,181,110,210, 96, 43, -178, 6, 99, 52, 64, 10,133,153, 12,216, 12,134,149, 88,241, 20, 69, 73, 0,130,143, 9,157, 51, 24, 59, 15,142,208,192, 24, 32, - 39,128, 88,208, 9,182, 70, 26, 7,202,112, 12, 28,249,140,231,135, 7,192,197, 1,128, 51,160, 97, 79,189,148,108,219,172,158, - 39,163, 15,190, 14,191,191,196, 73,174, 61,227, 92, 33, 33,165,172, 41, 62,234, 42, 20, 23,239,160,123,255, 8,255,106,252, 99, - 44,191, 31,240,247, 78, 25, 79, 50,144,204,158,225, 9,166,112,128, 76,184,129, 4, 52,177,220, 83,139,162,146, 16,219,140,205, - 48, 57,233,158, 62,171, 62,125,223,152,100,254,253, 84, 28,218,102, 12,111,174,147,184,232,187,179,234, 46, 25,201,204,119,224, -220,192,241,212,232,234, 39, 36,163,184,186,113,163, 23, 69,115, 0,101,149,186, 76,251,140, 90,248, 73, 52,182,217,104, 49, 46, -164,181,153, 57,139,190,174, 18,213,106, 8,198,162, 18, 20, 45,164,211,172,122, 88,149,222,129, 74,186,221,244,243,218, 82, 46, - 5,197, 84, 40,166,141, 49,109, 39,201,204,115,136,254,108, 24,177, 84,104, 42,105,176,129, 37,125, 13,220,248,180, 23,255,103, - 42, 57,233, 83, 67, 87,172,110,115,179, 96,166, 27,160,255, 27,121, 31,141,251, 92,217,143, 85, 89, 22, 79,228,184,198, 66,160, -190,150, 54,202, 21,251, 44,241,189,251,167,253,221, 86, 15,104,254,113, 96,119,154,235,212,219,140,250,118,106,102,222,127,199, -188,167, 73,159, 38,244,203,139, 11,140,195,128,223,249,239,255, 14,126,249,151,191,141,255,243, 31,252,125, 92,156,159, 99, 28, - 6,140,195,128,197,178,135,187,146,189, 99,230,140, 48, 4,236,118,219,234,112,247,229, 47,125, 25,255,230,191,251,151,240, 51, -223,248, 57,188,245,214,219,120,252,232,177,184,179,133,128,163,227, 19,188,241,240, 77, 92,174, 47,241,209, 71, 31,226,217,211, - 83, 12,195, 14,227,176,131, 85,210,215,213,213, 6, 87,235,141, 56,188, 45,148,128,166, 19, 91,231, 59,164,152, 20,142, 23, 6, -121, 76, 81,194, 95,148,241,110, 12,129,178, 6,160,104,170, 27,171,215,188, 49, 70, 39, 80, 33,143,133, 16,170, 1, 18, 17,144, - 99,172,207,212,126,227,148,213,116, 37,103, 70, 34, 3, 75, 22,119, 78,142,209, 47, 22,216,238,118,112,206, 97,115,117,133, 49, - 12, 90, 80, 37,163, 59,234,107, 69, 99, 4, 4, 50,240, 94, 2, 78,140, 74,244, 38, 3, 20,145,135,121,239,224,212,124, 37, 41, - 99,219,148, 21,155, 45,142,111,178, 19,122,112,255, 14,126,242, 79,254, 52, 46, 47,215,184,186,186,194,209,201,177, 36,156, 57, - 7, 64,253,211, 85,190, 21,213,243,126,140, 65, 92,251, 20, 5,168,227,174,202,211,172, 33,120,239, 97,172,240, 13, 66, 12,106, -126,227, 42, 10,209, 57,143,160,167,235,201,201, 17,214, 87, 6,235,203, 53,198, 16,228,125,235,100, 95,152,233,153, 25, 20, 38, -185,109,117,210,203,140,108, 13,192, 89,101,119, 14, 41, 71, 69, 30, 53,125,207, 16, 82, 66, 37,159,117, 94,220,216,198,144,100, -135, 78, 14,214, 72, 48, 74, 76,172,207, 21,228, 51,102,150,180, 55, 3, 24, 24, 53,221, 1, 82, 22,249,153,213, 1, 41, 38, 6, - 81, 16,174, 12, 49, 44, 89,192, 73,108,106,103, 25,145, 22,224, 20,164, 17, 51, 94,206,228,204, 19,250, 8,105,136,138,173,117, - 49, 23, 51,152, 76,104,144, 24,222, 49,178,241,224, 36, 68,108, 89,141,138, 46,190,120, 21, 36, 6, 76, 98, 28,216, 4,238,123, - 12,105,137, 52,142,200,113, 4,114,134,177, 89,140,218,116,168, 77, 25, 56,116, 1,110,217, 33,185, 35,216,240,188,234,223,175, - 75,104,233, 86,182, 77,171, 92,249, 34, 12,159,253,191,117,220, 56,163,137,118,219,131,243, 26,230,201, 31,225,210,125, 13,191, -247,213,247,240,103,191,250, 67,252, 2, 71,252, 31,103,192,105, 46, 54,175, 58,189,105,202,140,108, 77,148,173, 73,250, 33,106, -129, 44,102, 39, 70, 18, 3,144, 97,196,212, 70,181,141,100, 50,108,158,178,196, 75,209,173, 49,160,186, 71, 54, 69, 2,167,211, - 51, 50, 11, 81,143, 38, 72,155,181,104, 21,102,155,176, 26,167,224, 21,180,209,160,165,232,233,228, 94,228,109,185,229, 40, 83, - 27,112, 82,188,131,185, 22,208,234, 80,215, 16,181, 74,154, 84, 80, 47,247,153, 43, 93,201,149,215, 41,189,112, 16, 44,230,129, - 30,109,254, 60, 23,111,225,210, 60, 53,108,118,162,121,120, 73,155,238,222,178,242, 39,178,137,190,190, 42,139,147,247,180, 83, -127,104, 48, 16, 19, 35,151, 72, 30, 37, 25,101,245, 92,206,106,196,211, 94,239,155, 10, 90, 37, 67, 18,221,200, 36,231,217,154, - 92, 27,164,162, 55,157, 57, 17,114,237, 1,249,122,123, 90, 97,247,242,159,136, 27, 19, 54,226, 27, 29,229, 12,137, 45,111,204, -121, 38, 25,252,177, 96,120,222, 51,138,153,173, 21, 50,234,160, 8,222,163,201, 53, 19,250,249, 57,214,151,151,248,238,111,255, - 45,124,231, 59,191,138,127,242,143,255, 49, 62,255,236,115,164,152,176,219,237,224,189,199,225,193, 33,158,157,158,226,201,211, -167, 88, 44, 22,120,237,181, 7,120,247,189,247,240,245,175,127, 29,239,188,247, 46,190,254,245, 63,129, 59,119,239,225,249,243, - 83, 60, 63,125, 46,132, 25,231,240,240,225, 67,144,177,248,232,163, 15,241,241, 15, 63,150, 41, 49, 4,120,231,144, 83,198,122, -125,133,113, 28,113,181,190,210,125,239, 40, 7,254,180,164,210,100, 50, 41,230,146,169, 45,205,230,118, 28,148,195,192,115, 66, -156, 78, 93,212, 58, 32, 38,174, 70, 69,214, 8, 3, 29, 36, 17,175,237, 74, 43,229,172, 50, 52,145,110,165, 66,226, 74,250,123, - 45, 97,181,146,100,179,245,229, 26,219,237, 6,153, 27,167,181,204, 13,207,197,192, 48, 16,115,132, 83,139,214, 18, 8, 20,130, - 36,206,137,246, 93, 32,245,152,147, 54, 40, 22, 49, 37, 69,203,166, 32, 19,121,174, 83,157, 68,183,195,136,139,243, 51,185,110, - 41, 33,134, 0, 90, 46, 48,198,136,176, 94,139,231,187, 70,186, 38,141, 41,229,204,240,222,163,239, 59, 12, 59, 65, 2,162, 18, - 13,153, 25,195, 40,228, 66,223, 57,120,103,149, 24, 40, 48,125, 8, 34, 69,204,250,222,198, 56, 86,158, 66,241,169,231,156, 27, - 82,114,210,230, 68, 99, 72,181,168,251, 36,171,156,168,141, 23,145,192,254,206,138, 2, 33,103,209,167,151,168,219,156, 11, 87, - 72, 8,146,198, 90,189, 39, 24,222,103,248, 69,135,148,196, 27, 84,118,234, 89, 10,189,177,147,125, 44, 3,222,137, 36, 45,171, - 35, 94,210,169, 90,120, 10, 19,239,161, 58,191,169, 62, 93,252,254,189,250,195, 51, 56,141,213,235,157,154,179,217, 18,170,182, -221, 56, 70,102, 43, 65, 47, 49,194,155, 12,178, 94,210, 72, 45, 35,103, 11, 98, 33,197,177,174, 7,100, 7, 15,245,231, 55, 32, - 39,150,190, 91,187,192, 14, 14, 54, 92, 33,155, 36,107, 33, 37,101, 50, 24, 75, 34, 28,172, 8,103,203, 99,216,224, 1, 36, 65, - 33, 64,115,228,240,150,226, 92,199,175, 86,122, 92, 76,199,152, 95,121,208, 16, 68,182, 76, 60,121, 74, 15,203,198,129,210, 19, -244, 31, 3,127, 28, 94,199,255,242,230, 18,191,112,116,129,247,214,192,217, 72, 24,141, 28,152, 29, 19,178, 61, 64, 62,138,248, -114,222, 97,184, 50,248, 76, 11, 71,130,234, 50, 75, 1,174, 83,149, 20,247, 12, 3,195, 1, 8,192, 8,101,153,234, 49,226,245, - 48, 76,205, 27, 43,223, 79,229, 24, 47,176, 54, 99,150, 23,206,188, 31,111,215,128,149,156,175,209,166,210, 13,210, 42, 33,208, -180,142,102,123, 59, 96, 42, 68, 65,174, 77,192,172,100, 53, 80,127,129,244, 77,107, 12,170,164,185,122, 35,234,248,233, 0, 4, - 20,118,124,249, 13, 25,177,248, 0,236, 35, 9,141, 70,154,111,152, 54,139, 22,221, 52,210,193, 76,115,246, 54, 55, 35,108,149, -196,228, 41, 73,175, 94,123,158,124,225,139, 79,252, 77,189,167,153,213, 93,170,186,126,190,197,173,173,134,193,240, 30, 7,225, - 70,214,186,252,219, 56, 12, 48,198, 10, 83, 56,243, 13,153,128,252, 66, 98,105,102, 89,141,124, 17,163,153,151,145, 93,152,231, - 58,248, 58, 5,182, 15,108,243,104,147, 78,112, 79,158, 60,129, 49, 6,255,237,223,250,219,248, 15,191,243, 29,252,179,127,250, -251,248,209,143, 62,150, 34,154, 19,142,142,143,209,119, 29,250,229, 2, 39,119,239,224,151,191,253,109,124,245,107, 95,197,251, - 95,249, 10,238,223,127, 13, 7,135, 7,136, 33,224,244,244, 20,223,255,222,247,112,120,120,136, 55,223,122, 27,214, 57,228, 20, -113,126,113,142,239,127,239,123,120,250,228,153, 78,113,140, 24, 3, 82,204,176,206, 96, 55, 12, 32, 48, 22, 93,135, 97, 12, 88, - 95,172,113,231,206, 9,220,137,175,247,144, 53, 6,187, 52,136,115, 28,149, 61,184, 88,163, 66, 39,163, 34,161,178, 58,205,102, -150, 61,184, 81,207,239,130,170,228,156,209, 57, 7, 99,100,221, 67,106, 8,146,153, 65,169,192,178,242,252,142, 33, 86,180, 40, -169,142,217, 58,139,213,106,133, 24, 35,206,206,206, 17,194,168,154, 99,133,148, 99,152, 98,149,115, 97,240, 27,125, 93,164,114, - 42,229,232, 40,123, 30, 90,116,157, 74,160,162, 26,177, 52,148,214, 58,201, 19,137, 36,175,239, 60, 14, 14, 14,113,121,121,137, -126,177,192, 98,209,163,239,123,140,163,152,217,244,253, 66, 83,222,116,157,103,164, 89, 38,200, 62,218, 88,241,234, 12, 49, 86, -130,159,115, 22,153,117, 24, 34,171, 13, 40,106,136, 10,145,232,198, 13, 17,156,247,202,154, 95, 35,140, 81,220,248, 56,195,123, - 11, 34, 95,157,236,228,127, 45,134,113, 4,105,108,237, 46, 69, 56,245,200, 55,214, 86, 70, 74,202, 73,155,126,225, 54, 68, 6, - 56, 8, 12, 94, 92, 59,173, 97,149, 16, 23, 50,159, 28,184, 41,103,121,246,157,171,188,159, 98, 15, 92,211,222, 12, 73, 8,182, - 66,233,130, 86, 64,224,124,154, 8,136, 98, 62, 36,250,122, 78, 12, 99, 2,140,113, 98, 59,155,162,146,142,169,238,213,167, 80, - 46, 61,163, 20,249, 32,102, 88, 79, 72,236,133,207,145,132, 88, 88,199,197,178, 58, 86, 67, 34, 48,195, 91, 65,116, 66, 6, 92, -140,176,150,113,224, 29,188,237, 49, 12, 6, 97, 24, 96, 48,192, 90,201,136,143,108,208,101,198,113,159,112,118,120, 4,190, 56, - 0,241,153, 32, 29,237,250,249, 37,211,246,108, 48, 99,158, 35,153,116, 11,251,189, 1,190,203,119, 57, 24,154,101, 99, 87,190, -176, 91,130,248, 12,199,143,175,240,236,204,226,127,117,132,101,146, 83,219,233, 7,156, 77,135,180, 32,220,115, 9,171, 45,240, - 60, 79,154,225, 92,157,210, 68, 66,224,144, 17,216, 72,124,107, 99, 3, 90,121,213, 76, 96, 99,224, 57,131,204, 2,212, 3,171, -180,197,110, 36, 68, 18,251,192, 74,214,226,185,156,172, 66,182, 74,180,153, 38, 40,154,194,249,120, 98,226,231, 6, 54, 55,164, -146, 8, 18, 29, 57, 25,104,183, 59,185,189,205, 8, 98,170, 22, 32, 42,147,118,153,220, 81,157,217,166, 2, 55,193,245,153, 76, -117,188,171, 59, 85,110,224,113,146,135,165, 3,196, 43,190, 41,155,172, 58,201, 66, 92, 41,205,132, 97,154,208,131,230, 99,206, -237,180, 75, 19,196,157,247,190,174,236,250,185,169,158, 49, 38,181,188,164,122,221,202,205,153,121, 50,208,160,234,165,205,106, -141,203, 55, 42,166,203, 84, 94,156,237,120,111,196,101,204,227, 89,121,223, 96,129,105,190,200,209,105,254,245,135, 15, 17,198, - 1,231,231,151,162, 57,221,119,169, 43, 76,254, 27,122,100,254, 23, 96,187, 95, 3,212,249,213, 52,112, 51, 19, 31, 2,182,155, - 45,158, 62,125,138,247,190,244, 30,254,234,127,253,223,224,155,223,252,211,248,232,195,143,240,233,167,159,162,235, 60,172, 59, - 66,215,221,215, 44,110,241,183,126,243,157,119,240, 87,254,243,255, 2,174,243,184, 56,191,192,243,231,167,248,252,243,207, 42, - 60,109, 8, 56, 62, 57, 65,215,119,184, 56, 63,199, 39, 63,250, 24,159,126,250, 41,206,158,159, 75, 17,183,101, 74,149,224, 17, - 27, 45,152,179,196,141,106,210,215, 48, 12, 56,191,184,196,253,215, 31, 96,185, 88, 97, 12,178, 51,207, 57,171, 51,155,193,168, -204,246,156, 50, 98, 76, 85,181, 64,133,169,158, 18, 82,158, 46, 72, 78, 98, 38, 67,134,208,119, 94,166,193,198, 29,205,123,113, - 53, 11, 49,194,235,225,207, 73,159,169, 36,205, 65, 33,237, 45, 22, 43,248,110,129,207, 31, 61,194,197,229, 57, 56,197, 9,118, -101, 86,253, 49, 1, 81,228,176, 57, 39, 9,154, 41,211,190,181, 32, 6,188,146, 67, 67, 20,184,188, 12, 8,198, 16,156,151,132, - 50, 70,209,139, 79,211, 54,212,221,238,193,253,187, 56, 56, 56,148,130,155,202, 94, 92, 38,236,190, 95,104,162,217,180,170,202, - 90, 56,132, 43, 96,176, 88,244, 18, 73, 27,132, 32, 36, 69, 92, 51,189, 83,130, 9, 65, 98, 94,187, 14, 99, 76, 24,199, 81,166, -236, 78, 18, 51,182,219, 29,134, 97, 39,170, 15, 35,209,184, 57, 5, 57, 71,153,171,212, 75,118,232,192,106,217, 35,132,132,221, -118, 80, 45,187, 32, 3,222, 79,132, 69, 67, 86,157,239, 66, 77,147,139,141, 27,101,136, 65,214,118,157,228,188,167,152, 20, 29, - 73,136, 33,193, 27,134, 81, 41, 28, 85,153,149,144,219,140, 53, 96,182, 66,206,163,178,122,209,117,104,146, 51,142,212,189, 47, -102,249,158, 2, 73,139, 6, 62, 33,151,240,234,134,148, 92,163, 95,181,104, 19,178,124,125, 46,169,112,164, 42, 9, 66,214,180, - 17, 82, 22, 59, 71,109, 16, 24,162, 63, 87, 4, 38,102, 33, 39,178, 97,216,156,225, 29, 99,229, 29,172,237,177,177, 14, 97,107, -129,180, 85,239, 19, 41, 2, 71, 54,193, 29, 44,192,254, 16, 20,207,230,156,183, 90,216,169,193, 89,111,115,184,162, 23,168,220, -111, 41,236,179, 73,157, 12,216,138,225, 78,206,242, 6,173, 58,176, 49, 89,144,137,240, 67,194,217, 72, 56, 51, 66,182, 50, 58, -123,102,162,255,159,181, 55,251,181, 45,203,206,188,190, 49,230,156,107,237,211,220, 62, 34, 35,156,233,180,179,177,211, 85,194, - 77, 53,178, 75, 84,163,234, 44, 11,100,202, 42, 81, 18, 24, 75,118, 89,136, 7, 84, 52,162, 30, 16, 85, 80, 32,195, 59, 15, 8, -241, 7,240,192, 51,255, 3, 20, 69, 21, 66, 84, 1, 46,108,167, 51,237,204,104,110, 19, 17,183, 57,231,236,102,173, 53,155,193, -195, 24,115,174,185,247, 57, 55, 34,178, 32,164, 84,102, 70,196, 61,103, 55,107,173, 49,199, 24,223,247,251,224,228,128, 97,155, -240,241, 76, 77, 34,144,172, 0,177,217,186,236, 76,135, 0, 21, 51,101,211,149,187, 19,197,126,197,184, 10, 0, 87,173, 41,221, -222, 94,159,135,165, 75, 78,235,199,191, 43,241,140, 78,209,216,212, 91,218,104, 13,239, 34, 21, 84, 56,150,213,110, 37,235, 41, -175,180,120, 86,105, 34,181, 82,213,185, 38, 44, 12, 76, 8,164,114,138, 36,235,100,160, 5,144, 28,141,197,143,177, 46,212,121, -192, 21,222, 83,186,160, 20,234, 2, 2,214,157,246,186,127,238, 2, 90,164, 6,208, 24, 99,189,197,148,118,180, 59, 19,241, 53, - 29, 65, 29,134,182, 81,182, 78, 79,158, 60,121, 7,203,180,197,205,126, 86,199, 3,173, 7,180, 82,167, 4,246, 67, 72,186,125, -125,183, 95, 95,251,155, 53, 22, 81, 39, 6, 54, 86,149,117, 44, 45, 77, 44, 66,157,151, 97,189, 48,232, 36, 31, 93, 68, 11,196, -143,255,248,215,241,230,245,103,248,236,179,151, 96, 55, 30, 37,216, 66,243, 60, 50, 0, 0, 32, 0, 73, 68, 65, 84,157,102,191, -127,158,117, 77,228, 71,203, 94,184, 43,150, 93,190,228, 41, 60,165,132,237,118,139,253,126,143, 71,143, 31,227, 95,255, 91,127, - 11,255,198,175,255, 58, 30, 60,124,136,239,126,247,247,145, 98, 66, 24,130, 22,133, 54,177,208,209,119,240, 14, 97, 24,240,252, -147,231,152, 14, 19, 74, 46, 56, 76, 7, 75, 61,171, 86, 49,193, 18,103, 60,123,250, 20,223,255,222,119,241,201,139,207,144, 83, - 54,133,180,237,189, 89,187, 85, 2, 16,211, 98,225, 28,130,195, 52, 89, 34, 23,225,234,205, 21, 82,202, 8,195,160,190,231,101, -209,215,102, 66, 78, 69,146,138, 5,220,232,247, 26,188,238,202,115,169, 62,114,143,185, 20,196,172,244,179, 97, 8,202,215,102, - 77,242, 2, 19,202,162,197,216, 15, 1, 35,208, 96, 51, 82,121,237,246,123, 68, 10,198,113, 3, 16,225,193,195,251, 0, 10, 94, -191,126,173,227,110, 83, 25, 41,101, 85, 71,181, 57, 21, 83,203, 23, 12, 65,245, 1,113,137,144, 0,140,206,131,156, 62,127, 84, -101,141,181,171,180, 20,209,156,244,174,116,220, 49,208, 45,128,165,136,224,193,253, 75, 60,120,240, 16,209, 10,111,245,208, 15, -155, 17,129,214,195,219, 24,130, 42,205, 77,185,175, 80, 25,215,146,223, 0,193,103,159,125,214, 84,234,149,244, 71, 0,246,251, - 3,188, 99,140,155, 77,155,152,228,146,219,253, 26, 83,194, 52, 77,136, 49, 99,127, 56,160, 24,201, 47, 87,152, 76, 93, 77, 21, - 77, 86, 27, 7,157,162,156,157,159,117,122, 3,101,169,123,175,169, 29,217,132,109,110, 8, 72,169,128,160,215,192, 60, 77,106, - 49, 99,135, 34, 9, 78, 28, 98,202, 6,120,241, 88,166,197,248,234, 58,150,167,234, 15, 47,150,237, 14,134,164, 12, 98, 19, 57, - 59,119, 4, 28, 99,189,136,214,120, 92, 75,114, 19,171, 9,181,123,135,148,150,166, 86,121, 33, 41,195,146,248,138,129,106,214, -154,145,161, 65, 44, 92,116, 29, 64,236,244,185,106,158,122,213, 19, 8, 60, 0,136,183,216, 86,155, 56, 48, 35,131,177, 68,189, -167,134,184, 32, 12, 3, 30,142, 1, 83, 56,195,126, 26,145,151, 29,184, 36, 20, 8, 54,142, 48,110,128,253,112, 9,142,149,208, -194,171,124,204, 20,246,248, 18, 93,251,145,102,167, 54, 76,119,192,166,222,182,122,247, 48,243, 64,150,147,116, 43,131,122,100, -168, 50,206,211, 58,138,173,225, 29,156, 39,164, 29,225, 25,160,197,155,148,236, 83,105,114, 68,132,209, 1, 92,236, 64,106, 39, - 44, 6, 16,101,229,173,107,161, 32,164,186,131,206,123, 21, 99,128,143,201, 78,125,167, 71,114,172, 86, 42,181, 8,175,158, 82, - 5, 22,233, 81, 76, 76,148, 35, 29, 61,165, 42,150, 53, 22, 87, 79,139, 37, 21, 20, 14, 8,222, 4,121, 34, 29,132,166,238,150, -244, 11, 11,102,203,209, 68, 53, 5,201,148,218,251,138, 28, 89,223,170,192, 15, 64, 11,166,193,201, 88,182, 90,178,200, 40,121, -124,180, 62,208,159, 23, 54, 35,168,100, 76, 75, 92, 73,113,221,238, 58,219,126,141,187,143,104,205, 0, 33,211, 8, 72, 39, 26, -180,181, 68, 17,189,233, 42, 83,221, 62,167, 92,228,136, 34,183,142,204,235,196, 2, 71,184,211,163,172,244, 30, 46,131,117,215, -217, 11,203,164,155, 16, 53,165, 58, 31,255,158,246,223, 53, 89,139, 8,255,207,239,254,223,154,126, 53,142,205,130,232,236,141, - 38, 41, 45, 35,190,200,219, 11,186,119,181, 72, 37,124, 97,244, 41,125,142, 64, 69,142,197,123, 62, 24,128,199, 30,230, 55, 55, - 55,216,237,182,184,119,121, 15,223,250,246,183,240,179, 63,247,243,248,235,127,253,151,241,173,159,250, 54,222,188,185,198,135, - 31,126, 8, 49,134,249, 56,110,236,103, 12, 24, 55, 35, 0,193,110,191,195, 60,207, 56, 76,123,188,126,253, 26, 47, 63,253, 12, -247, 46,239,235,190,111, 89,154,170,123,158,103,108,111,190,139,105,191,199,171,151,106,141, 75, 41, 91,214,182,121,192, 29,183, -195,209, 56, 12,112,228, 90, 23,152,211,154, 54,118,216, 29, 32,143,244, 0, 21,130,183, 2, 87,176,204,213, 15,110,162, 78,219, -143, 39,123,176,138,101,158, 43,174,180,192, 51, 99, 51,142,134, 56, 53,108,169,117,111, 64, 49,214,249,210,196, 96,165, 36, 83, -173,231, 70,167, 99, 86, 91,216,197,197, 5,158, 60,126,132,235,235, 27,236,182,187,110, 26, 7, 13, 27,129,142,236, 83, 84, 85, - 55,234, 72,190, 78, 50,152,155, 13, 79,140,166, 86, 65, 59, 82,164,173,218,138,169,172, 29, 57, 36,219,117,215, 11,192, 59,198, -163, 71,143, 48,142, 27,139,118,213, 3,192,229,197, 57,200,188,233,234, 93,223, 96, 73, 74,192,171,207, 24,231, 8,131,247, 42, -228,203, 17,142, 61,198,113,196,124, 56,104,113,177,192,152,200,197,168,144,162,154,131,106,241,147,130,121, 90,204, 29, 80,192, -206, 35, 30, 76,196, 69,250,122, 53, 56,202,240,184, 86, 36,131,137,216,114,156, 49,218, 62,127, 89,162,193,122, 24, 49,235,244, - 1, 16, 20, 75, 34,116, 76, 26,197,189, 40,129,144, 73,112,113,190, 49,229,126, 86,157,141, 49, 76,130,119, 42,166, 43,130,224, - 73,137,107,246,179,234,129, 41,102, 2,197,132,209,123,120,231, 16,139,141,236,201,108,104,246,157,144, 89,233,138, 16,138,100, -123,134, 89,232,140,243,246, 76,210,235,178,118,231,176,131, 64,139, 66,181,230,139, 21,166,111,211, 7, 1, 83,108, 43, 23,234, -166,149, 82,109,113,146,213, 82,109, 59,246, 36, 69,239, 75,202,136,217, 35,207, 9,131, 19,156, 13, 12,156,109, 48,225, 18,136, - 91,100,201,112, 34, 56,115, 25,187, 97, 3,236, 6, 64,102, 93, 41,116, 19,199,138,189,253, 66, 22,252,106,223, 63, 22, 22,223, -241,103,239,130, 95,121,201, 25, 57,137,178,211, 21,166,214, 88,226,125, 48, 6, 87,239, 54,173,133,166, 0, 93,228,156,141,192, -136, 33,204,240,204, 24,107,106, 25, 3,222,178,111, 11, 17,188,137,192, 42, 40, 68,160, 31, 96, 33, 86,216, 73,183, 25,117,221, -239,171,158,201, 58,107,168,170,104, 18, 6,156, 67, 64, 82, 76, 96, 55, 42,175,124,155, 98,133,119,237,160, 87, 69,188, 50,223, -173,236, 4,229,252,150,124,188, 75,111,226, 57, 90, 39, 1,142,128, 60,237,240,124, 38, 92, 92,156, 97,112,107, 82,153,156,136, -167,154,218,149,212,118,145, 44,116,197,196,234,109,119,226,236,221, 22, 81, 56,135,208,106,126, 42, 32,132, 48,194,149, 5,243, -178,116,159, 9, 31, 41,209,165, 9, 11,143,191,240, 58, 42,167,154, 47, 92,233,126, 88, 65, 28,175, 94,126, 6,144,131,119,186, -243,100, 59,205,102,139,107,236, 11,153,156,108,139,169, 59,130,172,243,148, 99,122,124, 57, 82,186,203,145,136,176,159,202, 28, -169,220,239, 80,131, 44, 49, 42,151,223,194, 60, 96,107, 11, 66, 63,182,251,252, 46,221, 15, 3, 8,192,110, 23, 13, 82,241, 5, - 39,231,222,130, 34, 39,226,184,142,121, 95, 71,193,175, 95,189,194,188, 44,248,206,119,190,131, 63,253,103,255, 12,126,225, 79, -253,105,124,243, 91,223,194,131, 7, 15,145, 98,196, 15,126,248, 1, 22,219,105, 59,239, 85,140,232, 61,206,206, 54,184,119,239, - 62,174,174,175,240, 71,223,251, 30,222,188,126,141,121,158, 49,205, 19,182, 55,123, 21,207, 57,135,247,126,236,125,157,198,216, - 33,245,176,159,176,221,237,176,187,217, 90, 74, 90,208, 17,108,142,250,128, 47,235,200,178, 20,193, 20, 19,242, 97,106, 29,229, - 60,207, 24,135, 1,165,232, 65, 96,115,182,193,118,187,195,189,139, 11, 12,195,128, 15, 62,248, 8, 49, 69, 85,164,155,175,217, - 89,167, 74,220,126,176,118,234,222, 35, 7,237,110, 29,187, 38, 66, 83,187,155,122,125,139,129, 76, 82, 76, 6, 92,209, 99,222, -188, 36,245, 3, 67, 71,161,126, 80,181,241,187,239,190, 11,231, 3, 62,249,244, 83,219, 21, 83,251, 25,142, 8, 41, 38, 99,254, -235,189,227,189,111, 86, 47, 87,243,216,139, 1, 80,104,141, 57,214,120, 86,110, 19, 24,198,154, 89,225,189,122,215,131,249,189, - 47, 46,206, 49,110,148,170, 71, 38,180, 11,110,104,180, 62,128,177, 44, 73,213,220, 57,173,226, 60,123, 13, 75, 74, 58, 89,177, -157,183,247, 1,201,199, 22,111, 75,108, 32, 41,203,125, 47, 34,237,208, 21, 99, 68,178,200,215,184, 44, 22, 2, 83,144,236,251, - 80, 81,154,174,208,160,193,100, 42,252, 50,143, 54, 51, 99,201, 25, 1,107, 54, 3,179,129,177,236,130,174,223,143,247,220,132, - 91,195,224,144, 11,176,204,179,125,166, 42, 40,203, 66,200, 49, 97, 8, 14,222,143, 88,162,182, 53,228,213, 34, 87,109,191,100, -233,121,197, 44,179,154,240,230,144,138,206, 36, 11, 72, 3,134, 56, 1,126,104, 74,165,156, 11, 88,114,219,253,139, 9, 41,115, -206,150,226, 87,249,254, 98,232, 86,197,239,194,196,133,167, 83, 62,205, 94, 87,184,143,160,122,231,197, 40, 41,210,137,250,168, - 25,166,181, 6, 56,100, 0, 75, 42, 64, 74,216, 56,194,229, 89, 64,226, 51,204,215, 2,151,175,176,145,132,203, 97,192,203,139, -115,200,155,115, 16, 14,183,198,227,234,185,151, 47,203,171,108,172,148, 83,231,206,169, 53,246,244,199,121, 54, 11,136,130, 97, -172,227,145, 85,137,142,206, 70, 38, 21,247, 74,189,245, 10, 77, 57, 79,125, 55, 47,128,176, 52, 2, 81,233,118,187, 73,180,235, - 85, 30, 60, 35, 15, 1,247,134,140, 49,102,188,137,107,222,186,227,186,163,102, 19,215, 85, 59, 86, 89,211,201, 68, 21,244,206, - 57,120,100, 67, 7,174,218,128, 85, 84, 81,236, 33,191, 10,204,214,240, 22,129,164, 45,174,248, 79,226, 47,252,214,175,226,175, - 60,255, 31,240,223,253,143, 47, 49,159,111, 48,122,110,158,207,202,146,116,196,112,105, 65,220,188,135, 95,252, 51,191,128,119, -166,167,248, 95,127,255, 57, 94,206,132,224,216,128, 10,107,210, 84, 63,162,149,206, 7,149, 65, 8, 32, 12, 78,189, 2, 73, 4, -179,237,236,185, 41,239,215,140,118, 64,176,187,185, 54,171,137,107,147, 11,233,124,232,169, 78, 82, 68,144,160, 22,147, 12,165, -194,113,167,142,215,239,153, 86,191,123, 27, 67,186,118, 83, 17,160,116, 44, 75,202, 90,195, 81,214,226, 43,221,252,122,237,198, - 75,163,185, 53, 79,122,167, 77,120, 11, 21,249,232,130,150,211,188,215,238, 2, 22, 11,156, 56,213,143,144,244,167, 89,185,115, - 51,213,171,206,167,195,161,253,239, 31, 73, 28,215, 47,212,229,246,207,189,190,186,194,245,205, 13,126,246,231,126, 22,191,250, -175,253, 13,252,226, 47,253, 57, 60,120,248, 16,135,195, 1,111, 94,191,198, 15, 95,255, 49,166,121, 50,111,190,217,129,146, 62, -232, 30,222,187,135,203,203, 75,252,240, 7, 63,192,255,246,143,255, 9, 62,251,236, 83,165, 99, 89,167, 60, 91,218,217, 60, 29, -176, 44, 11,222,121,231, 9,118,187, 61,130,215, 4,179,195,110,135,237,110,167,216,224, 10,131,178,110,146,160,236,239, 98, 49, -158, 41, 42,191,124, 63, 41,234,117, 24, 60,188, 99,220,108,119, 56, 28,246, 74, 42,115,206, 82,192, 14,198,142, 80, 65,149,142, -217, 29,200, 73,235,248,116,132,173,221, 49, 57,134, 75, 17, 82, 52,100,165,136, 24, 37, 80,108,228,111,150, 32,123, 56,123,207, -109, 77,208,116, 36, 82, 52,134,147,128,135,143, 30,226,201,227,199,120,246,252, 25,166,105,143, 97,112,205,178,149,203,186,203, -175,223,123, 85,237, 87, 75, 89, 8, 94,125,222, 41,219,189,207,134, 63,205,173,128,171, 50,127,165,191,233, 42, 82,137,113,197, - 56,228,247,239,223,215,145,123,138, 90,148,157, 55, 5, 61,112, 56, 76,216,156,109,192,240,170, 96,231,160, 54,169, 28,113,126, -126, 6, 2, 99, 90, 84,216,199,206, 25,228, 69, 47,208,104,182, 64,103, 97, 57, 4,210,239,212,138, 81,138,139, 29, 74,164, 21, -184,221,118,143,101,158,225, 72, 67,176, 42,103,159,201,161, 32,106, 46, 59, 8,211, 28,213,182,102,142,131,122,168,168,169,116, -204, 4,102,253,189, 41, 43, 63, 63, 70, 29,101, 7,199,237,179,136,115,196, 40, 5,112, 65,185, 0,206, 89,226,156,174, 33,121, - 51, 98, 89, 22, 4, 41,112,206,155,195, 64,180,128, 26,175, 96,177,181, 72, 24, 70, 48, 19, 74, 22,144,165,191,197, 4, 4, 74, -154, 10, 90, 3,126, 44, 33, 48, 21, 32,167,168, 66, 57, 18,133, 8, 85,143,149, 84, 59, 90,105,177,170, 21, 26, 70,164,135, 76, -120, 70, 46,164,174,134,172, 12,250,213,254,107,110, 43,155, 78, 48, 52, 84,139,179, 58,179, 96,147, 3, 41,130, 76, 5, 83, 98, -140, 49,226, 94,112,144,203, 13,100, 87,128,178,195,153, 47,240, 99, 64,241,231,160,248,242,136, 46,247,133, 4,185,163,135,140, -124, 81,212,227,250,164, 44,183,131,164,221,159,252,214, 87,127,103, 63,205,109, 22,218,136,113,178, 62,192,233, 14,177, 79,131, -144,116, 74,234,138,238,172, 22,177, 36,107, 26, 25, 42,138,214,246,234,197,134,244,197,124, 83, 52, 56,220,227, 12, 78,130,189, -160, 11, 23,237,122, 56,194,137, 51,187, 27,165,151,132,148, 87,146,221,170, 80, 71, 27,241,151, 58,190, 61,137, 18,213,142,222, -193,177, 32, 93, 61,199,211,143, 94,226,229,100,106,205, 59, 26, 56, 54,161, 71,137, 51,174,203, 25,190,254,157,175,227, 43,249, - 19,252,209,139, 5,228, 25,124,228, 71, 95,105,229,245, 51,228,110,165, 32,246,154,206,236, 36, 59,131,112,127, 12, 24,168, 96, - 50,235, 46, 29,145,220,142,173, 89, 76,188, 90,133,136,142,216,237,167,209, 2, 76,181,136,215,195,206,237, 92,246, 85,184,166, -239, 61,198,108,202,219,117,117,113,148, 6, 78,171, 5,175,238,196,228, 68,253,126, 42,136,171,212,190,158,187,125,235,162,237, -171,231,233, 27,151,147, 8, 83,233,168,103,114,251,152,240,121,144, 25,193,151, 79, 60,238,182, 16,237, 94,233,215, 12, 75,140, -120,246,244, 41,238, 63,120,128,223,252,237,191,141,127,247,239,252,123,248,185, 95,248, 83,120,253,230, 53, 94,188,120,142,235, -235, 55, 72, 49, 98,115,118,142, 16, 6, 12, 65,187,243,253,116,128, 99,198,215,190,250,227,184,188,188,135,239,253,225, 31,224, -127,254,159,254, 33, 94, 60,123,209,226, 54,163, 33, 60, 53,206, 82,145,157,203, 60,235,218, 41,171, 96,105,183,223,219,158, 93, -187,181, 20, 99,195, 6,137,237, 84,146,225, 86, 21,192,162,221,231,188,204, 32, 20,108, 54, 35, 98,202, 56,236, 15,184,119,255, - 62, 30,191,251, 4,113, 94,116,172,191,221, 66, 68,148,237,110, 22,176, 82, 50,150, 37, 90, 97, 94,231, 89,206,105, 2,217, 52, - 45, 54, 41, 40,205, 13,192,102, 23, 82,139, 87, 49,192,140,249,209, 83,205, 80,103, 29,171, 22,133,224,156, 95,156,227, 39,126, -226, 39,113,179,189,193, 39, 47, 62,105,105,125, 57,215, 63, 35, 38,178, 82,120, 81,237, 46,170,167,188, 6,171,140,193,195, 57, - 45,106,104, 98, 93,193,102, 28, 52, 91,157,106, 71,104,138,121,239, 0,210,208,162,105,154,113,239,242, 28, 79,222,121,167, 37, -202, 85, 20,170,179, 61,121,178,117,193, 48, 14, 24,194,208, 18,233,134,160,158,235, 57,170, 21,107, 99,224,156,253,126,210,239, - 72, 76,153,205, 74, 91,139, 81,243,207,153,184, 17,254,106,228, 44,147,134, 64,197, 37,226, 48,169, 88, 14,150,104, 87,161, 61, -170,246,247,214, 37,195, 82,233,248,104,106, 88,241,188,181, 67,119,204, 29,188,169, 50,234,215, 9,165,103,157, 42,136,185, 0, - 80, 10, 70,111,129, 53, 5, 32,232,110, 62,102, 66,142,139,137, 28,139, 1,123,208,214, 2, 85, 56, 28, 60,131,216, 91,146, 90, -229,220,103, 13,125, 33, 52,199, 66,177,125,122,177, 80, 25, 71,164,188, 0,211, 8,233,247,236, 20,178,147,179,226,100,217,163, - 20,227, 75,175, 18,244, 91, 44, 11,221,213,163,166,189, 84, 88, 41,192,164,184,216,156, 43, 31, 85,247,252, 45, 55, 93, 63,167, -115, 22,184,141,195,132,115,248,152,192, 46,225, 74, 2,230,109, 2, 47,175,209, 21,130,227, 71,219,231,227, 39,111, 61, 4,229, - 45,255,132, 90,160,212, 42,192, 30,198, 1,238, 79,124,243,253,223,153,246, 11, 74,177,192, 3, 19,203,245,177,149,133,110,143, -147,123, 19, 81, 31,218,210,228, 61, 69,199,161,165,142,191,161,227,246, 42,148,171,157, 61, 67,192, 57, 97,153, 51,174,213,225, -182,178,214, 79,146,220,142, 11,124, 87, 92, 78,132,113,114,186,143, 48,176, 74, 63,142, 62,198,169, 18,192, 30,129, 14,184,122, -250, 20, 31,222,120, 13,120,161,238, 1,222,125,154,106, 81,103,120, 18, 76, 47,159,225,159,253,243, 31,226,163,157,195,232,185, -137,242,208, 4,110,173, 71, 90,135,213, 93, 49, 35,251, 92,102, 11,204,169, 2, 29,253,172,168,197,217, 74, 7,191, 17,185, 93, -174, 42,248,133,187,223,223,155,169, 86, 80,206, 93, 42,117, 62,222,239, 19,183,131, 91,245,203,183,253,101,199, 24,238,127,203, - 93, 10,242, 91,192, 25,234, 15,138,171,229,175,170, 73,168, 69,158,209,157, 98,144, 91,158,205, 59, 84,110,111, 57, 38,188, 85, -237,254,101, 11,122, 71, 10,238, 86, 80, 10,217,184,185,185,193,203, 87, 47, 1, 1,254,234, 47,255, 53,252,135,255,209,223,197, - 95,254,171,127, 13, 87, 87, 87,248,224,131, 15,212,134,100,201,104,103,155, 11,220,127,112, 31,193, 7,156,157,159,225,226,252, - 2, 62, 4,252,216,251, 95,197,197,229, 37,254,249,239,254, 46,254,209, 63,252, 95,112,245,250, 10,193,188,213,231,231, 27, 11, -251,112,112, 78, 71,234,213,138, 86, 11, 83, 41, 5,243, 52, 25, 67,124, 85,164,247,103,162,250,208,175,145,158, 58,202, 77,237, -158,101,214,206,117,158, 23, 8,128,199,239, 60, 6, 32,154,196, 22,147, 10,211,108,255, 92, 35, 61,171,104, 50, 53, 81,155,104, -176,200,178, 52,151,136, 90,173,130,102,178,103,237,234,151,101,209,177,118,112,173, 59,100,231, 20, 78, 82, 59, 88, 34,140,227, -136,175,126,237,107,136, 49,226,249,139,231, 16,209,131, 68, 49,188,105,177,107, 39,120,237, 6,171,123, 35,120,223, 52, 14,250, - 57, 58, 27,213, 75, 99,128, 83,247,112, 33,227,167,231, 82, 11,172, 51,113, 99,110,132,189,135, 15, 30, 96,220,156, 33, 46,250, -153,141,155,177,165, 21, 58,199, 24, 55, 35,134, 97, 64, 46, 5,211, 50, 43,133,205, 43,242,180, 2,119,168, 19,122, 49,187, 86, -152,213,242,165, 73,108, 57,197,134,220,173,101,184, 82,242, 68, 84,215, 48,205, 51,226, 50,235, 40,222,242,212,235, 33,130, 26, -146,214, 40,127,206,129,236,253,175, 76,121, 90, 25,252,246, 30,106, 72, 19,147, 50,242, 29,123, 75,102, 43, 43,234, 86,180, 75, -174,239,155,161, 7,138,108,121,244,197,196,119,245,122,170,251,242,138,255,101,166,118,159,171,246, 77, 77,197,177, 8,168,164, -246,236,174,171,186,250,125, 84,110, 9,106,144, 75,221,191,219,235,234, 19,231, 42,167,164,119,247,100,155,234,120, 22, 5,219, -128,215,169, 14, 85, 97,159,190, 87,169, 98,185, 86,219, 10,156, 3, 10, 57,141,124, 69,182,228, 55,194, 72, 25, 8, 14, 5, 3, - 54,156,176,245, 14, 55,187, 0,183,123, 13,208,172, 83,135, 59,218,236, 38,160, 38,186,163,253,190,131, 24,123,215, 51,137,112, -156,199, 74,132,113, 24,225, 83, 94, 31,202,212, 0, 48,198,115,175,254, 66,233,125,223,221,222,180, 79, 72,106,126,108,105, 2, - 45,182, 16,130, 66,189,181,168, 14,212,215, 93, 65,245, 92,175,217,230,149, 11, 95,189,166,116, 52, 82, 63, 13, 86, 81,149, 52, -175,202,176, 54,169,165,213, 19, 89, 87,159,165,180,241, 62,186,177, 54, 73, 65,130,195,112,126,129,129,120, 93, 57,128, 86, 12, -108, 7, 18,168,164,169,176, 57,195,163,182,199,238, 60,220,180, 30, 43, 24,171, 71,159,154,202,151, 86,112,141,144,217, 41, 50, -144, 11,118,139,193, 36, 58, 17, 7, 81, 65, 42, 2,103,130, 63,181,154,148,206, 38, 39,134,234,164,182, 31, 63, 74, 44,107, 12, -111, 29, 35, 21,194, 45, 24, 74,253,231,220,204,127,104,136,221, 86,111, 75,133,222, 28,199,165,244,211,131, 35,255,249, 29,197, -148, 78, 15, 23, 93, 97,166,198, 99, 86,251, 35,173,114,125,203,164,198,209,123,209, 67,167,216, 53, 74, 77,115, 33,221, 97,227, - 71,119,160,223,185,222, 82,168,146,237,233,110,182, 91,108,183, 55,120,252,248, 9,126,250,103,190,131,175,127,253, 39,240,231, -255,226, 95,196, 47,254,210, 47,225,112,152,240,253,239,125, 15, 32,193,229,197, 37,198,113,196, 52, 29,144, 54, 9,227,102, 52, -229,177,118,154,247, 46,239,225,222,131, 7, 88,230, 25,255,228, 31,255, 35,252,211,255,253,255,192, 60, 71,220,187,119,105,187, - 71,198, 28,151,246,190,193,132,101,158, 49, 29, 38, 92, 94,156, 67,164, 96,154,167, 54, 58,173,194, 73,145, 2,207, 10, 48,137, - 41,106,204,168, 9,197,106,156, 45, 68,161, 38,211, 60, 25, 20, 69,218,232,252,197,179,231,120,254,241, 83,252,248,215,191,142, -105,154,145,162,218,156,196, 57,196,105, 94,131, 83,108, 53, 21,188,142,238,183,219, 29,166,105, 6, 59,106,226, 58,102,135, 97, - 8,152, 38, 61,136,100, 35,158, 57, 70, 19,216,181, 53,129,237, 93,116, 29, 48,226,201, 59,239, 98,158,103,188,121,243, 26, 69, -106, 40,204,170, 88,103, 6, 98, 44,150, 20, 86,187,118,187, 22, 24, 96, 23, 26,234, 85, 25,239,104,148,200,122, 48, 80, 70,188, - 98, 76,197,160, 57,165,232,133,158,114, 70, 8,132, 7, 15,238,227,226,242, 94,155,116,184,102,125, 83,118,253, 18, 29,198, 81, - 33, 52,234, 52, 96, 21,197,149,130,148,102, 21,228, 85,254, 61,151,102,253, 13, 33,224, 64, 14, 49,205,144,168,135,128, 97, 24, - 86,177,148, 89, 21, 85, 3,160,227,235,121,137,216,239, 15,136,203,220,184,244,197, 32, 64, 68,108, 40, 92,213,218, 20, 1, 22, - 35,252,113,245, 64, 55, 37,182, 30,134,152, 29,230, 88, 71,219,104, 98, 52,231, 28,156,168,144,110, 94,116,221,224,216, 55, 64, - 84,150,130, 37,101,140, 68, 96, 23, 20,149,203,172, 40,217, 18,117,162,144,149, 60,167,130, 60, 61, 4,128,216,210,248, 84,209, -206,206,112,174,214, 20,165, 12,181,155,177,179,107,222,153,144, 15, 71, 29,183, 0, 64, 42,141,176, 89, 76, 48,237, 28, 80,152, - 90,125,169,140,121,117,142, 59,219,109, 23,101, 24, 16, 65,216,105,206,132, 36,253, 92,172, 19,173,186, 41, 61, 28,171,110, 41, - 18, 97, 94, 8, 27, 89,112, 0,161, 28, 4,227,184,197,141, 63, 7,230, 17,247,249,128, 23, 23,231, 40,238, 30,184,220,124,110, -215,208, 79,155, 5,178,250,210, 72,190, 12, 96,246, 24, 89,221,233,178,124, 65, 89,247,222,117,252,126,164,253, 41,182,118, 54, -150,250, 81,194,217,202,117, 7, 52,186, 85,186, 14,155,142, 34, 74,187, 14,154,186,214,151,212, 43, 94,186,176,147,110, 89,222, - 58,145, 30, 48,192, 70,149,235, 5, 85,217, 68, 96,220, 85, 42, 22, 89,139,248, 73,249, 90, 1,111,189, 57, 78, 31,154, 76,114, -228,195,206, 53, 94,245, 4,242, 82, 44, 26,181,249,223,237, 80, 83,101,109, 10,255,239, 99, 89, 86,143,123, 29, 69,185, 10,169, -233,144,149,174,229,168,175,199,165,250, 94, 11,128, 51,199,240,165, 96, 54,122,212, 17,255,223, 62, 87,103, 59,238,227,249,198, - 90,160,165,139,128,109,115,128, 78,117, 73,178,254, 51,177,247, 80,108,175, 78,253,232,162,138,255,122, 37,254, 23, 90,201, 78, -142,163,116, 2,192, 33,185,181,140,170, 5,174, 30,204, 64,167, 34, 53, 58,242,141,211, 91, 92,158,255, 34,144,153,250,135,217, -224, 31, 47, 94, 60,199,123,239,253, 24,254,198,175,253, 26,254,236, 47,254, 34,190,246,181,175,225,145,197,110, 62,127,254, 9, -166,233,128,193,248,228,117,212, 60,110, 54,240, 33,224,250,234, 10,111,174, 94,227,209,131, 71, 32, 38, 92,223, 92, 3, 4,124, -247, 15,254, 0,223,253,189,223, 71,112, 1,231,143, 46,148,195, 95, 18,156,117,115, 53,114, 52,231,130,195, 97,210,157,115, 74, -136, 85, 61, 92, 57,231,230,102,168, 15,102,137,177, 21,184,154,120, 87, 61,219, 68,186,199, 78, 49, 98, 51,110, 80,114, 81, 72, -137,113,247,191,255,221,239,227,225,131,135, 24, 66,192, 60, 77, 42,242, 50, 37,125, 21, 89,229,168, 34, 60,239, 29,118,219, 69, - 71,196, 78,191,163, 10, 86, 57,219,108,116,100,110,135, 91,177,244,182, 58, 85,144,106,143, 3, 35,150,217,212,236, 1,151,247, - 46, 17,211,130,237,205,181,249,198,237,154,116,138, 96, 45,101,133,254, 20,216,120,214,235, 62, 54,155,155,192, 57,223,148,213, - 96, 49, 26,102,109, 47,184,117, 60,108, 56, 66,103,172,243,100, 86,175,205, 56,194, 49,225,236,236, 12,222, 43,131,253,226,226, - 12,165,232, 42,131,201, 25,210, 53,225,234,250, 6,206,123,156,109, 70,156,157,159,105,170,154, 44, 42,134,203, 25,206, 44,118, -169,102,190,219,161, 42,132,128,148,102,139,115, 85, 79,190,179,169,129,118,161,218,205, 46, 49, 97, 89, 52,222,118,153, 38,196, -164, 28,120,117, 33, 16, 50,156,218,190,140,229,142,186, 38,180,231,160,216,148, 64, 15, 76, 3,138,184, 22,155, 27,156, 83, 71, - 82, 73,235, 97, 57, 87, 23,137,114, 3,124, 88, 57,244,193, 51,146, 56,155, 16,136, 6,164,152,150,199, 59, 66, 46,190,137, 7, - 75, 76, 96,174, 26, 28,221, 87, 35, 39,108,198,128, 40, 30, 44, 9,228, 7, 76,115, 65, 73,139, 22, 82,239, 33,164, 59,247, 34, - 58, 61, 40, 96,157, 26,216, 52, 81, 51,219,179, 29,226, 24,206,105, 62,122,177, 67, 98,109,178, 42,110,187,170,218,165,232,207, -112, 22,193, 90,138,249,228,111,237,237, 44,234,214,192, 72,158, 11, 16, 28, 18, 13, 10,230,201, 5,146,236,217,236, 9, 25, 30, - 23, 0,198, 11,193, 50,222, 7, 14,207,127,132, 71, 12,173,207, 52,249, 2,117,252,201,179, 73, 78,160, 91, 62,149,154,176,214, -119,241,116,236,201,237, 44,243,100,194,180, 53, 5, 75,218,104,214,190,255,174,137,150, 99, 30,168,104, 10,220,186,153, 80,193, - 91, 18, 2, 49, 26,206,181,144, 22,238, 85,217,219, 17,187,136, 58, 94, 56,181, 61,123, 85,233,103,208, 49,213,172,138,220,108, - 90, 64, 93,192, 12, 11, 91, 20, 96,105,106,112, 11,139, 90,203, 96,103,127,203, 29, 97,142, 77,189, 46,109,239,212, 97,107,121, -205, 39, 47, 29,242,133,137, 48, 50, 43, 77,138,165,141,228,180, 96,230,150, 28, 7,168, 5,144,218, 92,163,216,180, 67, 15, 11, - 83, 94, 87, 16, 77, 56,102,159,149,216,207, 42, 0,156, 15, 24,153,176, 44,186,227, 98, 58,182,165,245,185,246, 26,241, 88,218, - 85, 82,167, 17,178,158,165,142,166, 53,165, 51,108,223, 85, 40,123,113,220, 49, 15,253,244, 20, 74,199,208,163,110, 74,208, 0, - 53,162, 15,158,251, 15, 30, 64, 74,198,245,245,141,193, 44,186,233, 19, 81,231,125,125, 11, 4,231, 95,160,160, 75,119, 96,202, - 57,225,179,151,159,225, 87,126,229, 95,197,223,249,247,255, 3, 60,126,242, 4, 47, 95,189,196, 52, 77,120,241,233,167, 72, 81, -247,203, 23,231, 23, 42,126, 51,129, 97, 78,218,181,236,247, 91,124,244,241, 71,152,166, 3,150,175, 70,188,247,222,123,184,190, -190,198, 71, 31,126,136, 23,207,158,193,185,128, 48,168,182, 2, 89,199,156,245,251,143, 49,153,151,121, 86,181,184,117,219,113, -209,208, 15,231,188, 33, 78,215,195, 86,206, 73,215, 68,214, 49, 42, 59,130, 49,207, 11, 28, 89,146, 22, 4,227, 48, 0,132,230, -119, 39, 6,194, 56,224,245,171, 87,248,254,247,190,135,239,252,137,239, 32,198,132,233,160,226,188,121, 90,148, 65, 96, 32, 22, -102,194, 52,205,152,166,185,121,134,107,177,200, 37,219,107,212,195, 77,140, 73,239, 85, 59,236, 84,146,101, 50,128,139,250,216, - 5,193, 84,248, 87,111,118,237, 0, 81,239,127, 13, 57, 81, 63,122,177,195,142,178, 15, 4,158,156, 21, 53,157, 16, 84, 11, 31, - 1, 22,173, 90,227, 89,215,213,132,171, 5,161,238,151, 29, 35,219,142,152, 73, 61,246,155,179, 51,164,156,192, 0,158, 60,126, -140, 57, 38, 92,191,121,141,113, 51, 98, 28, 55, 88,102,101,180,143, 33, 40,239,188,141,110, 77,131,195,174,101,206,215, 56, 80, -116,241,173,232, 94,223, 60,207,112,206, 91,119, 15,148,156,218, 20, 35,198,132,253,254, 96, 35,123, 52,144,140,247, 85,171, 80, -119,122,198,127,111,252,134, 90,184,244,125, 47, 77,144,104, 30,124,210,208,157, 4,141,102,117, 4,132, 33, 32, 22,125, 46, 15, -230,151,175,154,157,148, 51,188,115,224, 48,168, 46,160,100,211, 32, 40,154,183, 56,160,164,168, 69,157, 25,185, 36, 21,221,193, - 43,192,135,117,189, 25,156, 83,208,144, 61,255, 98, 18, 8,229,150,216, 38,164, 43, 27,199, 90,164,139, 84,166, 72,105, 40,226, -166, 36,178, 16, 18, 42,221, 90,165, 2,175, 45,225,141, 44, 85,174,142,191, 11, 88, 89,244, 22,243, 92, 17,218,148,235, 62,190, -162,192, 9,169,168,251, 93,197,199,140,156, 4,169, 36, 32, 9,238,157,103,224,252, 18,185, 92, 98, 12,130, 41,108,224,246,193, - 26, 88,254, 82, 5, 90,142,251,178,207, 23,212,201, 91,250,120, 1,188, 38,249, 24,192,193,118,223, 78,122,154,217,233,206,122, - 45,226,250, 33,104, 1, 46, 96, 8, 19,156,245,220,165, 31,221,214,113, 40, 41, 86,176,142,181,115,237,232,105,197,191, 86,220, - 93,127, 80, 97, 58, 38,145, 73,239, 93,111, 88, 86,165,206, 73, 17, 36, 82,228,106, 39, 73,238,114,171, 45, 58,207, 8,112, 93, -136, 83, 19,213, 21,233,166, 12,167, 33, 33,212,117,132,212, 1,109,122,130, 91,111,219,234, 56,212,197, 62,131,156, 35,108, 5, -217,225, 98,215,152, 71, 24, 59,127,221, 8,213,255, 39, 13, 49, 91,100,221,219,107, 36,122,181,253, 29, 43,211,203,145,114,188, - 51, 68,208,177, 45,171, 72, 70, 96,205, 41,142,205,144,134, 14,117,139, 59,144, 63,119, 67, 94,228,132, 41,192,119,140,226, 79, -255,170,222,103,103,133,166,146,236,122, 93,196,126,191,239,146,188, 86,189, 5, 3, 88, 22,197,198, 14,193,119, 72, 98,220,185, - 6,248,145,170,185,172, 26,128, 79, 62,249, 4,127,237,151,127, 5,255,245,127,243,223,226,250,234, 13,190,255, 71,127,216,148, -212,185,168,184,233,226,252, 2,222, 7,236,119, 59, 45,166,169, 96, 89, 18,188, 23,236,118, 59, 21, 54, 1,120,241,236, 25,210, -178,224,250,250, 26,175, 95,189,132, 31, 6,112,210,232, 71, 79, 14, 20,213, 94,180,221,239, 44, 5, 77, 15,129,203,188,180,188, -234,108,150, 38,207, 1,203,162, 97, 30, 67,176, 20,183, 42, 30,100, 21, 54,137,141, 18,139,201,169, 93, 8, 72, 86,124,157,117, -160, 41,229,102,213,130, 0,195, 56,226,195, 15, 62, 68, 41, 5,143,159, 60,193, 60, 45,216,238,182, 74, 18,203, 69, 15,165,182, - 31,142, 49, 90,174,119,208,174, 12, 5, 41,102, 32, 91,106,151,137,157, 32,250,251,136, 9, 34,202, 95, 79,197,166, 47,118, 47, -186,160,132, 55,221,225,211, 10, 83,169,123, 92, 98,120,118,200, 40, 45,184, 36,167,210, 94,119,177, 93,182, 6,183,232,129,231, - 40,225, 15,202, 37,103,251,179, 85,199,161,252,245,130,179,205, 25,136,207,180, 35,158, 15,184,188,252,138,170,176, 45,206,245, -229,171, 87,246, 51,245,126,139, 75,212,216,213, 81,249,228,243,178, 32,140, 67,243,236, 23,123,111, 85,217,158,179,118,174, 42, - 14, 75,166,113,240,166, 55,168,233,114, 11,166, 89, 44, 87,220,196,144, 54, 41, 41, 57, 53, 86,124, 24,124, 43,252,197,246,202, -149,102,149,107,132, 44,243,170,177,104,162, 56,152, 99,160,128, 44, 43,156, 73, 48, 14, 1, 57,123,204,203, 4, 89, 34, 96,246, - 68, 98, 13, 59,129,117,233, 89,106,232, 20, 12,252,163,223,117,125,158, 7, 79, 88, 40,168, 58,223,171,205,185, 88,150,187, 99, - 70, 33,198,146, 50,216, 69,109,168,164, 96,112,132, 50, 12,200,203, 12, 87,244, 64, 10,130, 18,222,114, 2, 59, 91,141,160,103, -175, 83, 91, 48, 83, 93, 57, 56,213,134,192, 38,188,206, 14, 55,176,194,205, 6, 29,171, 24,110,174,171, 25,251,121,108,117, 56, - 23,128,235, 36,192,148,241, 74,170, 75, 0,216, 14, 29,132, 36,192, 18,129,179,180, 96, 24, 6, 92, 12, 14,111,206,206, 32,215, -231,128, 92,129,104, 56,161,188,190,173, 88,203,241, 86,249, 88, 50,255, 5, 20,186,245,207,248, 35, 58, 89,243,140,247,163,209, -219,201, 90,220,209,217, 42,148,133, 13,252,159, 27,219,220, 0, 53,141,154,198, 13, 60, 35,157,170,189,141, 98, 5, 72, 86, 48, - 93, 39,199, 43,157,255,119,253,247,143, 49,167,237,160, 17, 60, 46, 57, 99, 94, 10, 22,225,166, 28,239, 41,103, 98, 52,179, 74, - 81,203, 85, 73,205, 43,252,164, 9,161,228,148,251,222, 69,184, 74,209,216, 85,172,200, 90,190,197, 96,175,135, 22, 67,104, 22, -193,174, 50,146,173,144,115, 35,175, 81,203,165,215,211,189,238,208,114,139, 15, 45, 29,135,110,141, 95, 93,215, 20,189, 7, 92, - 47,184,146, 98,235,240,169,243,176,215,172,100, 38,116, 96, 13,105,177,148,181,226, 23, 40,183,224, 46,161,226,241,116,156,142, -236,117,206, 38, 8,233, 20,209, 42,114, 82, 51,201, 92, 17, 5,155,243, 11, 4,102,108,119,219,149, 0, 88, 15, 68,181,249, 72, -169, 19,242,173,140,117,102,198,183,191,241,117,188,185,186,198, 39,159,190,194,184,217,172,169, 77,119,252,238, 47, 59,114,239, -149,238,135,249,128, 71,143, 31,227, 55,127,235,111, 67,164,224,233,179,143, 21,134, 1,194, 52, 77, 45, 26, 83, 83,213,150, 54, - 74,139,113, 49,181,182,179, 34, 49, 55,117,248,245,213, 85, 83, 98,171,168, 72, 5,104,176, 28,237,253,110,167,126,100,235,166, -230, 57,218,131, 95,119,209,142,244, 97, 27,147, 6,105, 12, 33, 52,155,152,115,238,200,121,192,149,130,152,149, 77, 46, 16, 44, - 81,253,207, 98,170,250,201,192, 50, 67, 80,123, 28, 28,129,201,225,227,143, 62,194,126,191,199, 48,156, 97,158, 22, 77,221,170, -201,102, 73, 11,251, 56, 4, 27,101, 10, 66,208,127,118,144,201,194, 72, 92, 91,251, 56,167, 17,166,243,148,154,155, 66, 74,237, -238, 5,204,106, 17,171, 40, 81,231,188,105, 6,168, 5,162, 84,193, 29, 32, 6, 50, 73, 56, 59,219,232,116,162, 40,203,218,135, - 17,206,113, 27, 73,214,177, 51, 51,129, 72, 11, 58, 19, 3, 92,154, 14,132, 44, 20, 37,155,133,108, 89, 34,206, 54,163, 70,171, - 70, 59,112, 5,143, 37, 38,200,188, 96, 51, 42,126,118,119,216, 35, 56,135, 92,212, 23, 31, 66,104, 96, 27,129,166,224,133, 16, - 32, 49,161,250,105,171, 56,205, 49,195, 7, 15,183, 56, 99, 0,100,123,175,122,237, 68, 75,201, 43, 82, 48,205, 26,188, 83,114, -130,243, 14,211, 60,131,179, 62, 71,196,144,168,149, 41, 66,193,168,109,166,122,175, 76,126, 38,106, 36, 9,239,116, 18,145,179, - 6,245, 40,219,161, 52, 55, 77, 50,132,110, 41, 25,222, 5, 12,158,145,178, 30, 18, 7,239, 0, 23, 48,207, 17, 76, 26,150,146, -114,129, 71, 4,135, 1, 49, 9,114, 92, 12,225,172, 36, 58,201, 25,222,217, 8, 63, 23, 76, 75,193,192, 19,200,143, 16,203, 76, - 15,158,129,226, 33, 98, 7, 23, 35,205,149,148, 49,146,128,252, 96,252,142,210,124,230,197,166,147,206,236,214,100, 60, 19, 97, -130,148, 85, 16, 7,115, 18, 20,203, 80,175, 86,103, 93,189,112,251,121,140, 21,100,198, 86,208,205,255,141,204, 14, 84, 52,150, -186, 66,203,114, 33,108,179, 64,182, 17, 15, 47,175,240,248,226, 62,158, 63,120,132,242,242, 1, 56,189, 81,143,248,151,232, 34, -232,100,242, 73, 54, 41,125,219, 98, 94,238, 40,238, 4,130,167, 62,222,178,137,195,208, 40, 96,108, 39, 23,116,202,118,169,253, -163,141,187, 11, 17,194, 17, 34,100,245,166,175, 27,252, 53,144,165,138,224, 88,128, 62,246,130,164, 19,203,153,207,186,174,109, -235, 16,155,155,146,252,196,196, 44, 25, 49, 2,251, 64, 24, 44, 32,185,212, 78, 86,122,129,221,218, 73, 82,167,156,151,126,206, -220,173, 24,212,111,207,183,186,115, 84,202, 83,219,189,168, 90,189,242,224,235,141, 83, 10,153, 39, 82,218, 77,213, 16,170,245, -107,144,154, 52,182,202, 16,179,121,242, 65,134,237,181,215, 80, 11, 85,145,110, 53,129, 78, 56, 98,194,198, 42, 36, 59,133,233, -178,141,206,139, 20,205, 58,174,254,242, 58, 53, 56, 17, 95,228,163,232, 89, 28,241,227,235,170,160, 14,238,251, 75,215,217, 58, - 32,153,213,141, 79,199,217, 85, 99, 97,223,149, 62,220, 92,219,209,247, 5, 29, 39,130,186,118,184,176,189,127,201, 25, 75,204, -248,214, 55,190,129,135, 15, 30,226,163,167,207,144,114,178,149,194, 23,143,221,223,118,110,238,127,247,246,230, 6,127,254, 47, -254,101,139, 53,125, 1,239, 60,102,153, 91, 46,118, 8, 3, 94,125,246, 9, 98,202,120,255,253,175,218,131, 64, 16,134, 0,159, - 29, 14,135, 3,174,174, 94, 99,137, 17, 50, 45, 16, 20, 44, 75,180,213,136, 22,115,178, 7,126,140, 9,243, 50,163,216,206, 57, -101, 85,124,107,156,165, 62,100, 82,212, 81,240,102, 51,106, 12,106, 39, 10,148, 34,128, 19,139,235, 20,176,217,131, 10,218,180, - 3, 0, 0, 32, 0, 73, 68, 65, 84,234, 62,156, 57, 96,178,130,206, 76, 6,242,209, 11,188, 22,244,100,105,100, 62, 56, 20, 38, -124,250,233,103,240,206, 99,179, 57,131, 15,174,105,111,152,200, 58,111,182,200, 82,193,126,191,199, 60,107,130,216, 48, 4,221, -237, 23,117, 21,195, 25,166,150,149,235, 94,191,214,154, 29, 62,142, 22, 8, 66, 48,222,195,122, 40, 22, 43, 94,165,148, 54,119, -139, 49,129,152,109,132,173, 99,249, 58,118, 23,209,247,238,205,195, 31, 83,194, 16,130, 81,236, 52, 91,187,174,132,152, 86,235, - 87,253, 78,152,128,135, 15, 31,129,109,149, 82, 67, 86, 80,185,245,118,218,116,172,216,215,205, 56, 52,155, 86, 74,169,209,242, - 6, 79,240,126,163,157,241,162,235,141, 97,112, 42, 32,131, 32,120, 21,243, 5, 31,112,176,232, 84,213,252,233,247,144,243,140, -221,126,143,155,235, 27, 76,243,161,233, 24, 28,171,182,192, 49, 43,194,182, 19,171,162,238,210, 77, 52, 89,151,146, 58,225,145, -198, 46, 96, 19, 14,214, 3,114,202, 51, 24,192, 16, 2, 98, 18,212, 5, 34, 76,244, 92,239,207,195,188, 96, 12, 14,227, 16, 32, -153,173,248, 82,235,252,171, 98,129,157,195,180,100,164,101,182,162, 56, 52, 42, 94,140, 25, 68, 25, 27,239, 81,200, 41,178,202, -246,221, 53, 8,172, 70,244,178, 99,100,114,160, 84, 26, 5,174,213,149, 6, 76, 83, 13, 64,229,172, 87, 56,153,173,206, 1,147, -202,213,186, 68,166,205,201,202, 6,182, 24, 86,103, 84, 58,229,168,144,115,107,156,116,187,191, 84, 1, 15,242,112,208,216,236, - 76,140, 93, 6,252, 46,227, 62, 95,227,236, 94,192,110,243, 24,110,251,113,107,162, 62,255, 89, 68, 56,113,105,183,245,234,221, - 45,249,219, 33, 28,126, 53, 39,173,125,152,180, 2, 80, 71,184,212,110, 40,119, 20, 32, 82,149,117,132, 76, 43, 99, 93, 11, 81, - 65, 17, 94,211,116,108,180,158, 76, 10,199, 77,200,117, 28, 23, 90, 81,167,183,181,109,210,236,117,232,252,210,235,207, 1,184, - 36,204, 19, 97, 38, 52,110,121, 5,252,131, 84,221, 47,160,163,124,116, 24,109,142,251,254,177,178,208, 69,247,119, 36, 93, 44, -107, 85,218,247,197, 64,164,209,226,216,240,142, 5,171,119,176,228,212, 56,242,125,164, 42, 80, 85,232,117, 91,190,114,217,148, - 61,207,141, 58,199,213, 78, 86,145,138, 56, 78, 74,235, 22,199,186,199, 41,132,163,153,227,137, 92,146,204, 46,210,139, 52, 58, -244,220, 58, 77,225, 14, 28,115, 82,232,164, 15,187,169,190, 81, 59,120, 20, 8, 2, 49, 60,160,248, 92, 19,118,121,239,143, 99, -227,160,226,164,195,246, 6, 59,232, 94,175, 38,115,209, 91,198,251,107,225,215, 99,144,119, 14, 63,248,224, 67,188,124,115,141, -239,124,235, 27,120,112,239, 26, 47, 94,190, 70, 8,252,185, 5,157,190,128, 15,223,207, 21, 74, 41,120,242,228, 49,174,175,174, -176, 63,236, 48,140,193, 2,110,212,130,248,236,233,199, 56, 76, 7,124,227, 27,223,196, 48,142,152,230, 3,166,195, 1,135,195, - 30,251,253, 14,251,221, 30,187,221, 94, 65, 35, 81,139,121,140,139, 22,219, 37,226, 48,205, 77, 45, 62,207,150, 81, 78,140,195, - 60,181, 44,238, 90,120,171, 45, 77, 80,204,246,163,221, 93,202, 74, 70,171,157, 69,178,206,150, 69, 17,173,165,148, 22,155,169, -255, 60,129,202,138,119,170,190,232, 37,198,245, 90, 50,145,108,221,203,239, 15, 59,240,172, 5,136,109, 26, 16,227,130,152, 8, -165, 76, 32, 84, 69,123, 70, 24,130,170,177,151,108,163, 90,177,215,153,209,130, 53, 22,141,122, 69,135, 54,141, 41, 91,200,139, - 94, 7, 33,216, 46,188,117,243,122, 47, 20,139, 51,245, 76,170, 19,240, 30,231,103,103, 77, 24, 22,140,237, 94,121,245,108,180, -176,148,179,161, 79, 87,199, 12, 49, 55,175,182,179,213,198,217,249, 25, 46, 47, 47, 45,158, 84,177,166,136,201, 96, 57,206,252, -249, 10,182,217,108, 70,125, 54, 24,251,158,237, 64,226,172,136,234,184, 28, 96,167,186,129,105,158, 27,101, 77, 68, 20,140, 99, - 66,212,156,197, 14,165,250,218,247,251, 29,174,222,220, 96,119,115,163,107, 18,123, 47,181,179,171, 97, 57, 57, 11, 42, 50,143, -186,216,220,170,222,214,105, 97,105, 41,111,203,188, 32, 75,174, 67, 75,180, 95,104,122, 11,129, 52, 11,226,180,164, 6,193, 10, -222, 1, 24, 48, 47, 51,206,153, 64,110, 48, 33, 43, 33,103,106,222,115, 48,225, 48, 39,164,168, 89,228, 73, 8, 89,162, 77,101, - 84, 35,144, 88,215, 21, 34, 12,205,236,241,109, 18, 9,155, 60, 56, 2,200, 57, 21, 44,215, 80, 41, 75, 20, 37,177,157,185, 57, -122, 80,242,250, 76,227, 21, 50, 68,235,220,189,205,137,217,113, 27,253,215,103, 42, 75,110,130, 66,234, 96, 49,250, 89, 23,165, -151,114, 65, 6,195, 21, 81,192,154, 40,107,193, 49,225,166,120, 92,236, 50,238,243, 27,220,156,159, 1, 55,231,128,220, 64,104, -232,224, 88,119,236,203,169, 83, 42,223,234, 56,232,238,241,251, 91, 88, 53, 53,112,173, 25,201,214,156,108, 90,199,199, 94,227, - 80, 89, 8,177,235,232,114,135,170, 75,178,142,214,185, 51,191, 53,224, 30,161, 21,225,106, 23, 40,178,198,156,172,246,174, 42, -243, 94, 13,238,165,143, 63,149, 90,164, 13,142, 96,223, 85, 21,192,113,119,232,112,189,183, 89,122,235, 0,110, 49,229,251, 92, -212,220,197,149,182,195, 4,250,221,127,223,209,210,145,186,189,130,117, 20,131,217,241, 83, 68,142, 51,196,233,132,103, 79, 56, - 37,253,130, 69,142,252,229,100,197,177, 28,209,211,214,207,125,125,232,211,209,251, 65,221, 67, 1, 71,246, 15, 2,142,242,123, -143, 44, 22,157, 74,146,238,184,166,228, 14, 17,218,113,194, 26, 33,218, 7,160,233, 85, 3, 30, 61,124,132,237,205,149,142,249, -169,215,103,232, 13,236,112, 42,186,187, 29,186, 90, 57,173, 45,114, 86,244,251, 26, 55, 27,136, 20,252,193,247,190,143, 37,234, -184,243, 75,139,224,222,242,247,122,104,156, 15, 1, 31,127,244, 17,118,187, 45, 54,231, 27,196,152,224, 93,192,230,114,131,253, -110,135, 16, 2, 46, 46, 47, 17, 83,194,171,143, 63,196, 52, 79,152, 15, 19,182,187,109,219,155,214, 34, 52,207, 19,166,195,164, - 52, 52,139,197, 76, 41, 34, 67,247,200,185, 84,175,185, 88, 68, 40,161, 44,121,245, 82,155, 56, 76,105,101, 89,167, 87, 54, 94, -149,234,141, 46, 64,204, 26,155,169,251,233,100,227,111,110,175,163,142, 75,184, 22, 6,183, 2, 74,156, 87, 47,115,182,215,209, -148,192,185,192, 3,200, 37, 34,217,232,157, 44, 35, 32,219,138,200, 7, 15,111,233,114,234, 24, 72,237,193,218, 48,159, 38, 26, - 91,230,185,117,144,236,212,250, 54, 12,131,249,156, 93,139,139, 85, 17,157, 22,174,186, 59,206, 57,155,134, 64,199,250,193, 59, -219,185,147,142,240,153, 91, 42,152,118,235,107,246, 64,141, 86,109,239,173,118,181, 45, 72,166,224,241,163, 71, 24,198, 17,100, -171,169,246,104,146,181,195,175, 30,234,154, 90, 23,130,199,224, 7,221, 69, 27,126, 55,198,136,156, 76,215,192, 58, 13, 32,169, - 9,103,197, 8,140,102, 39,117, 12, 74, 70,132,172, 81,185, 49,227,102,187,195, 50, 77,205, 66, 72, 78,204,162,199, 13, 6,195, - 84,197,202,170,223,105,254,110, 91,189, 52, 46, 70,209, 9, 64,229, 22,212, 67, 74,105,242, 61,110,172, 0,174,162,178, 26, 22, -195, 4, 36,194,217,232, 17,195, 57, 82,138,240,172,168,218,146, 34, 6, 79, 72,228,176, 28,102, 29,161,103, 81, 17,222, 24,144, -197, 38, 76,166, 86,215,179,187, 30,226,152, 84,216,168,255,205,171, 16,186,136, 38,105,146,131, 43,130,130,122,152, 90,153, 11, -212,220, 49,132, 66,202, 43, 32, 42,104, 9, 27,166, 37, 17,211,110, 48, 74,115,244, 16,178, 69,196,186,149,181,210, 38,133, 90, -240, 87,206, 7,175,224, 24,169,177,173,128, 80,177,122,163,247,243, 82, 28, 30, 32,227,147, 75,143,252,250, 49, 92,188, 6,156, -172, 97, 98,132,219,193,213,114,187,149,160, 35,238, 10, 29,173,117,235,100,251, 46,189,144,175,175,216,209,186, 7,175, 39, 3, - 1,161,176,146,214,130, 46, 73, 49, 23,171,183,116,250,195, 10,164, 48, 10,173,163,238, 22,103,216,205, 90,185,195,113,137, 53, -148,220, 6, 5,210,198,209, 77,216,102, 93,180,116,209,161, 90, 52, 24, 27, 79, 8, 82,176, 20,157, 20, 52,240, 74, 23,155,154, -251, 9,132,116, 60,224, 58, 74,233,126,254, 10,178,169,251,244,117, 95, 13, 19,147, 84,191, 98, 43,168, 77,148,213,137,238,236, -162,225, 38,236,113, 96, 35, 83,233,239, 59, 1,166,212, 88,217,238, 80, 34, 93, 1,150, 2,245,182, 10, 53,161,156, 28,209, 80, -112, 11,196, 35, 29,133,143,106,103, 87,199,213,189,157,205,216,207,171,176,111,133,224,208,201,174,156,190,196,248,186,118, 15, -149, 91, 79,166,209, 96,246,184, 56, 63,199,246,230,141,238, 27,153, 45, 63, 96,141,145,173, 88,220, 83,244,140,220, 18,213,169, -199,129,187, 34, 4, 3,193, 28,101,178,139,124, 97, 71, 46,111, 27,130,117, 39, 48,133,153, 4,252, 95,255,231, 63,195,203, 87, - 47,241, 51, 95,249, 25, 92,223,220,192,251,128,171,215,175,177,223, 31,240,240,225, 35,248, 65,173, 95,243,162,251,114, 29, 19, -235,245, 51, 79,179,238,197,167, 5,113,137, 74, 98, 43,217, 80,153, 5, 57,166,230,195,175,251,227,250,157,196, 37,154,230, 66, -187,197, 98,170,223, 26,195, 75,206,117, 86, 69,152,221, 42,183,125, 92,125,128, 3,192,178,168, 24,110,240, 65,113,167, 86,236, -171,119,123, 37, 1, 42,213, 77,138,104, 64, 78,101,218, 23,129, 31,212,198, 21,115,210,244,179,150, 17,128, 6,249,224, 22,118, - 4, 44, 75,108, 93,105, 85,200,167, 92,244,225, 11,181, 47,169,248,177, 96,179,217,224,226,252, 2,251,195,190,141,248,171,248, -171,170,234,235,249, 55,120,223, 38, 8,218,145,122, 37,195, 57,115,103,228, 26,171,170, 98,185, 92,178,217,180,164, 1, 81,156, -115, 93,132,172, 52, 44,238,253,203, 11,140,155, 51,213, 32, 56,205, 66,112, 33, 40, 34, 55,174,150, 62, 54, 46,185, 42,208,125, - 11, 9, 74, 49, 99,246,241,136,201, 78, 96, 27,113, 47, 77,180, 70,208,245,128, 38,175,173, 65, 46, 26, 22, 83,144,162, 90,229, -226, 60,129,108,255, 93,167, 48,206, 14, 24, 41,107, 8,143, 99,194, 48, 4, 45,188, 89,154,159,156,137, 17, 75, 65,201,169, 57, -100,196, 14, 33, 98, 89,241, 26,136,228,145, 69,113,181,101, 37, 70,161,148,130,179, 49, 32,130, 49,239, 15,154, 57,110, 45,218, -180, 36,140, 37,130,252,166, 53, 63,203,146,116,239,207, 0, 7,135,146,109, 66,192, 14,155, 49, 88,180,105, 1, 28, 52, 55,192, -210, 41,149, 22,199, 32,225, 22, 16, 67,102,169,173, 7,178,152, 11,144, 19,188, 3,152,189,137,177,117,157, 83,245, 18, 25,170, -211, 16,219,143, 55, 97,181,152,237, 83,178, 9,210, 5,142, 10,200,208,192,109,189, 87, 12,137,222,188,255, 38, 32,183, 53,104, - 1,175, 60, 5, 1,156,117,247, 66, 74,137, 47,236,112, 73,140,247,238, 39,124,252,248, 93,240,139, 43, 80,121, 3,240, 96, 74, -124,224, 40,130, 85, 62,127, 17,120,244,119,155,227,137,222,138,147,245,149,193,158,140,247,222, 3,227,129, 2,151, 11, 74, 2, -174,172,195,230, 46,221,162,118,215, 77,252,102,123,242,100, 93,163,147, 21, 39,203, 71, 2,178, 85,148, 71, 93, 49,151,142,179, - 38, 36,232, 2, 85, 87,117,183, 93,164,131, 99,108, 88,192,133,176, 80,181,147,113, 19,159,137,117,204,237,193, 44,235,136, 89, -250,201, 65, 35,166,173, 69,156,152, 26, 98,246, 86, 49,179, 7,105,233,109,124,182,173,105, 10,127, 84,161,153,237, 82,234, 40, -159, 78,216,233, 93,200, 9,117, 59,235,190,232, 23, 27, 47,113,161, 38,248,105, 71, 30,145,246,126,155, 23, 83, 4,241,136,186, - 70, 77, 43, 81,234,106, 3, 45,123,163,121,116,235, 33,167,224,120, 69, 65,221, 94,135,186, 3, 71,175,110, 47, 39, 2,184,222, - 11,153, 69,195, 74,226,124,192, 7, 31,125,160, 1, 31, 22,114, 65, 16,120,182, 83,111, 27,185,203,109,108,109, 55, 98, 18, 8, -158, 60,121, 7,243,116,192,118,183, 55,242,151, 28,189, 93, 62,121, 77, 95, 94,240,190, 18,248,234, 20,128,136,177,219,237,112, -117,117,133,223,248,173,223,194,215,127,226,235,120,241,226, 57,156,243,120,254,244, 41,158, 63,123,134,155,237, 13,216, 57,220, -191,127, 31,143, 30, 61,198,227, 71, 79, 48, 12, 35, 94,188,120,142,156, 34,110,174,111, 0, 8,150,105,193,213,213, 21,226,162, -129, 60, 53,208,131,105,221,255, 85, 98,215, 48, 12,234, 1, 78, 73, 15,101, 44, 88, 22, 13,207, 80, 33,150,180, 16,148,156, 74, -203, 47, 39,195,213, 50, 59,140,222, 91,162, 85,110,251, 89, 17, 24,112,196, 14,156, 76, 71,239, 62,165,220, 38, 66, 68,100,135, - 98,187,175, 5, 24, 70,125, 0,198, 57, 53,107, 89, 76,186,218, 34, 2, 74, 74,152,226,210,224, 46,171, 56,179,168, 0, 45,229, -214,145,170,245,204, 30, 68,214,217,199,148,177,223, 31,154,133,176, 20,131,185, 88,113, 41, 38,230,244,222,169,242,187, 78, 82, -124, 80, 68,166, 91,179,203,235,164, 80,201,104,134,149,173, 83, 14, 11,158,241,222, 70,229,194, 13, 16,227, 8,120,248,240, 1, - 66, 8, 90, 68, 69,112,126,121,137,205,230, 12,219,221, 22,251, 69,215, 38, 69, 68, 35, 74,153,245,254, 42,130, 24, 51, 54, 27, - 21, 48,238,247, 7,189,222,141,237, 95,108,212, 93, 59, 75,103,158,239,113,244, 24,199, 51,236,182,123,157,168,160, 96, 8, 1, -251,152,241,242,213, 27,108,175,175, 20,142, 85,187,122, 83,145,107,132, 45,175, 24,103,104, 90,159, 64, 3,114,156, 81,241,164, - 75,205, 76, 45,145,173,174,190,140,173,158, 10,152,114, 59, 4,128,169,173, 12,218,157, 33,192, 16,116,210, 16, 83,105,105,123, -158, 25, 20, 60,230, 24, 17,167,104, 22,219, 26, 23,171,197, 84, 72,179, 6,198,193,195,251,128,121,137, 40, 37, 41, 22,214,212, -248,148, 18,156, 77, 21, 68, 86,237, 69,197,119, 45,169,192, 73,130, 31, 44, 12, 38,119,228, 58,118,141,207, 95,243, 62, 80,138, - 37,201, 85,186, 39,175,162,107,170,150, 54,103,129, 54,150,124, 87,185, 28,198,203, 40,194,112, 80, 30, 1,200,153,130, 95,192, -146, 76,209,175,207, 71,207,197, 94,131,117,240, 89,240, 21, 46,184,121,103,192,205,254,107, 8,215,123,128,179, 78, 15,142, 84, -251,119, 44,199,223,210,125,172,246,218,218,108,174, 44,149,227, 78,189,168,116, 63,183,241,174, 62,108, 29,170,127, 93,193, 6, -174,249,192, 59, 58,167,117, 7,165,103,194, 19,180,171,111, 66, 57, 75,236,146,245,100, 33,189,224,138, 86,207, 58,132,187, 49, -244, 74,117,235, 19,227,170, 8, 44,231,132,109,150,102,195,131,229,188, 55, 63,121,237,207,237, 4,230,148,240,130,212, 94, 7, -117,234, 65,233, 88,237, 54,146,100,214, 27, 73,212, 26,194,221, 8,164,113,228,143, 50,191, 45, 26,213, 5,156,147, 96,151, 50, -210,209,120,125,157, 30, 72, 39, 40, 20, 88,136,131,197,159,138,168,131,128, 13,223,166, 42,228,128,179,179, 17,203,180,195,156, - 10, 60,147,237,216,233,104, 60, 95,186, 53, 2,183, 14,124, 93,167,112,157,200,180,207,180, 64, 10,233,169,213,124,172,149,178, - 69, 77, 28, 40, 71,135,185,211, 67,142,220,198,250,172, 15, 18, 57, 70,187, 58,226, 99,142, 59,225,142,208,150,187,241,176,245, -226,165, 14,115, 41,119, 12,159,232,142,130,126,170, 7,120,155, 40,206, 89, 72, 78,110,147, 10,198,171, 87,175, 16,151, 25,191, -249,219,191,141,127,243, 55,126, 3, 31,127,248, 1,174,174,222, 96,158,103,188,120,241, 9,102, 83,187, 59,239,112,216,239,241, -236,233,199, 8, 97, 64,240,186,115,156,109, 39,126,115,179,195,110,187,195,178, 76,102,165, 42, 96, 10, 22, 92, 66,141,241, 78, -188,166,244,197,148, 0, 75, 41, 75,211,172,142, 8,219,247, 58, 54,192,136, 61,152,149,190,104, 29, 53,173,120,225,186,243,207, - 69,239,141,113, 8,240,206, 97,154,181, 91, 28,131, 71, 46, 2,246,150,150, 86, 63, 91, 67,170, 66, 74, 91,139, 16,137,134, 6, -165,172,164, 48,169,170, 96,237,178,115,197,137, 22,237,170, 83,155, 54, 24,243,221, 82,204,152,107, 60,107, 2,123,135,251,247, -238,225,226,226,162,117,210,185, 36, 19, 82, 69, 37,125, 17, 33,166, 12, 17, 27,149, 90,103, 86, 67, 67,166,195,140,159,248,201, -159, 4, 17,176,189,185,134,243,222, 34, 61, 53,114,180, 72,180, 2, 97, 62,248, 26,164,227,156,253, 44,110,221,123, 92,102,156, -159,109,112,121,239,158, 66, 89,188,199,197,229, 37,198,113, 3, 31, 92,251,243,213,163,239,199,161, 21, 48,103, 97, 78, 75,140, - 24,135, 65, 57, 0, 22, 57, 27,124, 64, 96, 45, 78,206,105, 94,121,177,253, 59,145,107,172,126, 38,125, 30, 3,132,253, 97,198, -124, 56,180,117,150,190, 7, 6, 75, 65, 8,163, 90,194, 76,119, 0, 1,200,169,151, 58,165, 5,227,232,225,156,186, 33,116, 2, -100,251,105, 86,251,113,202, 17,222,115, 75, 62,243,182, 22,168,250, 17,226, 85,216,149,139, 38,248, 13, 97,128,176, 82,226, 74, -137,240,142, 48,140, 1, 83,202,160,114,208, 85,141, 69,252,138,232,186, 73,236, 26, 29, 2,163,240,128, 84, 10, 8,218,197,151, -194, 96,202,109, 50,144, 4,200,230,159,119,208, 61,122,202, 5, 14, 17,185, 16, 72,178,217,119,117, 73,144,132, 32, 37, 35,136, -128, 93, 80,203,153, 24,204,200,196,238, 2,110, 4, 61,245,184,231,214,185, 87, 11,112,213,129,113, 7, 59,115,117, 68, 79,250, - 51, 73,178,194, 99, 5,150, 29,175,205,136,222, 91, 14,169, 36, 56,100, 21, 88,219, 51, 38,128,240,222,152,177,127,114,137,114, -120, 15,156, 62,172, 17,129, 71,209, 22,183, 10, 60,189,101,132, 40,221, 70,245, 8,215,126,252, 7,124,161,154,152,182, 6,174, -192,108,104,114, 20,170,210,169,212,187, 31,194, 29,146,179,159, 93, 10,186, 44,107,129, 10,233, 58,197,121, 83,190,203, 26,161, - 90,173, 97,117, 7,141, 19,117,245,122,100,201, 72, 89, 85,247, 85, 7, 64, 39,116, 50, 89,159,240,166,100, 95, 73,120, 82, 11, -123,183, 31,163, 38, 62, 51,255, 97,205,103,239,246,190, 98,113,141,167,225, 30,125, 17,201, 57, 97,111,175,215,217, 77, 34,130, - 35,123,213, 58, 14, 23, 8, 7, 85,127,198, 25,177,179,234, 73, 83,126, 18, 68,116, 15, 91,138,217, 45,100,229,188, 55, 70, 78, - 21,157, 89,120, 12,153,192,164,141,115,205,110, 56, 58,141, 95, 44,165, 11,131,169, 35,246,174, 8,231,146,155,112,105, 29,245, -174,169,108,132,211,248, 84, 28, 9,234,110, 5, 22, 16,117, 32, 31,155, 71, 8, 78,214, 34,210,193,245, 79, 99, 13, 86,225,202, -167,159,126, 2, 98, 82,181,245,105, 1, 23,249, 92, 65,220,231,177,222,107,224, 77,253, 48, 62,253,244, 5,222,253,202, 87,240, -219,255,246,191,131,127,229, 87,127, 21, 31,127,244, 33, 62,254,232, 35,156,157,157,227,213,203,215,248,224, 7, 31,130, 29, 53, -245,114, 17, 65,138, 90, 64, 98, 76,141, 16, 33, 2,236,182, 59,133,200, 36,237,214,134, 16,218, 46, 87, 5,110, 43,240,105,221, -235,234, 21,233,189,179,157,185, 61,212, 25,166,150,215, 7,136,243, 30,193,196, 98,149,109,174, 25,235,201, 62,107, 75,187, 50, -191,119, 76, 81,247,206,222,173,171,163,148,219, 20, 37,198,213,171, 94,239,139, 98,121,223,201,138,181,247, 78,253,239, 82, 19, - 28, 75, 43,236,165,172,191, 19,246,247,152,189,230,183,123, 19,191,121,135, 97, 51,130,192,184,184,188,208,159, 61, 91,158,187, -117,199,197,198,253,213, 67, 12,176, 9,205, 60,152, 29,130,247, 96, 98, 92, 94, 92,224,221,119,159,224,211, 79, 63,109,236,119, -111, 32,148, 22,245,106,135, 32,230,181, 0, 87,114,156,109, 14, 16,188,218,203, 30, 60,124,128,224,131, 90,198, 66,128,243,193, -190,219,212, 84,253,222,107, 66,153,174, 25,142,125,198, 41, 43, 46,117,115,126,102,238, 8,175, 19, 53,239, 64,240,186,243, 54, - 75,145,186, 18, 18, 14,211, 1,211, 50,183, 60,251,253, 97,194,238,250, 6, 49,170,222,130,157,179,107, 76,125,213,151,151,151, -216,238, 15,152,247,251, 22,104, 83,221, 53,240, 30, 75, 44,202, 37, 55,189, 67, 11,193,177, 73, 73, 99,175, 27, 52, 75,104,181, -224,213,172,121, 2, 26,188, 71,211,249,138,125,182,202, 73, 47, 57, 27,234, 87,144,167,189, 94,143, 6, 15,210,240, 21,192, 13, - 30,169,172,171,142,105, 22, 80, 90, 20, 0, 35,130, 33, 56, 36, 4, 72,140,118,255, 41, 66,182, 32, 91,243, 84,218,228,152,109, -253,185,164,108, 11,114, 75,227, 19, 64,114,130,119, 30,165,166, 87,218, 51,215,113,213, 24, 16,216,196,123, 2, 94, 9,123,101, - 21, 43,235,253,200,150,209, 90, 15,250, 0,196,107, 90, 91,133,151,129,219,190, 93,107, 59,181, 80, 25,166,172, 92, 20,210,215, -245,144, 4, 79, 30, 20,188,216,190,139,240,217, 21, 32,215, 0, 13,111,241,216,188, 29, 54, 67, 39, 75,118,233, 53, 83,119,237, -212, 91, 80, 60, 74, 75, 83,107,118, 48,210,125, 39,136,193, 84, 48, 64,187,245,114, 43, 9,123,141,241, 44,122, 84, 71, 78, 30, - 75, 0, 54,220,154,227, 38, 84,163,254,229,154, 26, 92,172, 58,245, 39,151, 10,131,233,195, 80,234, 30,186,226, 98,107,167, 95, -228, 52,185,171,142, 1,138,158,226,152, 86,111,118,141, 97,101,235,188,155,192, 78,179,212,117,231,178, 42,186, 87, 92,233,122, -178, 3,208,108,108, 21,203,154,114, 65, 34,198,104,221, 75,233, 88,247,213, 31,207, 22,128,163,163,184,140,101, 42,232,179,205, -169,235,236,245,161,153,149, 92,100,123,250,182,185,183, 61,169,171, 87, 96,247,125,112, 99, 61, 27, 60,203,206, 49, 83, 52,197, -246,105, 80,142,117,250,253, 78,185,223,221,158,152,245,205,110, 33,183,246, 61, 77,159,208, 29,202,228,116,172, 94, 53, 27,116, -146, 54, 4, 58,242, 94,210,241,153,182, 77, 82,156,119,107,236,235,151, 32,188,126,222, 14,189,255,251,177, 11, 18,121,246,241, -199,248,169,239,252, 12,254,147,191,255,159,226,103,127,254,231,113,216,237, 17,194,128,243,243, 11,188,120,254, 28,159,190,248, - 4,187,155, 27,108, 54, 35,178,203,216, 31, 14, 13,119, 90, 63,179,224, 53,172,100,183,223,183,112,145, 82, 10,200,217,120, 27, -210, 70,236,181,243, 38, 34,228,154, 53,158,171, 74,221, 68, 64,173,163,212,110,217, 7, 50,138,151,142, 4,171,202,218, 25,109, -175, 10,157, 82,204, 38, 78,203,106, 11, 50,117,115,187,151,152,155, 87, 62, 27,110,214, 89,184, 11,140,219, 77, 69, 31, 96, 25, -104,123,236, 26, 6, 82,187, 59,105,226, 37, 61,120, 80, 1,150, 69,247,237, 33,120,237,122, 12, 0, 2, 67,184, 50, 43,122, 55, -198, 5,203,146,154,128,175,105, 70,216,188,251,134,233, 85, 33,183, 74, 96,151, 37,226,253,247,223,199,123,239,191,135,253, 94, -115,230, 7,243,142,215, 67,160,183,212,181,154,234, 6, 33, 56, 79, 45,225,173,118,211, 14, 26, 46, 51,112,208,208, 22, 99, 34, -140,155, 13,134, 33,128, 65,152,151,216, 92, 8,100,164,190,170,203,113,204,109,138,226,157, 67,129, 96,187,221,195,123,198,102, - 24,225,134,128, 20, 23, 4, 63,216,125,171, 7,157,184, 44,200,162, 96,162,148, 22,227,148, 51,182,187, 61,166,105,223,154,155, -184, 84, 18,157, 32, 23,224,250,250,166, 19,109, 1,190,178, 5, 44,239, 34,183,244, 53,103,238, 8,233, 58,239, 12,239, 44,165, - 45,151, 53,213,174,233, 85,208,160, 62,220,190,119,194,180, 44, 24, 61, 97,220,156, 1, 37, 32,230,131,194,138,160, 64,161,100, -118,182,234, 5,135, 8,130,137, 20, 83,138,240,148,224, 29,131,200, 65, 88,189,232,177,144, 17,236,204, 78, 86,167, 9,194,160, -172,255,190,176, 55, 80,146,180,200,216, 98,176, 32,170, 82,121,163, 10,162, 91, 79, 54,142, 69,213, 55,153,111,189,197, 98,183, - 34, 79,109, 42,213,236,107,134,190,133, 91,211,220,200,158, 89, 73, 0, 87,138,198, 14, 67,173,137,226,244, 64, 34,133, 12,140, - 83,181, 0,132,119, 92,198,213, 99,143,101,251, 21,184,105, 7,184,114, 98, 97,147, 47,180,176,201,219,138,252, 81,129, 71, 93, - 77,217, 78,137,202,145,218,142,237,225,161, 86,172,117,111, 94,218, 14,125, 37,141,173,190, 97,210,146, 47, 3,150,123, 15,241, -238,131, 43,124,253,106,198,239,223, 16,118, 92, 85,121,199, 41,111, 26,139,170, 59,116,234,138,185, 96,181, 85, 29, 73,166, 68, - 58, 93,253, 90, 8,235, 72, 34,203, 26,249, 73,189,229,170,117,232, 90,200, 85,245,202, 24, 28,129, 75,198, 94, 86,128,140,122, - 24,215,209, 8, 19,142, 4, 99,220, 35,109,104, 21,252,233, 5,169, 54,174,220,193,105,164, 99,245,163, 8,132,187,112,144,162, - 98, 62,103, 35, 43,116, 25,234,185, 90, 59,172,251,174, 99,115,106, 25,192,166,192,165,188,170,251, 5, 45, 8,166, 81,231, 90, - 58,147, 29,210, 44, 20, 70, 4,240,162, 9, 73,197,118,209,167,133,178,156,136,205, 90,199,221,173, 21,238, 66,196, 54, 39,195, - 45,202, 92, 47, 70, 92,103,235,116,231, 21, 76, 45, 92, 8,213, 79,223,167,187,245, 35, 44,185, 13,152,161, 31,209,194, 86,223, -223,211,143, 62,194,191,244,115, 63,135,191,247,159,253, 3,124,227,155,223,198,205,213, 22,243,114,192,246,230, 26,175, 94,189, -196,155, 55,111, 80, 32,184,119,255, 2,203, 28,177,223,111,219,251,141, 75, 49,196,165, 67,146,140,121, 73,136, 38,130, 35, 3, -132, 48, 92, 35,146, 29,166,131,118,165,102,125,170, 66,175,250,128, 25,130, 55,108,176,190,247, 37, 38, 19, 5,185,246, 73,164, - 20, 45, 86, 24,240,196,134, 76, 85, 5,120, 74,181,152,105,177, 15,222,233,184,221,246,134,228, 88,177,175, 69, 52, 80,200, 30, -170, 57, 43,205, 45, 12,193, 2, 87,108, 47,153,117, 71, 47, 69,147,201,144, 75,179,171, 73,169,132,174,117,172, 91, 45, 80,149, -101, 94,202, 42, 40,171,170,247,138, 29, 46,101, 77,151,211,123,180, 28, 7, 55, 97, 13, 49,174,190,251,253,126,143, 87,175, 94, -225,234,205,149,130,115, 6, 15,117,158,169, 0,208, 59,253,156, 42,180,167,186,100, 68,244,112,232,141,118, 87,247,222,231,231, - 35, 66, 24,176,196, 5, 99, 8,216,108, 70,120,231,141,113,174, 84,183, 48, 12, 90, 36, 82,129, 27, 44,121,204, 92, 0,170, 87, -168,137,111,210, 66, 7, 75,202,170, 45, 49,101, 61, 58,203,212, 97, 58, 96,154,103, 72, 42,230,243,159,176,189,222, 34, 46, 11, -188,103, 56, 63, 34,185,140,105,153,225, 29, 3,112, 88,230, 73, 49,171,222,215, 57, 51,132,244,208, 34, 69, 73,116,217,198,217, - 58, 77, 36, 45,172,158,213, 54, 86,170,117,139,225, 60,217,126,223, 86, 40, 36,112, 96,205,101, 55,241,102, 74,217,180, 29, 30, - 75, 84, 87,133,144, 71, 94, 14,112,142,141,213, 94,128, 28,117,207,111,112,160, 37, 21, 20,137, 64,169, 46, 13,198,126, 33, 72, -220,169,247, 92, 17,155,200, 36,112, 37,235,235, 96,130, 43,118,120, 51, 43,158, 35,180,224,149,146,138,134,245, 84, 12,110, 37, -103, 22,128,141, 23,130,110, 21, 37,102, 61,235,218,134,102, 81, 94,181,103,100, 26, 37, 5,204,100, 19,114, 50, 18,132,212, 78, -231, 37,129, 60,193,147, 7, 57,178,221, 59, 90, 7, 79, 98,160,159,122, 15, 57, 70,204,132, 77, 78,120, 50,206,120,250,224, 62, - 48, 63, 4,228, 37, 64,225, 8,242,217,142, 34, 95,132,135, 61, 25,197,247,123,246, 58,138,247, 34,108,126,100,128,242,105, 72, -140,154,249,107,215,206, 36,112,162,187,246, 53,121,172,223,145,139,117,119,103,192,253, 7,120,124,249, 6,247,174, 10,162,184, -149,154,211,154,100,235,238, 5,109, 95, 93,161, 50,109, 74,112,178, 21,149,206, 58,214,162, 64, 59,158,251,106,205,182, 71, 62, -211,173, 68,176,182,223, 55, 96,205, 28,169, 21, 92, 38,105, 35, 29,161, 21,112,114,234, 99,151,246,251, 11,156, 21,238,210, 9, - 25, 74, 95,196,168,251,247,107, 32, 14, 49, 36,206,120,121,200, 56,187, 60,199,133,151, 21, 0, 33,232,240,135,107, 0,204,177, -141,172,155, 88, 52,209, 92,247,251,165, 47,154,210, 68,141,142,215,206, 87,195,111,244, 34,100, 87,116, 23,103,220,253,254,192, -116,219,230, 46,183, 60,227,117, 37,241, 54,113, 26,117,132,186,245, 74,166,118, 56,145, 59,180,238,107,225,150,147,152,223,210, -124,163, 71,244,190,255, 15, 81,108,235, 87,195,120,250,244, 35,252,212, 79,127, 7,127,255, 31,252, 23,248,234,215,190,138,253, -110,143,253,110,139,207, 62,251, 4, 79, 63,254, 16,215,215, 55, 77,236,229,156, 71, 76,123,245,155, 51, 99, 28, 6, 20, 95, 12, -161,186, 96, 59,233,202, 68, 58,255,111, 77, 31, 19, 1, 98,156, 27, 41, 48,231,213,214, 84, 15, 67,195,224, 27,227, 29,166,114, - 38, 2,184, 40, 81,139, 10,192,162,255, 78,177,145,181,115, 30, 36,218, 57,198,168,129, 31,108, 52,173, 97, 8, 72, 69,173, 84, -193,172,114,217,208,176,142,217,224, 79, 90,164,185, 10,168,114,182,152,203,202,251, 55,117,187, 29, 16,107,104, 70, 93, 21, 57, -246,141, 13, 46, 69, 3, 75, 0,157, 44, 16,107, 34, 88,253, 44,198,113, 68, 74,185,121,169,217,248,240,213,227, 45, 68, 13,113, - 74,214,129, 86,219,153,119,132,179,179, 13,118,251, 29,230,249, 0,231,188, 69,149,154,118,196,185,230, 71,172,135,139, 33,120, -181,128,217, 10,196,187,122,253,219, 14,184,100,156,159,157,169, 51,195,188,249,196,154,191,174,233,112, 5,193, 59,203,110,215, -239,140,205,154,197,118, 95,103,195,240,138, 61,243, 8,192,180, 44, 8,185,180,116, 60,231,189, 30, 36, 88,233,120,135, 73,243, -234, 29,233, 52,224,213,203, 87,216,109,183,170,224,134,111,171, 29,101,167, 19,114, 78,138,164, 5,235,181,101,106,118,166, 21, - 28,148, 82, 82,134,125,203,106,166,117,242, 69,132, 4,130,164, 98, 76,125, 82,164, 47, 68,139,126,205, 14, 48, 12,113,181, 98, -137,117,179, 66, 1,243,188,232,193,208, 7,115, 62, 25,192,202,188,227, 99,240, 16, 98, 76, 75, 4,149,168,157,245,146, 33, 84, -144,150, 12,150,140,100, 7,192,245, 57,173, 83,169, 58,173,144, 14,133, 82,241,182,142, 3, 50, 23,192,118,220, 45,156,197, 10, -248, 74,102,235,158, 28,196,109, 90, 88, 5,116, 76, 53,182,181, 6,137,233,169,184,250, 85,244,101, 57,219,157,235, 36,135, 60, - 1,228,149,219, 34, 10,175,161,106,129, 35, 19,205,149,164,207, 40,102, 80,105,173, 43,158,120,194,155, 71, 30,251,237,187,240, -187,107,192,101,128, 92, 71,145, 67, 23,148,245, 5,128, 44,121, 91,147, 98,246, 68, 87,119, 23, 69,199,126, 34, 43,171, 27,198, - 71, 87,241, 22,119, 59,245,250,184,237,189,232,245, 94,245, 0,237, 48,188,248, 62,126,248, 76,240,135,226, 1, 47, 24,100, 29, -163,175,111,213,124,241,178, 22,220,106,135,106,153,186, 77, 41,223,201,203,232,184, 4,212,104,216, 62, 9,110, 37,195,245,185, -221, 53,113, 77,186, 29,187,254, 76, 71,199,123,251,214,213, 91,231, 44,212,237,255, 79, 70,205,185,219,253,139,233, 17, 8,170, -176, 77,168, 32,138,234, 9, 6,226, 60,227,236,157,175,226,223,250,246, 25,126,240, 7, 63,196, 63,189, 33,156,121,106,251,234, - 85, 5,191, 50,220,143,114,218, 79,138, 45,119, 19,148,154,207, 46, 82, 15, 74,157, 91, 65, 86,132, 98,168,135, 13,102,120,168, - 8,165, 34,135, 82, 23,215, 74,180, 70,205,190, 13, 6, 83,106, 68,111, 71,130, 59,186,232,106, 98, 84, 87,160,228,104, 55, 36, -199,216,223, 78, 20, 87,167, 67,210,197, 7, 18,157,114,230,191,120,236,254,121, 4,185, 90,208, 95,126,246, 41,190,253,237,159, -198,127,254, 95,254, 87,120,239,189,175, 96,191, 59, 64, 74,198, 71, 31,254, 16, 31,126,248, 1,174,175,174,176,189,217,234, 88, -212, 80,173,196, 10,242, 96,235, 76, 5,192, 52, 47,152,166, 9,239,190,251, 21, 92, 92,156,195, 57,135, 97,216,224,217,243,231, -184,186,186, 2, 51,107,135,110,162, 63, 13,243, 48,188,175,247,186, 7, 47, 48,143,185, 77, 99,106, 49,117,220, 31,109,155, 50, -188, 2,101,132,181, 11,143, 49, 99, 58, 76, 58,238, 52,165,121, 8, 14,101, 17, 44, 41, 2,163,118,177,203, 28,219,142,217, 85, - 1,105, 94, 17,194, 41,234, 8,212, 7,103, 4, 48, 40,250,179, 93, 15,229,232,161, 91,175, 7,197,185,214, 15,151,219, 1,208, -123,205,245,142, 75, 66,240,193, 88,220,100, 65, 42,222, 34,118,179,137,253,148,211, 89,181, 29, 53,210,184,216,142,120,112,193, -200,104,234,211, 47,101,141,125,118,142, 27, 26, 86, 12, 54,227,216,217, 14,189,174, 31, 86,161,107,206,122, 56,173,223, 87,201, -122, 8, 81,125, 64,105,182,185, 98,163,217, 16,188, 78, 49,164,128,115, 1,187, 13,162, 65, 85,234, 24,126, 28, 7, 83,201,219, -115,175,168,189,173, 90,254, 98, 76, 56,204,147, 18,216, 68,176, 95, 22,188,121,117,133,195,126, 11,199,192,146, 43, 7, 94,139, - 41, 57,135,195, 97, 70,137, 11, 48, 14, 54, 93, 19, 59,236,232,234, 48,120,165,219,205,145, 80, 82,110, 85,177,174,111, 82, 41, - 96, 41, 22, 53, 42,235,232,189, 66,141,108, 5, 84, 5, 98,108,113,177,193, 1, 60,110,244,115,136,201,238,233,212,138,248,122, - 24,213, 90, 34,164,221,244, 38,168, 82,221,151, 4,231, 71, 20,120, 8, 18, 74, 44, 24, 60, 67,200, 25, 14,155,144, 83, 82,104, - 25,233,232,157,155,237, 85,243, 1,216, 18,228, 8,132, 66, 26,168, 82,114, 70, 34, 1,103, 50,110, 13,153, 5,141,193,149,168, - 82,179, 55,228, 88, 88,219,130, 94,170, 54,202,248, 40, 4, 83,221,147,186, 34, 86,216,232,154,199, 81,225, 54,117,119,143,146, -129,162,203,231,108,107, 13,210,177, 49,146, 8, 70, 18,188,179,137,248,240,209,125,148,233, 9,184, 60,211,155,190, 11,103,233, - 28,107,159, 63, 82,188,131, 91,211,211, 53, 60,213,140,101,209,208,247, 98,163,142,158,240,218,115,218, 11, 86, 54, 58,223,122, - 56,214, 19,189,158,238,163, 41, 15, 73,112,132, 64,173,123,212,210, 64, 52,210,120,241,232, 88,205, 14,119,128, 81, 58, 38,187, -116,214,176,246,144,233, 10,121,175, 40,236,139,123, 77,247,100,230,126,161,107, 99,156,245,205, 75,169,202,247, 21,150,211,152, -224, 71,227,120, 29,121,147,237,121,178,117,148,245, 85,212, 93,105, 29,227,151, 82, 64, 97,192,176,217, 40,105, 45, 51,214, 97, - 70, 21,164,229,213, 43,222, 78,226,212,165,157,202, 81, 81,115, 29,156,160, 84, 77, 1,233, 24,214,217, 65, 41,219,174,212,153, - 72,166,230, 25,195,198,241,237,129,104,163,217, 90,154, 11,142,119,231,114,215, 72, 91,228, 8, 29, 43,183, 78,144,132,224, 60, -138,100,235,116,143,127,216,233,133,220,255, 89,177,253, 74,221,227,247,226,189, 31, 5, 44,243,246,137, 59, 97,123,115,131,179, -243, 11,252,221,255,248,239,225, 39,127,242, 39,241,209, 71, 31, 34,167,132, 23, 47,158,227,251,223,251, 62,166,253, 1,243,180, - 32,165, 5, 37, 23,236,247,187,118,208,216, 12, 35,156, 83, 80,202,205,118,135,195, 97,194,251,239,191,143,111,126,243, 91,234, - 99, 38,224,249,139, 79,177, 44, 17,227,102,196, 18, 23,148,100,102, 49, 39,109, 4, 13, 81,174,118, 45, 58, 57, 91,242, 88,112, -166, 34, 62, 6, 17,105, 7, 28, 43,210, 9,195, 96, 22,182, 92,128, 34,205,186,198,206, 33, 4, 21,151, 57,214,104, 79, 41,192, - 50, 39,100, 17, 12,158,219,202, 6, 32,172,205,154, 96,232,200, 98,206, 52, 68, 48,214,129,198,166,150,154, 35,216,217, 54,165, -117, 91,100,142,135,202, 93, 95, 35,115,215,120, 83, 98, 29,145, 18, 1,236, 25,146,164, 81,217, 74,209,142, 42, 25,223,222, 57, - 21,243,133, 33, 24,212, 70,154, 96,207,123,223, 38, 8,154, 10,167, 22,190, 33, 40,204, 38,166,100,122, 1,110,116, 61, 98,168, -178,190, 8, 46,239, 95, 34,132, 81,199,230,166,141, 72, 41,219,119, 72,230,201,151, 38,142,139, 49,225,252,108,196,147, 39,239, -224,102,187, 67,206,234,199, 39, 34,108,134,128,179,179, 51, 21,113,165,100, 66, 67,205, 58,247,172, 83,171,148, 52, 74,245, 96, -222,253,155,235, 45,118,215,215,107, 66, 90, 74,136, 49, 35,103,181, 50,138, 9,191,156, 9,225,132,178, 50,216,133,109, 23,110, -247,183, 99,140,195,136,133, 34, 40, 71,128,169,173, 14,152,109,108,108, 83, 85, 87,181, 71,178, 18,232,234, 29,207, 4,184, 33, -152,170, 57, 91, 87,204, 16,100, 48, 11,178, 48, 74,142,106, 75,181,164,187, 68,132,146, 18,114, 42, 64, 89, 84, 16, 25, 60,206, -206, 47,128, 97, 68, 74, 2,246, 11,166, 61,144,243,162,211, 96,219,161, 51,233, 58, 8, 69, 87,164, 98,185,235,140, 12,103, 35, -112,157, 50, 25, 96,201, 14,136, 34, 17,115, 46,112, 54,246,173,209,172, 98, 66,183, 76,206,226, 88, 87, 97, 91, 22, 93, 75, 50, -170,208,205,174,219,110,140,173,227,123,156,197,209, 0, 0, 32, 0, 73, 68, 65, 84,103, 99,162, 54,113,112,181, 41,175,250, 31, - 41,218,253,123,100, 11,147, 89,221, 34,181, 97, 41, 2, 60,228,130, 87,247,128,237,213, 59,224,235,215, 0, 45,186, 10, 33,220, - 18, 7,247, 88,115,220, 21,161, 69,111, 95,182,123, 34, 75,177,113,130,160,207,130,149,199,110,201, 61,189, 49, 10, 54,142,135, - 21,221,117,211,101, 23, 69,245,108,147,238, 55, 68, 42,189,236,216,187, 84,127, 71, 29,191,175,123,121, 27,191, 91,190, 59,119, - 71, 24,234, 60,125, 34,212, 13,102,143,149,242, 77,200,245, 5, 67,215, 92,114,203,115, 79,133,214,189, 70,183,151,175, 86,177, - 74,181,171,126,119,233,243,187,169,142,205,165,163,180,145,117,215,199,121,229, 25, 2, 63,142,216, 63,255, 99,252,247, 63, 40, -184,188, 56,195,147,141,138, 19, 51, 86,235,133,172,131,246,245, 51, 19, 59, 32,213,211,148,141,254, 87, 7, 38,214,221, 78, 7, -126,169,187,239, 44,162,185,212, 76, 71, 19, 10, 65, 50,246, 60, 26,165,169,250,152, 91, 64, 4,213,174,185,124,110,110,249,105, -161,165,238,107,143,105, 57, 26,199,159,176,118,215, 14,190, 30,254, 90,119,118,187, 37,255, 50,248, 87,124, 1,254,181,254,216, - 82, 10,118,219, 27,252,250,111,254, 54,126,238,231,127, 22,207,159,126,140, 23,207,159,227,197, 39, 47,240,234,179, 79,177,187, -217, 33, 39, 21,188, 5,239, 17, 83,212, 61, 99,204,173,216, 10, 1,143,223,125, 7,247, 30, 62, 68,142, 25, 79,222,125, 7,243, - 50,131,136,112,117,245, 6,207,158, 61,111,202,246, 20,211, 90,180,109,111, 92,178,234, 81, 42,147,127,179,209,174,104, 73, 17, -185, 56,163, 94, 41,220, 37, 4,167, 52,186,148,219, 1,175,142,104, 43,196,131, 7,237, 50, 82,206, 22,144,194,109,226, 19,130, -138,167,110,182, 59,220,191, 56,195,187,143, 30, 32,231,140,253, 52,175, 17,150, 0,166, 37,106,238,121, 54,229, 51,214,142,174, -254, 7,214,169,228,152,205,102,166, 34,198,106, 31, 83, 6, 57, 90, 92,177, 18,194,200, 44,101,171,197,172,180, 53, 14,195,141, - 14, 37,169,165, 79,160,135, 19, 79,174,217,179,188,243, 90, 64, 76,177,175, 73,116, 17, 37,103,156,157,159,129, 44, 52, 70,243, -182, 19,134, 51,181,144,229,168,113,161,245,242,171,158,245,170,237, 57, 63, 63, 7, 57,143,146,103, 91, 7,184,166, 24,207, 57, - 35,197,185,105, 18, 20,238, 35, 26, 29, 74,140,156,114, 11,255, 8,222,225,236,108,163, 57,233,243,130, 92, 5, 95, 66,134, 88, -101,228, 20, 17,130, 71,190, 41,184,190,186,194,178,204,200,113,105,150,182,100,232, 95,166, 2, 56,135, 57, 70, 77,150,179, 90, - 19, 6,103,226, 72, 0, 37,181,155, 63, 89,130, 30, 49,193, 51, 35, 22,135,121,158,193, 92,169,122,166, 91, 0,129,156,111, 58, -137, 14,214,104,130, 96, 85,135, 35,103,227,192, 19,114, 90,192, 16, 4, 95,213,223, 0,137, 51,193,157, 78, 64, 28,107, 34, 91, - 96, 66,161,128, 56, 71, 92,142, 5,195,102, 3, 97,175,225, 47,214,145, 29, 38, 66, 94, 38,227,197, 19,216,233,243,114,240,140, - 2,141, 18, 70, 41,198, 17,209, 3, 46, 75,129,115,170, 5,240,142, 33,193,233, 1,194,226, 88,139, 56, 32, 11,136,146,161,125, - 45,131,195,194,169,200, 19,132,125,115, 11, 73,115,228, 84,120, 88,233, 4,187, 85, 41,175, 11,230, 36, 2, 78,128,115,217, 38, - 12,235, 10, 84,199,245,188,226,101,203,186,148,214, 56, 87,129, 23,224,201, 16,177,123, 48,162,236, 31,131,243, 83, 11,123,161, - 99, 92,186,220,142, 96, 61,202,198,148,187,235,185,244,152, 88, 17, 70, 65, 54,180,105, 39, 80,107,208,152,181,128,202, 9,224, -174,116,156,120,116, 59,101,238, 18,200, 68,110, 83,230,122, 40, 66,203,252,237,119,207, 6, 70,201, 54,178,166,163, 61, 66,255, - 42, 42, 50,175,178,225, 87,145, 28,186, 19, 15,157,224, 71,169,179, 6, 74,135,130, 97, 90,113,171, 5, 56,218,237, 31, 91,172, -123, 84, 41,110, 29, 34,106,168, 77,133,161,112, 39, 44, 68, 41, 96, 23,240,232,158,126, 1,185,172, 5, 93,112, 58,230, 94,149, -228,117,220,169, 33, 49,234,163,207, 32,120,131,132,144,168, 10,223,173,180,253,245,117, 24, 57,138,132,144,138,180,105, 75, 17, - 58, 18,195,149,150, 14, 36,107,118,188,125, 71, 53,166,129, 1,100, 42,159, 27,124, 70,167,130, 55,186,189, 11,186,147,146,216, -169,227, 75,117, 74,244,120,223,255,159,254,234, 63,227,195,225,128,247,190,250, 53,252,229,191,250, 87,240,234,229, 39,120,246, -244, 41,158, 63,125,138, 87,111, 94, 97,119,179,197,124,152,177,196,197, 14,130, 9, 41,107,199,166, 76,242,218,177, 2, 55, 55, - 91, 60,124,252, 16,142, 24, 47, 94, 60,199,126,191, 7, 72,105,114,222, 64, 48,243, 50,183, 2,221,194,119,170, 6,194, 84, 85, -204,140,195, 97, 50, 52,170,137,118, 42,133,203, 50,209,197, 52, 58,163, 31, 80,114,105,211, 25,136,142,199,217,212,252,193,136, -106,202, 32, 32, 60,124,240, 16,159,189,124,137, 87,175, 94,227,167,190,249, 13,252,216,123,239, 96,154, 22, 61,176,228, 2,103, - 44,238,148,107,231, 86,211,203, 8, 57, 85,242, 97, 62,154,204,212,212,193,134,204,236,224, 30,130,149,239,239,156, 51, 10, 96, - 29,197,123,156, 95, 94,226,176, 63,232,125,199, 90, 28,157,119,152,243,178,118,247, 80,228,170, 38,226,205,246,187,164,169,239, -217, 44,108, 57, 21, 44,243,140, 97,220,152, 88, 81,187,166,148,181, 43,119,118,216,102, 3,212,168,176,207,172,101,204, 45,195, -189, 38,184, 49,235, 72,184,198,156,214,251,144, 89, 87, 23, 33, 12,136,165,224,213,203, 79, 49, 14, 3,114,209, 67,143,247, 30, - 75, 74,112, 62, 32,120,143,146, 19,124,240, 24,195, 0,231, 61, 14,135, 3,156,247,152, 99, 70,140, 51, 46,207,207,241,244,122, -139,253,110, 15, 17,193,180,204,170,188, 31, 61, 82,102,148, 37,154,222, 32, 35,154,173,108, 52,139, 92, 76,121, 69, 89,231,210, - 22,162,121,201,235,225,219,236,136, 69,148, 72, 87,227,154, 91, 81, 50,219, 87, 76, 89, 97, 48,166,181,105, 93,162, 72,203, 0, - 97, 59,200, 44, 89, 64, 72, 8, 38, 76,212, 60,244,245,176, 93, 0, 4, 6,206,239,159, 1,236,141,231,207, 8,158, 65,236,116, - 26, 21, 60,174,175, 25, 37,238,192,172,235, 27,161,122,136, 76, 96, 20,144,119, 72, 69, 87, 50,100,162,201,197, 70,241,206,105, - 97,103,242,171, 40,186, 8,132, 29, 42,137, 67,167,178,186,182, 42, 70,106, 84, 97,182, 61,199,244,162,213,148, 81, 98,213,163, - 80,105, 0,154,130, 58,158, 82,198, 9,103,219,231,179,194,213,188, 23, 8,105, 66, 97, 54,209, 30, 3, 16, 7,196,226, 65, 37, - 35,160,170,232, 61, 30, 0,184,188, 7, 92,223,188, 3,126,243, 6, 40, 7,128,195,145,150,232,182,240,151,110, 3, 55,228, 45, -107, 68, 0,190, 20,149,235,215, 78, 84,119,200,218,143,149, 42,138,163,181,104,247,213,176, 31,115, 31,197,169,118,133,250,168, - 87,173, 96,149, 91,211,131, 78,210,127,235,245, 31,251,202,237,177,215, 10,185,224, 86,202, 72,123, 56, 82, 29, 83,203, 42,134, - 59,222,153,247,197,185, 63, 41,221,225,177,110,251,225,178,142, 98,208,199,225,200, 74,152,235, 26, 81,110,221,240, 73,239, 45, - 5, 49,215,184,217,110,167,124, 18,152, 83,173, 33,100,217,194,149,240, 68,182,167, 38,136,238,237,237, 53, 70, 40,115,128, 91, - 68, 43,119,194,190, 21,181,219, 80,176,230,109,111,192, 8, 59,160, 21,169, 41,104, 88, 83,179, 12,249,123, 10, 60,160,110, 15, -126,171, 43,174,148,190,211,174,156,232,238, 56,212, 46, 17,208, 28,123, 71,113,187,111, 67, 35,126, 81,151,206,221,181, 90, 58, -241,164,142, 52, 29,230,105,198,203,151,159, 97, 12,140, 63,248,189,223,195,118,191, 7, 74, 54, 96, 76,106, 71, 88,182,124,114, - 21, 90,121, 48, 23, 44,179, 62,248,211,213, 53,246,123,141,142,221,109, 15, 24,198, 96, 69, 85, 71,173,186,255,134, 81,240,236, -179,169, 96, 23,167,129, 34, 75, 92,213,242,117,167, 94, 15, 53,195, 16,154, 46, 3,236, 77, 24,167,227,113,202, 90,244,135,193, - 55,164,234, 56, 14, 77, 12, 87,105,105, 49, 70,108,198, 1,127,225, 95,254,115,248,233,111,127, 27, 47, 95,191,198,243,231,207, -145,139, 96,154,162, 30,236,165,180,221,115,245,139,123,231,109,212, 61, 55,241,102,141,243, 84, 36,232,138,206, 76, 22, 2,210, -127,246,107, 55, 14, 56,114,230,161, 87,101,124, 10, 30,113, 86,164,106, 46, 25, 14,222, 16,182,209, 34,119, 75, 67, 28,111, 54, - 42,174,219,237, 38, 56, 71,112,227, 96,108,120, 7, 56,163, 65,154, 8, 80, 76, 56, 88,223, 75, 49, 69, 52, 21,110,215,163,115, - 74, 71, 11,227, 96,169,118, 73,175,251, 96,162, 52,227,246,103, 67,206, 86,203,162, 15,190,221,179,103,155, 17,206, 7,213, 96, - 64,177,184, 66, 80,221,128,193,125,114,154, 33,165,224, 50,220,111, 69,243,102,123,131, 24,103,236,167, 5,219,155, 45,226, 60, - 27,179, 93, 89, 0,197, 88, 17,154,151,110,135,186,230,167, 62,114,152,218, 51,130,140, 44, 40, 13, 37,139,218, 89,219,123,241, - 42, 27,183,180, 63, 54,214, 1, 33, 21, 75, 0, 49, 74, 90, 41, 5,131, 95, 19,248,148,250, 91, 58,166,136, 33, 41,157,111,186, - 9, 71, 2, 71,122,208,136,203, 1,195,200, 8,126,131, 66, 42, 12,204, 41, 35, 12, 64,240, 67,155,252, 93,156,111, 48, 79, 5, -172,178, 57,196,164, 24, 88,177,177, 43, 25,123,158, 37, 3, 94, 9,132,165, 11, 4,170,141,103, 97, 27,129, 59, 32,243,202,149, - 71,123, 78, 86,171,156,179, 61,106,130,229,193,233, 90, 82, 52,251,160, 64, 5,215,129, 43, 91, 95,197,160, 34, 4, 79, 0,123, - 2,115,176,166,202,230,215, 54, 62,173,162, 68, 70,177, 56,114,105,154, 36, 54,125,218,192,132,119, 54,132,237,163, 11,148,253, -187,224,248,225,157,207,193,158,245, 33,130,219,117,238,115,254,114,223,249,198,251,191, 51, 79,147,158,134,170, 93, 76,104,141, - 5,173, 99,103,172, 29,105, 63,243,231, 54, 54,165,134, 72,229,147, 51, 68,243,167,247, 8,155, 78,164,178,238,155,215, 46,250, -118,119, 76,109,143,140,166,198,167,166, 7, 16,208,237,128, 27,166, 91,240, 18, 58, 57,213, 8, 58,124,107,119, 48, 1,238,200, - 82,239,202,114,233, 67,104,176,190, 7,234,108, 95, 76, 74, 70,106,185,243,245,243,163,227,169,134, 28, 13,218,143,121,231,206, - 7,140,131, 83,228,161,244,110,237, 53,221, 77,186,253,190,216, 78,188, 93, 76, 53, 96,167, 77, 31,164, 67,160, 82, 19, 25, 50, -169,242, 61,159,236,206,215, 3, 35,173, 5,215,238,235,154,205, 12, 28,239,211,143,118,236, 29, 91,254,120,207, 77, 29, 82,246, -244, 11, 95,191,161,245, 59,199, 93,129, 3, 95,170,176, 59, 98, 56,214, 7, 62,184, 59,104,218,231,230,131,199,126,123,131, 23, - 47, 62,197,195,251, 15,241,193, 15,127, 96, 59, 82,237,252,152, 53, 55, 92,137,103,217, 20,218,140, 24, 99, 3,190,136,157,128, -164, 72, 59, 4,212,110, 82,163, 46,139, 49, 23,164, 81,213,170,102, 66, 71,238,170, 10,207, 22,121, 90,247,236, 38, 14, 86,221, - 3,107, 34, 29, 68, 52,211,219,172, 70,181,163,119,174,238,226,165, 97, 88, 25,220,148,250, 67, 8,248,163, 63,250, 35,252,165, -191,240,151,240, 55,255,230,175,225,143,127,248, 67, 29,113, 75,193,245,245, 77,203,242,174,163,109,176,230,169,159,198, 70,150, - 82,148,217, 93, 25, 12,164,158,118, 65,209,174,173, 38, 1, 18,153, 47,153, 21, 20,227,122,117,187,192,135,128,139,139, 11,251, -179,186, 55,175,175, 33,120,223,244, 20,130,170,196,150,166,144, 79, 57, 97, 28, 6, 4, 31,212, 21, 80, 83,209,156,215,238,205, - 64, 42, 92,133, 85,189,152,203,238,207,186, 55,207, 41,226,242,242, 18,247, 31,220,183,142,188,250,150, 13,173,156,179,217,189, - 84,232,231,220,255, 75,218,155, 62, 75,118, 28, 87,158,199, 35,226,222,155,153,111,169, 42,160, 80, 0, 9, 66, 32, 9,136,100, -139,162, 36,146, 34,103,233, 54, 73, 51, 45,217,152, 62,205,244,252, 69,248,187,198,230,211,180,181,153, 90, 61,221,109,211,106, -169, 37, 8, 32,136,165, 94,173,111,207,229, 46, 17,225,243,193, 61,226,198,189,153,175,170,192,134,140, 38,160,150,247, 50,243, -101,134,135,187,159,243, 59, 46, 23, 76, 33,177, 73,182,249,106,209,128,140, 67,167, 33, 53, 85,237,116,247,175,239,155, 40, 25, -233,117, 37,152,212,221,118,131,171,235, 13,158, 62,125,134,118, 39, 46,138,160,104,214,212, 81,167,143,134,215,199, 64, 70,214, - 7, 73,177, 47, 14, 3, 85,228, 99,188, 36,142,162, 82,206, 72, 91, 33,222,153,156, 73,207, 5, 42, 54, 42,127,157, 83,110, 61, - 24,206, 24,216,202,137,247, 90, 51,217,131,102,155,103,182,137,226,120, 65,105,178, 35, 10,246,147, 58,226,228,254, 61,116,220, - 32,246, 29, 42, 11,216,170,202,147, 36, 82,172,107, 12,137,161,174,177,173, 16,235,165,181, 46,199,199,146,158, 17, 38,139, 46, - 73, 63, 63,178,247, 76,147, 19,144,213,203,159,234, 84, 68,125, 42,239,127,146,117, 15,178, 21, 52,185, 36,228, 98,103,140, 65, - 80, 54,127, 10,217,137,105, 21,153,106,148, 78,121,242,215, 72,234,121, 70, 70,230,166,241,253,152, 63,161,223,199, 0,108, 45, - 34, 44, 26, 48,182, 38,162,221, 45, 96,186, 27, 0,221, 40, 38,189,235, 64, 75, 55,152,215,156,127, 77,211,192,254,254,247,223, -251,164,109,119, 96, 79, 90,216, 11,208,138, 30,168,121, 4,159,197, 2,250,194, 77,242,208,117,167, 48, 74,225, 70, 18, 92, 49, - 10,167,114,116, 94, 48,225,247,242,105,104, 90,120,115, 87,157,199,202, 52,201,220, 45, 1, 40, 84, 94, 72, 14,129, 68,105, 74, - 42, 75, 48,254,241,245, 43,218,237, 36, 34,163, 73,169,153,118,168, 9,195,106,104, 20, 15,238, 5,183, 80,142,196,228, 3, 73, - 60,227, 68,160,128,159, 50, 96,170, 5, 86,141,131,239, 59,248,108,111,155, 7,185,160, 16,208,165,108,247,114,170, 50, 13,136, -201,161, 0, 60,250, 27, 57,171,230,121, 50,157, 96, 46,225, 68,119, 11, 49, 75,187,204, 33,121, 58,209, 12, 36, 83, 78,121, 38, -129, 50,211,253, 57,243,235,105, 75,175, 43,234,198, 72,113,100, 18,241, 13,167,149, 73, 97,133,107,154, 6,255,244,143,255,136, -227,147, 83,124,244,131, 31,226,236,241,153,138,169, 12,186,174, 19,145,149, 10,215,196, 35, 29,192,129,117,148, 27,115,250, 87, -242, 98,219,116,232,230,220,235,144, 11, 74, 41,116, 75,169, 89, 50,149, 25,217,219, 10, 80,203,221,108,140, 17,109,219,195, 41, - 53,200, 24,131,166,105,242,184,190,174, 44, 22,117, 37,160, 22, 85,179,167,120,201,229, 98,129,229,178,193,203, 23,231,248,231, -207, 62,131,171,106,252,233, 47,127,137,203,235, 11,141, 83,221, 73, 44,172,194, 71, 18, 65,206,192,100, 72, 77,242,141, 91, 87, -105, 11,197, 25,255, 26,116,239, 28,245,240, 72, 2,189,100, 37, 50, 70, 60,243, 70,189,233,194,124, 23,149,254,114,181, 28, 51, -217, 49,118,196,174,114,163,205, 79, 39, 6,117, 85,137,255, 89, 15, 91,171,148,181,126, 24, 80, 89,131,166,169, 39,168, 99,163, -151,172, 68, 92, 35, 93, 93,164,117, 68,186, 88, 90, 67,120,248,246,219,168,155, 5, 98, 20,241,158, 8,154, 67,142,113,101, 37, - 33, 82,113, 89, 17,236,173, 38,229, 17,193,186, 10, 67, 63,104,194, 29,208,212, 13,140, 19,193,155,136,212,244, 50,103, 12,158, - 63, 63,199,243,103,207,113,117,125,141,245,245, 13,250, 78,236,141, 77, 83,195, 88, 82,159,185,136, 0, 19, 93, 80, 96, 61,182, - 88,225,201,197, 36,125, 0,211, 69,144, 57,102, 95,190, 81, 1,155,252,207, 98, 8,140,174, 31, 52,218,119,188,136,167,194,159, - 73,161, 4, 56, 43,108,244,168, 64, 26,231,156,228,139, 7, 47, 5, 18, 54, 67, 91,140,177,240,145,165,227,239, 59,124,240,206, - 17, 78, 30,125, 15,145, 93,158,118, 88,107,148,206, 71, 57, 41,173,247, 65, 34, 96,195,128,138, 98,254,125,112,204,220,248,196, -214,176,133,200,175,148, 82, 73, 56,148, 81,159, 58,178, 85, 13, 42,152,179,250,132,196,125, 47, 98,195,196,105, 55, 42,124, 11, -233, 82,145,220, 14, 12,248, 40,158,120,230, 32,252, 19, 22, 17, 52, 7,130,133,124, 86, 99,202,169, 47,214,166, 6,233,188,209, -232,113,201,228, 85, 96, 14,161,138, 30,100, 35,110, 98, 13,222, 69, 80,184, 30,139,246, 65,188,117,209, 14,189, 70, 43, 86, 55, - 13,236,143,190,255,221, 79,118,187, 29,188, 60,151, 17,147,169,251,105, 83,136,229,198,238,117, 78,221, 46, 64, 50, 69,209,156, -159,178, 52,177,179,149,129, 40, 92, 48, 38,104,220, 79,211,140,217, 77, 34,192,168, 53,125,141,153, 38,143,107,218,149,151,227, -214, 3, 15,136,230,187, 8, 58,248,122,141,105,113, 41,151,168,156, 98,160,160, 87,165,155, 36,237,177,198,141,142,116, 98,129, - 64,157,112,231,103,204,180,242,231, 23,195,128,174,247,249,113, 38,112, 12,202,232,212,130, 8,149, 16,137,229, 5, 37,150,210, - 48,253, 77, 99, 38,223,113,138,177, 77,157,140,174, 9,128,105, 4,250, 84, 21, 47,183,224, 50,148,182,140,230, 41,225,238,180, -231, 99,152, 94, 60,166,233, 5,148, 11, 7,209,183, 43,232,147,248,212, 44,132, 74, 99,202, 36,186,217,199, 51,197,224,113,116, -114,138, 63,252,233, 79,177,190,189, 70, 85, 59, 81, 39,239,118,249,171, 26,229,238,123, 29, 21, 39, 18,163,181, 46,243,210,211, -235,105,204,136, 35, 77,209,155,233,170, 55, 38,143,113, 46,210, 18, 53,169,151, 47, 45, 72,214, 90, 56, 87,161,247, 67, 86,109, -115,140, 10, 69,145, 14,173,118, 22,171,197, 66,138, 32,241,168,116,183, 22, 71,171, 21, 66, 8,248,242,183, 95,226,171,175,191, -129,115, 14,191,253,237, 23,248,248,227,143,241,241,199, 31,225,233,211,103,154,100, 6, 92,223,220, 2,204, 24,250,190, 16,138, -137,210,184, 31,130, 10,251,120,180, 21,169,117,205,135,144,223,203, 68, 34,226, 34,245, 63, 59, 87,193, 85, 99, 4,166,181,186, - 30, 80, 39,198,189,147, 83,221,177,154,209,207, 78, 69, 40, 75, 70, 81, 10,181, 76, 88,240,200, 69,157,193, 74, 91, 51,163,165, - 50, 57, 66,108,185,230,208,162, 84,162,143, 35, 35,114,192,131,123,167,120,235,173,183,179,159, 29,106, 71,229,228, 92, 1,161, -105, 42, 69,237,202,180,196, 58,151, 63,247,233,235,245,253, 32,236, 10, 39,161, 59, 33, 70,180, 93,155, 41,136,149,115, 96, 34, - 60,127,113,129,103, 79, 30, 75,162, 95,219, 97,215,238, 20,106,147,216,242, 42,206, 13,250,220,116,170, 65, 70,196, 89,117, 93, -201,186, 65,223,211,105,189,144,114,224, 77,198,181,202, 4, 40, 98,228, 65,244,131,144, 5,173,186, 34,132,242, 23, 51,160, 7, -250,121, 51, 74,130, 75, 98,220, 20,197, 27,163, 92, 92,229,107, 43,126, 88,199,172,130,129,141,248,238, 9,227,123, 63,252, 33, -214,225, 24,161,219,162,169, 12,140,171,242,199, 60,125, 46, 64, 6, 67,136,240,125, 15, 7, 73, 75, 75, 22,214, 24, 99, 62,109, - 72,133,200,201,218,103,146,150, 67,138,147, 94,158, 35,172,145, 53,204, 24,171, 90,176,178, 18, 13, 84,187,120, 38, 65,221,114, - 8,136,250, 57,116,236, 81, 87, 4, 87,213,136,100, 65, 28,149,243, 46,197,217, 71, 89, 53,177, 58, 4,172, 2,230, 71, 56,150, -218,164, 19,133, 49, 77,185,201,228,162, 77,138,189,117, 36, 64,182,174,173, 97,186, 53, 64, 45,144,162, 98,247,212,111, 84,156, -137,175,166, 99,214, 77, 3,251,251, 31,126,247,147,109,219,101, 36,107,218, 39,231,144, 20,237,166, 39, 48, 24, 26, 11,165, 57, - 64,137,131, 18,226, 70,241, 87, 89,100,105, 38, 4, 35,240, 1, 6, 46, 17,231, 15, 88, 38,216,145,201,118,187, 80,116,253,145, -198,113,124, 66,219,150,244, 50,204, 14,248,249,206,162,124,110, 76,180,111, 43,136, 49, 11,246, 14, 21,237,177,243,164,201, 88, - 61, 22, 95, 15, 42, 66, 76,221,248,164, 80, 21, 86,181,113, 71,192, 69,140, 40, 79, 99,107,147,184,101,118,177, 48, 51, 72, 13, -138, 24,213,156,145, 78, 83, 0, 13, 10,127,121, 58,164,146, 61, 48,121,115,147, 61,132,232,208, 77,146, 38,160, 57, 3, 9,253, - 24, 93,255, 69,136, 75,126,186,102,223,170, 49, 55,223,211,196,149,255, 59,139,224,242,250, 39, 82, 30, 23,166,244,176,172,201, -211,191, 83,215, 53,158, 61,123,142, 7,111,191,133, 71,239, 60,196,229,229, 21,250,126,200, 69, 38,189,254, 33, 10, 63, 93,126, -158,105, 60,203, 72,225, 78, 9,163,106,181,147, 19,240,202,104,247, 18,160, 88,202, 7,143, 58, 45, 65,182,238,165, 63,107,212, -118,233, 99, 68, 12, 1,139, 69,157, 59,176,101,179, 0, 64, 88, 54, 13, 78,142, 86, 89,113,158,212,231,139,102,129,213, 98,137, - 39, 79,158,226,211, 79,255, 25,231,231, 23,168, 42,201, 42,191,189,189, 69, 4,227, 23, 63,255, 57, 46, 46, 47,176, 92, 44,224, - 67,192,118,187, 17,203, 23, 25, 84,181,164,110, 5, 85,121,135,192, 89, 13,158, 38, 24, 49,170, 66, 61,242,152, 85, 96, 70, 16, -145,177, 14, 85,165,197,208,152, 44,206, 98, 6,218,182, 67, 93, 55, 56, 57, 61,213,188,121, 66, 85,203,178,202, 15,126,244, 86, - 43,185,206, 24,155,209,173, 92,112,250, 83,168,139, 15, 33, 23,140,202,169,135, 92, 47, 69, 33, 4, 56,235,180,179, 30, 37,186, - 33,120, 28, 45, 26,188,243,232, 93, 56,229,187,131,101, 23, 46,143,167,202, 5,142,153, 65, 70,196,113, 32, 30, 19,230, 56,162, -105, 26, 12, 33,192, 25, 18,245,189, 94, 32, 88, 69,172,162,132,119,168,155, 6, 23, 87,107, 60,125,114, 38,151,245,110,192,118, -179,149,200, 96, 32, 95, 4,118,109,171,158,118, 59,134,244,232,137, 36,252,124,151, 51,229, 99,100,129,234,104, 65,151, 70, 64, - 18,225, 12,141, 8,224,244,103,101,237, 33,154, 5, 99, 71,234, 29,105,209, 19,193, 34,141, 83, 24, 21,169, 89,167,157,120, 22, - 14,202, 70,218, 88,139, 33, 0, 28, 6, 4, 24, 44, 66,143,223,255,193, 35,152,251,191, 7, 14, 3,156, 53,250,248,220,168,205, - 81,204,107,142,234,213, 85, 6, 84,249, 31,146,125, 46, 79, 31,228,188,203,190,114, 66,118, 79,176,166,172, 37,237,143,177, 4, -144, 29, 39,132,249, 2, 32,133, 53,197, 59, 11, 4,145,117, 92, 46,211, 26,103, 13,200, 85, 32,114,106,169,179, 57, 52, 41,173, - 92, 5, 45,155,232,163,156,131,131, 88,195, 94, 70, 68,172,205, 22, 56,232,207, 47,137,181, 3, 8, 78,130, 83,112, 3, 7,236, - 24, 20,110,246,186,245,217,177,249,202,115,142, 39,227,247,143,222,255, 36,246, 59, 80, 96, 12, 81,180, 15,177,216, 53, 51,165, -178, 90, 52,184,153,176,134,252, 32,131,218,218, 18,121, 45,164,152, 84,140,124,111, 42,232,230, 60, 30,249,135,143,110,194,222, - 94,219,128,225,153, 69,133, 56, 87,165, 99, 84,106, 19, 70,108,227,212,150,143, 3,187,242,233,152,126,190,127,207, 54, 32,151, -120,232, 83, 1, 32,221,161,242, 42,243,205, 99,148,199, 92,175,142,176,116,114,251,102,141,137, 37, 42, 42,139,118,208,130,173, -172, 81, 57, 11, 14, 97,178,219, 62,244, 61,205,252,178,114,199, 45, 46,187, 16, 48,141, 87, 69, 1,240, 73, 5, 53,198,128,102, -121,140, 7,247,142,209,117,187,172,130,158, 92, 98, 10,235, 31,138,188,246,212,169, 79, 80,140,229,228,136,198,248, 67,222,155, -139, 80,177,243,158, 89, 57,190, 21, 38,142,103,196,248,233, 52, 34,175, 86,139,231,109,140,193,110,187, 69,219,247,248,232,163, - 31,225,252,229, 75, 9, 63,177,178,115, 20, 5,113,148,131, 45, 4, 77, 71, 27, 83,200,164,145,144, 78, 73,108,100, 10,164, 81, - 44,168, 20,151,209,103,157,130, 91, 50,252, 69,191,158,201, 64, 31,163,187, 92,217, 51,203,110,222, 99,185,168,241,206,219, 15, - 81, 87, 13,142,143,143,180,152, 25, 28, 31,159,160,114, 13, 66, 8,120,121,126,129, 47,190,248, 13,190,254,230, 27, 48, 51,154, -166,201, 63,191,166,105,240,213,151, 95,225,227,143, 63,198, 15,127,248, 3,156, 95, 92, 96,179,109,177,219,237, 16, 6, 81, 52, -123,245,110, 51, 51,186,110, 24,163, 42,121, 20,205,166,181, 67,178,197, 90,147,118,209, 36,120, 83,107, 21, 10,131,236,164, 16, -132,171,116,246,139,166,193,114,181,202, 95, 3, 4,180,187, 14,125,223,143,136, 99, 34,212,117,173,233,109, 33,243, 0,124,136, -185,240, 47,151,141, 62,158, 49, 63,253,248,228, 88,184,231,193,231, 16, 19,235, 68,125,239, 85,116,182, 90, 54,120,244,232, 93, -212,205, 66,190,103, 74, 65,211,164,188,186,170,196, 62,103, 18, 4,135,114, 65,171,170, 90, 10,117, 93,203,251,195, 7, 84,206, - 10,112,198, 85, 8, 94,186,223,244, 26,132, 24,113,179,105,113,118,118,134,174,221, 32, 50, 97,179,222,162,239,213,242,230,100, - 45, 52,248, 65, 47, 71, 99, 65, 39,229, 22, 84,218,173,123,239,165, 56, 91,151,105,160, 49, 66, 25,249, 26, 13,173,206,135,148, -183, 14, 64,105,120, 38,119,216, 82,247,210,251, 58,209,169,164,115,111, 42, 11,178, 85,190, 24,244, 67,212, 4, 54,153,209, 57, -231, 48, 68, 18,252,171,238,183, 55,219, 30, 31,222,139,248,222,143,126,140,109, 88,193,240, 0,178, 54,139,241, 72,167, 49, 86, - 11,102,239, 61,252, 32,159, 37,214,206,156, 1, 88,142,121,202,146,117, 57,234, 70, 72, 19, 97,167,224,154,132, 53, 78, 5,216, -144,128,165, 77, 18,210,149, 13,151, 10,222,164,152,235, 36, 77,167, 26, 99,209, 55, 42,118,147, 40,239,224, 1,203, 62,243,254, -153,173,234, 8,162,138, 94, 73,199,158,102, 2, 73,203,161, 93,100,242, 30,173, 76, 75, 49, 0,106, 3,108,172, 65,215, 54, 48, -221, 45,128, 86, 46, 36, 7, 24,239, 99,222, 59,221,189,118,207,157,250, 15,222,251,164,221,237,224, 61,224, 35,101,117,116,161, - 5, 47,144,164,210, 21, 71, 68,141, 98,165,137,176,107, 34,148,202, 5,219,100,251, 84, 26,217, 30,234,167,166, 67,121, 26, 47, - 15, 84, 32, 97,203, 0, 16,140,211, 8, 42,174, 9,105,175,107,138,241,244,252, 18, 82,142,185, 9, 99,232, 60, 25,154, 6,157, - 48, 35,218, 37,222,255,254, 91,248,193,241,128,203,107,143, 86,111,223, 38,231,167,143,217,240,114,171,228, 73,209, 99,230,130, - 84,167, 57,200,179,194, 91, 98,108,115,119,170,244,181,252,193,214,167, 98, 96,242, 44,156, 80, 8,222,176,159,251, 78, 69, 54, -248, 30,142,133,138, 81,125, 97,227,203, 2, 68,102,216,170, 65,211,212,232,118,187,194,148, 55,115, 3, 16, 79, 18,252,202, 36, -183,233, 69, 16,185,227,176,147, 63, 61,155,209, 48,138, 75, 10,227,219, 54,234,188, 7,113,184,131,209, 80,218,233, 10, 33,104, - 83,215,184,190,186, 2,217, 10,247, 78,142,243, 97,159, 32, 36,164, 42,226,116, 8,200,216,209,101,255,115,122, 29,125,162,143, -233,107,209,104,151,220, 52, 77,222, 41,151,221, 37,149, 66,184, 4, 49,210, 49,103, 93, 85, 98,243,106,123, 44,151, 75,124,240, -221, 15,112,188, 60, 65, 85,215, 88, 46,151, 26,138, 18,112,121,117,133,199,143, 31,227,235,199, 95,227,236,236, 12,187,221, 14, -139,197, 98,114, 64,166,253,233,197,197, 5,142, 79, 78,240,235, 95,255, 26, 79,158, 62,149,247, 96,144,248,207,192, 33, 83, 0, -147,151,222, 37, 66,155, 78, 10,162, 34,146, 89,147,180,178, 42, 60,237,154,149,187,158,129, 52,122,233,139,250,156,173, 53, 88, - 52,114, 41,177,106,115,107,187, 1,187,237, 14,126,240, 89,189,158,198,151,125, 63, 20,121,243, 38, 79, 38, 56, 70, 60,124,248, - 16,143,222,125, 23,187,237, 54,191,127,229,130, 83,161,107, 91,185, 64,177, 34, 73, 73, 4,121, 71, 71, 43, 60,124,248, 16,214, -213, 42,212,227,124,137, 33,146, 11, 22,233,190, 60, 93, 20, 82, 94, 72, 26,227, 39,247,129, 49, 70, 17,181,185, 10,229, 16, 21, - 31,162, 36, 44, 50,112,246,228, 25,214, 55, 87,226,114,104,123,189, 44, 71,120, 47,106,249,160,188,122,163,252,126, 14,227, 40, -221, 57,155,167, 21,193, 7,212,206,193,213,117, 22,118, 69,198, 24,178, 99,164,128, 70,102, 5,235, 68, 52,206,201, 78, 55, 4, - 84,214, 0, 70, 52, 11,115,145,107, 66,195, 6, 38,248, 48,160,182, 4,184, 10,125,223,131,216,139,248, 76, 49,169, 38,137,163, -137, 65,214,161, 14, 61,254,248, 71,239,225,248,131,159, 34, 4,225,190,243,208,171,216,117,124, 76, 96, 17,225,129, 36, 49,210, -247, 3,160,176, 45,104, 18,161, 53,114, 41, 36, 69,246, 90, 37,231, 25, 21, 94,114,233, 61,210,179, 54, 93, 58,131, 34, 92,229, - 14, 97,243,247,207,118,233, 28, 25, 62, 10,133, 3,166,130,222,116,244, 68, 34,232, 66, 93,237,147, 26,131,171,157,150, 17, 37, -174,118,234, 9,151,172,130, 78, 50,136,209, 72,198,123, 1,190, 33,229,179, 56,102,192, 68,220,178, 5,111, 33,187,245,164, 7, -160,253,141, 36,205,132,216,135, 14,199,186,105, 96,191,255,254,187,159,108,119, 93,182, 15, 77,133, 85,133,149,173,128,194,210, -100,103, 95, 48,215,139,223, 39, 36, 53,184,192,100,184,140,214, 44,136,244, 92,118,197,147,253,252,158,105,106,186,145,159,248, - 96, 49, 97,187,231,168,212,201, 4,128, 38,235,219,210,220,111, 48,158,234, 60, 11,153,149,108, 65,143,139,219, 30, 91,175,111, - 44, 76, 11,191, 8,112,144, 47, 9,102,130,209, 45,190, 94, 12, 57, 43,153,232, 64,107, 93, 68, 0,146,134, 91,112, 81,208, 99, - 81,140,204, 65, 1, 0,105, 84,161, 88, 75,146,235,128, 38,105,105, 83,219, 96,249, 90,112, 33, 86, 51,198, 32,244, 29,214,155, -141, 60,103,154,175, 38, 82, 17,166,252,184, 76,225,143, 31, 57,230,148,133,105,128,224,105, 87,206, 9,145,140,167,130,151, 52, -117, 72, 16,163,111,223,156,243,183,110,228,231, 63, 6, 50, 6, 67,223,227,197,203, 23,248,243,255,229, 47, 64, 49,224,249,203, -115, 44, 23,141, 48,205, 7, 63,249, 57, 89,141, 5,141,218, 81, 56, 91, 73,167, 20,163,142, 92,107, 57,240,245,114,214,247,131, -140,139,125, 40, 62, 67, 18,103, 89,170,179,203, 75,117,226,140, 31, 29, 45,241,157,119, 30,161,239, 6,188, 56,127,129,139,171, - 11, 60,126,252, 13, 30, 63, 62,195,215,223,124,141, 47,127,251, 91,188, 60,127,137,190, 23,133,117, 85,185, 59,239, 68, 85, 85, -225,236,201, 19,252,139,159,252, 4,143, 30, 61,194,118,187, 83,194, 89,151, 5,111, 49, 6,144,205,138,147,204, 97, 79,194,223, -164, 46,103, 48,130, 87,207,184,230,135, 39, 24, 14,244,128,102,229, 49,164,140,242, 90, 71,219,203,229, 10,174, 18,129, 89,223, -123,244, 67,159,207,171,218, 9,203,188,109, 91,153,254, 41,134, 53,169,184,229,235,212,104,219, 22,239,189,251, 8,111,191,243, - 16,219,205, 22, 94,109,123, 85, 85,163,235,123,161,208, 25, 85,196,235,193,251,224,254, 3, 52,205, 2, 94,113,164,233, 83, 61, -106, 56, 20,148,163, 74,109,102, 9,219,112,206, 96,217, 44, 80,213,181,138, 28, 67, 94,127, 5,150,173,106, 8, 41,247, 61,157, -189, 6, 47, 94, 94,224,246,250, 34,163,121,119,187, 45,186,190, 19,129,161,174, 28,140,238,235, 7,175, 93,177, 2,124,164,184, -169,189, 81,113,183,172, 59,112,103, 45,188,106, 54,130,174, 39, 82,225, 76, 22, 67,103, 12,156,238,180,115,228,106, 10,205,226, -241,148, 44,199,227,172,170,242, 0, 82,177, 24, 52,106, 84,118,203,136,178,210,136, 68,240,131,199,110, 96,252,240,212,227, 15, -255,244,143,113, 25,223, 69,220, 93,101,193,164, 80, 0, 45,154,218,129, 77, 45,116,187,224,197, 9, 1, 66, 31, 25,125,215, 1, -236,179,184, 50,198, 88,216,130, 85,252,166,113,166, 33, 74, 46,186, 83,193, 27, 24,133, 85, 87,166, 7, 80,198, 73,130, 59,165, - 78,123,156,224,210, 94,238, 68,234,192, 83, 19,104, 13,178,205, 13,202,152,207, 12,125, 50, 9,114,174,235, 38,221,235, 35, 33, -121, 53,198,149,121,156, 26, 16, 77,113,218, 48, 88, 16, 99, 87, 49,118,126, 5,187,219, 1,216, 20,235,131,153,166, 44, 87,216, - 89,183, 52, 47,234, 31,127,248,222, 39,126,167,182,156,136,140,130,205, 79,129,202, 17, 57,229,240,149, 18, 62, 51,229,158, 97, -210,217,115,177,216,156, 0, 90,120,127, 76, 61,247,126,207, 11,158, 57, 40,116,163,137, 16,111,174,135, 99, 42,199,192, 52,118, -247,133, 86,224,144,178, 47,249,205,137, 3,118,219, 14,189,167, 73,208,196,212,125, 53,238,241, 73,197, 84,229,149,194, 76, 68, -100,211,177, 51,205, 46, 49,163, 72, 78,136, 80,194,114,103,172,154, 6,239, 52,192,122, 59,160, 39,139, 74, 49,124,165, 48, 49, -119, 54, 58,199,183,105, 92, 88,172, 25,120,226, 17,167, 61,157,218,232, 79,167, 73,140, 40, 10, 65, 80, 74, 63, 42,215, 27, 25, - 79, 75,229,244,102,156,159,164, 15,205,189, 85,141,198, 25,172,251, 97, 98,253,200,156,130, 34,221,109, 46,164,255,239, 41,226, -119,237,163,104,126, 73, 1,112,187,190,197,175,254,135,255, 17,255,199,191,249, 63, 49,244, 45, 46,207,207, 85,184, 20,101, 92, - 24, 21,195, 99,147,236,141, 52,216,102,244, 59, 28, 47, 87, 66, 20,243, 1,117,189,192, 7,191,247,123, 88,175, 55,216,172, 55, -210,149,131, 50, 13, 77,176,200,210,129,120,181,138,149,211,175, 16, 2, 22,139, 5,250,174,197,167,159,254, 35, 62,251,205,103, - 56, 59,123,140,103,207,158,226,197,139, 23,184, 82, 34,153,181, 50,162, 77,158,244, 87,253,227,156,195,243,103,207,112,122,122, -138, 95,252,226, 23, 56,191,184,128, 15, 1, 93,219,229,142,213, 7, 25,119, 19, 40,135,154, 64, 59,103, 25,171,199,156,170,198, -170,102, 15,106,249,147,201, 5,103, 49,150, 81,228, 39, 0, 44, 22, 77, 46,254, 85,221,128, 35, 48, 12,189,130, 84,162, 22, 20, - 66, 85,215,153,230, 54,215,115,196, 24,179, 87,124, 24, 58, 84,149,195, 91,111,189,141,200,140,203,203, 75, 88, 99,176, 92, 30, -161,237, 4,193,106, 20, 89,219,247, 3, 44, 17,238,221, 59,133,117,213, 68,112, 87, 57,135,166,110, 70,212,173, 34, 89, 13,141, - 42,249,204, 14, 80,177, 95, 12,162,119,136, 42, 74, 75,151,100, 99,100, 85,195,145,177,222,108,113,113,241, 18,126, 16, 29,198, -102,187,193,102,189, 22, 97,163, 18, 4, 99, 10,246, 81, 49, 22, 41,207, 94, 18,237, 70, 59,160, 37,201,124,143, 10, 35,178,206, - 41, 69,206,103,239,127, 26, 3, 39,197,121,229,170, 81, 24,168, 59,107,131,145, 66,152, 10,159,213, 12,122,112, 74,210,171,132, -165,209,247,168,172, 16,232,134, 32, 84,183,170,170,148,149, 32,105,146,188,190,197,191,249,179, 15,241,246, 47,254, 26, 87,231, - 91,112,104,213, 61, 0, 88,226,188, 87, 39, 43, 22, 73, 89, 53, 68,244,189,228,211, 7, 47,221,108,122,109,179,101,173,116, 80, -145,198,168,199, 0, 71,156,173,101,146,216,106, 96,152,213, 46, 55,126, 14,211, 74, 76,144,253,162, 13, 17,192, 78,186,196,164, - 11, 43,143,255, 78, 58, 49,135,129,101,117,184,100,164, 87, 58,227,161, 32, 37,217,165, 91,245,249, 50,153, 61,241,184, 85,207, -112,208, 28,118, 1,233, 72, 84,177, 3, 80, 87,192,181,181,136,219, 26,166,191, 2, 76,200,237, 52,237,237, 85, 15,103, 79,150, - 59,117, 3,150, 55, 22, 71, 25, 91,148, 9, 93,166,176,122,217, 44, 48,145,255, 11,197, 94, 54,203,225,120,204,101,231, 4,182, -215, 95,143,106, 9, 73,183, 42,166,177, 83,207, 32, 25,198,164, 28,140,106,108,206,132, 55,222, 51,191,201,223, 45,153, 36,121, -220, 59,185,177,162,160, 36,209,172,101,139,152,178,254,167,212,114,231,172, 4, 26, 96, 28,233,199, 20,247, 7,181, 58, 20,109, -116,136, 5,112, 69,159,161, 35,154, 16,226,114,147, 90, 60,190, 57,148,167,252,245,206, 71, 52,247, 30,224, 47,126,244, 16, 31, -214, 17, 67, 28,127, 22,227, 24,125,180,105,177, 30,174, 84, 48,225,153,247, 6,255,147, 95,167, 66,140, 23,213,167, 89, 22,109, - 83,172, 49, 70,189, 65, 49, 65,137,242, 1, 26,163,115,227,148,120, 68,192, 77, 59,224,229,174,211,177, 93,162,237, 21, 23,147, -137, 0,143,222, 8,251,250,173,186,249,217,227,225,217, 77, 48, 42,231,252,143,254,228,231, 96, 4, 12, 33,226,195,239,127,136, -213,114,161, 59,215,132, 54, 21,219,144,188,125, 68, 92, 22, 6, 73,199, 90, 54,141,196,176, 14, 3,156,149, 61,235,131, 7, 15, -176, 90, 46, 81,185, 10, 70, 81,173, 2,147,209, 80, 23,189, 33,167, 56, 93,232,141,159, 8,168,107, 81,186,127,253,213,151,184, -184,188,144,247, 83, 85,201,248,125,181,194,106,181, 68, 93,213,122, 89, 56,120,129,223,123, 13, 34, 51, 78, 79, 79,241,183,127, -251, 31,240,228,201, 83,156,158,156, 8,179,124,185, 28, 19,174, 72,210,187,136, 8, 77, 93,195, 89,139,218, 85, 50, 30, 14, 42, -194,212,247,128,117, 38, 83,193, 72,117, 36, 70, 59,142, 52, 85,114, 78,199,212,170,214,190, 60,193, 0, 0, 32, 0, 73, 68, 65, - 84,100,142, 33, 34, 12,131,218,214, 12,154,166, 82,219, 91, 68, 93, 73,177,234,251, 62,139,189,164,155,180, 8, 1,186, 18, 25, -208,245, 45, 92, 85,225,233,179,231,120,241, 76,158,135,117, 21,252,224, 81,169,234,158,244,178,221,182, 45,252, 48,224,244,244, - 20,203,229, 42, 79,250,130,234, 35, 68,119, 32, 5,214, 90,147, 19,230,114, 65, 55, 70,231,112, 69, 98,158,230,170, 47, 22,141, -128,158, 18,189,206,138,115,226,229,249, 57,206, 47, 94,130, 99, 68, 12,140,245,122,131,118,215,102, 43,134,104, 15,164,240,198, - 40, 29,119,226, 30, 88,253, 58, 80,167,129, 85,161,159,164,212, 73,247,222, 15, 3, 98,240,249,114,149, 41, 34, 42,252,114,233, -162,161,184,222, 24,163, 52, 11,218,249,155,108, 17, 35, 12, 67, 16,117,119, 41,224,209,206, 53,157, 7,204,242, 25,136, 26,188, - 19, 35,163, 50,192,206,212,248,252,203,231,120,187,106,113,242,240, 93,172,150, 75,212,205, 50,175, 39, 36, 20, 72, 24, 2, 85, -229, 80, 85,181,192,145, 92,165,137,117,242, 24, 19,203,131,117, 87,158,184, 0, 32, 11,195,140,218,137,250,223,186, 74, 41,133, - 70,138, 59, 25, 9,121,137,138,131, 85,155, 91,250,186,242, 51,147,247,140,247, 3,134, 65,254, 63,135,144,227,176, 70,162, 40, -161,148,128, 91,102,144, 5,130, 22,246, 68,224, 19,203,186,145, 28,120,162, 60,201,142,145,244, 28,140, 57, 4, 76,133,251,242, -235, 49,130,163, 84,199, 30,140,147,200,248,206,209,128,248,240, 20,236,190, 3, 40,199,127,234, 54, 42,237,234,229,194,121,127, -133,105, 63,250,224,209, 39,109,219,107,184,251, 84,185,157, 71, 21, 52, 38,144,229,155, 96,161,152,206,137,101, 51,176, 8,229, - 41,187,201,221,236,168, 42, 47, 96, 45, 57,254,110,252,122,243, 35,157,243, 86,151,114, 91, 75,135,250, 47,154, 2,107, 80,126, -205,100, 59, 43,118,239, 84,248,201,185,192, 94,142, 48,151,113,100, 98, 10,156,236, 92,224,149,114,216,179,192,189,244,217, 23, -107,130, 88, 22, 68,236,131,104,230,234, 2,104, 23, 7, 63,224,233, 54,226,193,187, 15,241,190, 29,112,118,221, 35, 26, 26,247, - 60, 41,122, 53, 33, 30,139, 31,183,161,241, 66,147, 14,126,240,126, 51, 87, 54,190,113, 79, 88,198, 19, 85,186, 81, 14, 53, 51, -207, 60,139,188,111,197,160, 98,140,172, 15,212,166,231, 62,210, 77, 71,238,124,161,214,167, 3,157, 57, 21,174,133,223,165, 67, -103,236,183,231,133, 57, 18,126, 24,224,234, 5, 62,252,254, 7,184, 56,127,137,118,215, 97,232,122, 57,252, 45,101,178,151,213, -177,172,115,162,242, 94, 52, 13,238,159,158,162,105, 22,176,206,225,104,121,140,186,174,113,113,113,142,207, 63,255, 28,100, 44, - 78, 78,100,215, 43, 29,176,230, 84, 39, 22, 66,145, 72,134,130,168,119,255,254, 61, 60,121,252, 24, 23, 23,231, 88, 44,151,133, - 93,134, 14,174, 16, 14,128, 16, 15,254,160,235,186,198,211,103,207,112,114,114,130,159,255,252,231,184,184,184,192,224, 61,186, -182,205,172,247, 48,248, 12,199,145,168, 82, 89,239,164, 11,163,216,236, 18,147,221,170, 19, 32,100, 62, 64, 10,250, 72,115, 43, - 17,186,169, 23, 62, 74, 23,190, 80,172, 43,171,128, 73,252,224, 6,219, 93,139, 97, 24,242, 4,209, 24,163, 42,194,152,187, 48, -105,182, 4,200,115,124,124,132,197, 98,133,203,203, 75,112, 8,120,251,225, 67, 1,213, 12, 67,118, 36, 84,206,226,221, 71,143, - 96, 92,149, 65, 55, 64, 68,173,106,249,224, 61, 42,107, 97, 43, 7,231, 42, 21, 62,202,186, 66,246,219,148,139,112, 58, 63,162, -254, 28, 43,107,177, 88, 52,232, 7,209, 55,172,215,183,216,110,214,224, 16,209,117, 61,218, 93,139,161,239,209,171,101, 80, 44, -141, 94,127,238,148, 5,170,100, 36,173,175,170,170,241,115, 81,112, 13,162,166, 48, 70,133, 26, 9, 5, 47,102, 49, 85, 34,247, -213,106, 73, 75,239,173, 68,167,148, 75,101,157, 93, 22,169, 57, 75,160,151,170,178,106,243, 10,185,192,203,100, 64, 20,254,198, - 42, 26,150,165,192, 53,206,224, 50, 46,241,127,253,223,255, 9,191, 60,253, 2,191,255,175,254, 26,103, 47, 6, 96, 88,231,239, -111,245, 57, 89,107, 17, 64,232,123,175,133,213,131,131,151,247, 21, 35,175, 15, 69, 55, 23, 50,219,195,164,179,206, 90, 97,224, -235,197, 36,194, 72,198,122, 12,217,103,110, 72,210, 39,105, 50,241, 43,128,101, 70,214,130,134, 35,200,112,206,100, 79,171,176, - 34, 37,123,156,216,106,242, 91,240,105,244, 47,152, 94, 67,106, 67, 84,237,152, 73,122, 46,155,138,128, 41, 86,217,156,137,152, -166, 92,106, 71,224,190,141,216, 44, 9,155,225, 62,236,102, 11,166, 53, 64, 14,135, 54,231,147,226, 78,211, 74, 89, 55, 13,236, - 71, 31,188,247, 73,219,118,121,207, 18,181, 8, 19,166, 35,111, 46,110, 6,163,200, 95, 21,231, 19,162, 92,178,159,205,110, 24, -179, 29,110,182,143,229, 49,136,201, 80,155, 52,138, 53, 7,198,164,163,238,107, 74,136, 59, 92,216,203,196,176,113,199, 79, 92, -118,134,132, 67, 8, 59, 58, 96,155,102, 26,187, 72,179, 55,238,159, 49,230,169, 28,214, 72,138, 27,102,197,148, 39, 33, 38,148, - 89,197, 99,224,202,168,221, 38, 99,224, 66,135,175,158,223,226, 89,207,154, 28, 87,140,245,205,204,183,142, 2,231,155,189,231, -152,230,161, 31, 56,245,121,246, 26,242,108,173,194,115, 55,120, 26, 59,149,247, 40, 42,199,234, 92, 98,233,212,122, 82, 22, 84, - 42, 10,246, 8, 26, 38,218,215, 64,148,143,247,119, 46,236,124,160,147,157,125,137,170,174,241,207,159,126,138,123,247,223,194, -123,143,222,193,217,227,199,184,185, 93, 35,248,168,135,187,140,175,211,104,116,185, 92,226,104,117,132,251,247,238,193, 26,135, -231, 47,207,113,113,121,129, 39, 79,206,240,245,215, 95,227,233,211, 51, 92, 94, 94,226,250,230, 10,235,219, 91, 69,181,174,112, -124,114,146, 59, 25, 81,207,138, 8, 45,249,204,125,240,120,240,224, 1,214,183,183,248,237, 23,159,139,250,249,128,192,148,103, -207,137, 95, 51,169, 40, 95, 79, 34,194,217,217, 25,126,246, 71, 63,195,233,233, 61,172,111,215,232,186, 14,219,205, 46,123,233, -189,238,141,173, 66,112, 66,224,137,184, 50,123,163, 73,216,236,146, 25, 95,229,247,137, 81,104,138,104, 37, 68,153,221, 52, 53, - 12, 89,116,125,175,226,189, 74, 73,105, 42, 34,212,113,127,204,161, 49,177, 32, 80,154,172,150, 21,123, 98,196,106,185,192,195, -183,223,193,242,104, 5,223,123, 92, 95, 95, 97,177, 88,194,185, 10,219,237, 38,119,185, 71,171, 21, 78, 78, 79,117,236, 45,193, - 54,137, 59, 15,142,217, 30,150,198,181,206, 24, 44,151, 11, 25,167,171,111,190,174,235,124, 57,241,106,233, 51, 68,168,106, 7, -178, 14,183,183,107,108,214, 55,138, 51, 21,246,124,187,107,209,117, 29,218,174,205,103,104, 44, 96, 79,137,152,151,244, 14,117, - 37,138,126,171, 23, 9,185, 68, 37, 44,176, 8,122,201, 90,180,109,139,138, 0,178,174,176,164, 34,159, 25, 33,253,123,194, 69, -235, 36, 40,101, 65,248, 32, 93,163, 92,208, 40, 11,243,160,171, 32,240, 8,247, 50, 36, 59,230,146,116,103,228,195,128,203,235, - 45,206,158,159,227,171,255,246, 95,241,103,127,120, 10,126,255, 87,184,120,114, 6,239, 7,132, 97, 64,101, 5, 48,100,157, 20, - 64, 31, 34,250, 97, 64,223,246,224,232,243,212, 39, 93, 44,242,120,220, 72,209,182,196,136,100,243, 36, 48,167,248, 97,220,161, -151,197, 46,219,176, 83, 34, 93, 18,178,209,120, 62, 59, 35,116,184, 62, 90,144,247, 48, 38,200, 74,161,248,124, 68,150, 75,188, - 37,150,252, 3, 99, 17, 34,193,241,160,154, 3, 43,153,173, 20,199,216,112, 83, 84,172, 12,223, 26, 11,175, 73, 12, 18,213, 36, -249, 24,177,136,140,227, 69,192,229, 98, 1,191,187, 7,219, 93, 0,102, 56,236, 93,191, 99,151,200,201,210,246,241,247,164, 83, - 23,182,176,201, 74,109,123, 0, 28, 51, 22,247,132,135, 68,238,200,137, 32, 59, 92,140, 29,249,254,150,123,191,179,224, 61, 58, -218,156, 38, 55, 45,156, 6,251,187,239,195,222,100, 51,235,230,199,113,191, 41, 11, 86, 33,142, 51, 52,165,175,149,170,249, 60, -138, 46, 71,156, 37, 65,141,138,208,149, 12, 58, 41, 10, 59,141, 63,204, 67,227,224,185,211, 32, 97, 74, 38, 59,111,178,168, 72, - 19,179,178, 96,143,139, 11, 1,221,125,168, 39, 53, 60,237,191,166,184,227, 53, 44,133,136,211,230,118, 86,218,103, 2, 16,154, -203,203,231,237, 35, 79, 97, 54,129,199, 96,141, 66, 93,148, 61,166, 18,187,233,117, 12,247,223,151,234,114,144, 49,176, 71,160, - 51,224,224,241,248,236, 9,222,127,255, 3, 12, 93,139,155,219,117, 86, 33, 87, 85, 5,231, 28, 78,142, 79,113,239,244, 62,200, - 24,172,215,107,252,230,139,223,224,159, 62,251, 20,223, 60,254, 26, 47, 95,190,196,250,118,141,126,232, 85,177, 75,232,251, 30, -183, 55, 55,184,186,186,196,245,245, 21, 54,155, 53,188,247,104,154, 5,142,142,142, 80, 87, 85,246, 52,135, 16,240,246, 91, 15, - 17, 67,192, 63,252,215,255, 34,118, 45, 5,183,220,241,146,190,118, 85,145,179,165,203, 29, 92, 93,227,249,243,231,168, 92,133, - 95,253,234, 79,113,115,115,141,109,219, 9,229, 43, 9,175, 34,103, 8, 81, 58,232,141, 49, 19,108,108,226,192, 7, 29, 75, 87, -105,119,170, 63,201,152,164,227, 49,141,157,173, 42,162,229,242, 66, 96, 44,154,101,110, 20, 82,103, 29,124,208, 46, 78, 30,195, -152, 16, 55, 94,234,141, 70,141,222,127,240, 0, 71, 71,199,216,108,183,184,186,190, 70,211,212,168,155, 6,125,215, 74, 78,125, -136,120,251,173,183, 80,213,141,130, 86, 40,239,143,211, 20, 38,117,186, 73,189, 47, 17,174, 62, 59, 19, 42,237,224,219,174, 87, -107,153, 92,194, 22,203, 37,186,193,227,252,226, 2,221,110, 43,170,246, 16,208, 15, 30,125,219,129, 99, 64,239, 61,134,174,147, -125,173, 90,184,156,138, 70, 41,199, 9, 3,174,178, 10,151,161,188, 94, 75,150,188,228,187, 33, 99,176,237,122,248,174, 69, 93, - 59,176, 49,210,229,107, 1,119, 58, 22, 14,154,192,150,200,134, 6, 2,124, 1,139, 94, 66, 68,103, 34, 94,180,214,130,181,208, -203,206,221,142, 57,246,121, 95, 45,190,112,103, 12,140,179,168,157,193, 54,214,120,122,246, 2,199,124,133,207, 46, 43,216, 39, -255, 31,254,242, 47,255, 4,207,233,135,232, 46,207, 68,220, 72, 12, 91, 57, 84,214,194,213, 53, 6,182,216,238,122, 12,109,139, -224, 7,141,160,142, 48,136,218, 73,143, 76,141,196,195, 71,234,118, 11,248, 76,154, 90,229, 40,212,217,231,188,140,230,206, 21, - 76,245,207, 2,149, 49, 51, 79, 59, 70,132, 46,171,197, 56,217,117, 33,148, 61,214, 95,116,196,136,198,202,123,145, 99,238, 24, - 56, 53,172, 44, 73,165, 73,100,156,166, 3,169, 17, 34,178,153,220,234,153,112, 15, 64, 92, 6, 92,210, 61,152, 53, 64,254, 92, - 51,215, 15,147,230, 48, 59,199, 9,132,186,169, 97,127,248,123,239,125,210,247, 93,174,100,113,175, 99,163,169,101, 42,191,152, -152,174,242,139,130, 56,231,137,196,212,253, 38, 70, 57,205, 75, 26,101,112, 9, 49,205,192, 57,101,120,202, 84,156, 86,142,204, -233,192,120,162,188, 29,205,117,117,124, 64, 80,151,113,190,147, 75,195,200,238,133,122,167,247, 10, 33, 77,249,105,229,101,128, -139, 67, 55, 98,218,105,230,164,174,242, 37,204, 66,196,233, 52, 33,103,220,155,169,106, 19,234, 11,143, 41,184,128,202, 9, 6, -231,177,229,152,165, 50, 93, 93,240, 28,180,243,170,130,144,109,130,233,177,242,100,100,207,133, 39, 84,188,217,179,206, 61, 79, - 95,104,178,219,141,197,139, 68, 5,254,141, 33,222,219,163,163, 35,156, 30, 47,177,107,219, 60,101,249,182,149,156,103,194,187, -169,180, 98,140,219, 69, 33, 56,185,186,186,192,203,243,115, 60,124,231, 29,172, 86, 43, 52,106, 73, 91, 52, 75, 44, 22, 43,180, - 93,135, 47,191,254, 18, 95,252,246, 11,124,249,213,111,113,126,126, 14,239, 7, 84, 85,133,202, 85,186, 67,116,249,155,217,188, - 87,116, 24,134, 30,215, 87,151,184,186,188,192,213,213, 37, 54,219, 53, 34, 51, 22,203, 5, 6, 47, 2,163,161, 31,240, 15,255, -240,119,216,237,118,104,116, 79,127,215, 45,133, 14,195, 18,247, 46,118,124, 0, 90, 81, 85, 21,190,250,242, 75,252,224, 7, 63, -192,195,119,222,198,237,205, 45, 78, 78, 79,176,107,119,216,109,219,169, 20,135, 19,148,100,100,251,139,182, 96,100,136,167,233, -140,181, 70,126, 47, 89,128,136,100, 23,175,129, 47, 86, 61,225, 73, 11, 82, 57, 39, 35,213, 52, 94,143, 17, 67, 63, 32, 66,236, -104, 9,184,228,117, 44,156,246,159,117, 93, 97,209, 44,208,118, 61,110,110, 55,184,185,189, 70,244, 17, 77, 85,225,232,104,133, -182,237, 48, 12, 3,150,139, 26, 15,222,122, 75,173, 85,114,216, 46,151, 11, 24,107, 53,151,158,116,148,171, 89,244,214,100,152, -144,213,221,121,100, 73,191,227,200,130,230, 93, 52,176, 85,133,245,102,135,139,151,231,216,237, 54,138,178, 21, 65,218, 86,189, -255, 62,120,197,165,170, 67, 69,221, 17,146, 33, 16,224,131,151,136,217, 74,118,197,198, 58,228,189,131,238,244,211, 89, 97,201, -160, 29, 2,218,237, 22,206,161, 72, 31, 99, 29,179, 71,201, 0,136, 0,179, 40,241, 37,128, 45,228,233,138, 33,249,185,167, 51, -222, 89,161,190,181,157, 7,180,115, 54, 42, 34,140,105, 40,109,148,178,102, 13,152,101, 95,221, 52, 13,158,173, 35, 46,159,124, -131,138, 91,212, 71, 71,248,187,223, 92,225,167,199, 79,241,147,127,245, 87,120,252, 50,194,244, 55, 42, 48, 52,168,107, 11,114, - 53,250, 8,220,110, 58,180,155, 53, 98,232,229,185,234, 10, 32, 42, 16, 39, 17,253, 28, 1,209,168, 25, 95, 71,231, 73,153,110, -212, 93, 65,214,192,144, 69,229,128, 64, 85,206, 79, 15, 0,140,134,221, 8,102, 86,186, 99, 67, 12, 38, 39,197, 73, 47,139,148, -237,165,197, 10,152,120, 2,255, 33, 22, 87,192, 0, 11,246, 12, 75, 30,100, 92,138,186, 43, 34,183, 49,186,192, 76,154, 24,152, - 49, 1,115, 90, 64, 16,212,206,123, 68, 17,183, 53,163,237, 78, 97,183,183, 32,218, 74,230,250, 29, 57,171, 60,171,184, 82,212, - 63,120,244, 73,183,235, 17, 2,193,207,207, 10,125,112, 86,187,112, 20,105, 93,169,139,179,197, 8,112,204, 77,199, 4, 13,202, -123,244, 48, 2,221,161, 67,102,226,189, 96, 23, 46,130,101,128,105,183, 61,245,157, 23, 32,253,194, 76,198, 52,159, 14,148,154, - 1,168,223,190,188,109, 76,247,239,156, 85,145, 52, 27, 73,207,208,178, 5,252,166,124,158,165,112, 49,149,215,136, 41,247,158, -230,221,242,100,133, 64,147,113,189, 49, 52,129, 42, 16, 97,162,122,205,136,213, 50, 52,133, 74,244,207,184,235, 63,188,175, 17, -244,235, 62, 73,117, 54,137, 56, 48, 23, 32, 46,231, 14, 52,209, 28, 48,128, 74,215, 4, 67,142,104,228,233,243,167,105, 51,190, -107,183,248,254,199,127,128, 31,127,252, 3,124,245,197,231,136, 48,121,207,246,173,148,113, 37,168,175,116, 85,206, 49,189, 52, - 18,209,154,197, 2, 23, 23, 23, 56,123,114,134,237, 86, 60,197, 12,194,245,205, 53,126,243,197,231,248,244,179, 79,113,246,228, - 12,187,118, 7,107,173,142,101,221,204, 66, 74, 88, 45,151, 96, 78,153,228, 35,187,221, 85,149,168,151,135, 1, 55, 55,215,184, -188, 56,199,203,231,207,113,126,113,142,171,139,115,124,253,245,111, 49, 12, 61,154,102,161, 54,179, 3,245,156,238,240,224,191, - 18,198, 51,253,236, 56,231,112,123,123,139,203,171,107,252,252, 79,126, 14, 70,196,197,197, 21,174,174,174,115,129, 45,111,236, - 82, 36, 66, 46,234,172, 1, 50, 41, 17,142,149,166,231,156,205, 23,189,100,107, 74,244, 61, 73, 60, 83, 56,139,118,132,131,151, - 76,244,190,151,160, 28,231, 36,138, 53, 79,141,162, 20,148, 52,146,119,149,131,181, 14,139,166, 70,179, 88, 96,187,221,224,246, -230, 90,124,217, 77,141,197,162,134,177, 78,237, 98,140,119, 30, 61, 66,211, 44, 68,245, 29, 34,156, 37,212, 77,131,200, 82,196, - 83,104, 78, 83,139, 29,144, 33,221, 58,171,170,191,169, 43, 13,120,145,130, 44,159,127, 73,214, 59,127,121,142,190, 19,159,252, -224,133,136,215,118, 3,118,187, 22,155,205, 6, 93, 43, 42,124,161,151, 89, 29,163,203,197, 36, 68, 81,129, 87,214,194, 85,117, -126, 79, 86,117,149,181, 71, 80, 53,189,209,105,104,223,117,112,102,228,223, 15,131, 87, 49,171, 81,203,159,136,232, 42, 55, 10, -254,132, 81, 31, 51,229, 47,157, 25,253, 32, 59,121,137, 0, 15,250,117,144, 29, 3, 46, 77, 13,184, 8,140, 81,114,100,103, 44, -206,158, 94,193, 95,157,193, 84, 14,181, 33,172,177,196, 55,159,126,138,127,253, 39,167,224,247,255, 37,118,231, 79,101,204,237, - 25, 6, 30,206, 89,248,104,176,222,118,216,221,222, 2,161,203,107,130,164,112, 79,246,214,228,136,177,202,133, 48,218, 62, 19, -138, 96,158,204, 52,129, 8, 45,141,203,232, 88, 73, 87,139, 57,228,199, 88, 97, 12, 68, 21, 28,178,170,208,193, 34,214, 19, 27, -190,153,106,187,210, 42, 64,250,110, 41,236, 36, 35,125, 10, 17,108,130, 8,249, 82,168, 19,132, 6,137,188, 10,136, 89,251, 65, -229, 90, 86, 95,103,210, 61,191,103,194, 42, 2,166,242,184,180, 11, 96, 83, 1,195,121, 82,254,189,150, 52,151,199,239, 31,190, -175, 66,185,172, 36,151,234, 19,114, 20, 43,246,108,104,172,217,207,115,223,114,217, 1, 71,154,118,155,148,177,173,249, 86,144, - 21,226, 37,201,141,139, 48, 24,162,185,254,111, 90, 96,112,240, 48,147,189,208,202, 24,221, 99,115,246, 74, 27,218, 31, 95,228, -132,181,121,167, 61, 43,178, 84,192,229,203,209,187, 33,236, 45,203, 71, 81, 93,122,189,104, 70, 85, 43, 58,195,244,186, 48, 50, - 52, 71,185, 51,123,129, 52,121, 39,150,119, 92,242,198,136, 60,130,112, 38,126,247, 61,101, 36,237,101,173,240, 29,197,157,247, -113, 53,123,251,109, 42, 43,203, 30, 62,103,204,134,159,112,248,213, 2, 99, 74,112, 78,202,226,158, 12,205,180,224, 88,135,237, -118,141,103,207, 94, 40,110,213,252, 78,222,181,156,207, 83,254,236,153, 95,123, 27,168,235, 10,193, 15,184,188,188,192,139,151, - 47,240,236,249, 83,156,233,142, 60,117,244, 9, 78, 50,231, 59,141,145,152, 70,242,166,231, 84,190, 98, 42,224, 84, 65, 27, 66, -128,247,157, 88,175,140,116,110, 99, 97,221,239,206,185,216,218,188,234,170, 19,239,176,239,165,255, 94, 46, 22,248,234,171,175, -176, 90, 29,225,199, 63,249, 9,190,249,230, 27,116, 93, 43, 62,109, 40,132, 38,137,177,244,242,216,123,175, 5, 90, 68,116,201, - 31, 29,162,207,201,112,233,155,141,246, 51, 25,223, 87,181,131,173, 68,112,149,108,101, 33, 4,196, 16,177,219,237, 16,189,151, - 11,143,218,217,140,138,209, 70,238,130,102,160, 87, 14,171,213, 50,175,184, 86,171, 37, 42,167,191, 70,132,229, 66, 66, 90,142, -143,143,241,224,193,219,168, 84, 11, 17, 35, 75,209,100,233,156, 43, 87,101, 16,144,179,226,175,174, 43,201,201,102,181,232, 37, - 24,143, 49,163,103,223,135,136,155,219, 53,218,221, 6, 78,211,219,140,174, 41,118,219,173,138,227,186,252,218,164, 8,101,163, -194, 53, 25,251, 27, 61,183,237, 36, 61, 77,154, 99,171,124,132,144, 41,114,221, 16,208,119, 59, 88,167, 9,100,198,170,229, 50, -192, 57, 81,241, 71, 16,134, 32, 81,171,198,184, 44,228, 35,235,178,178, 62, 9, 18, 51,164, 70,211,238,172, 33,212,149, 67,132, - 68,209, 58,107,114, 88,132, 80, 18,117,100, 95, 59, 60, 95, 51, 46,206, 30,195,241, 26,100,132,209,176,106, 12, 62, 59, 55, 88, -188,252,123,252,213,191,254, 5,158,154,143,112,243,242, 41,216,239, 36, 75,192, 48, 60, 12,182,219, 30,221,110,135,224,123, 25, -243,235,238, 58,217,222,108,122, 95, 48,129, 67,144,100, 58,213, 39, 57,231, 16, 52,123,157,195,152, 29, 31,153, 96,120,180, 48, -202,215, 32,144, 85, 2, 93, 20,251, 90, 36, 51,138,253, 16, 71,187,162, 25, 83, 9,161, 66, 64, 76, 88,112,105, 61,205, 32, 75, - 8,112,162,142, 55, 44,206,136, 66,147,149, 70,252, 12,245,157,231,244, 56, 32,210,184,139, 79, 53, 47, 0,176,145,112,108, 2, -214, 13, 99,235,239,193,110,118, 0, 95, 75,183,254, 6,189, 75,211, 52,176, 63,252,222,187,159,116, 93,159,173, 80,113, 6,109, - 25,125,232,194,114, 79,157,115,156, 88,225,167, 65, 47, 99,103, 54,237, 40, 81, 28,240,229,222,149, 38, 93, 97, 25,247,202,179, -145,126,217,114,239,247,152,196, 17,145, 42,216,166,198, 59, 21,195, 6,198, 78,199,255,134, 15,116,158,229, 1, 60, 3,222,204, - 41,118,121, 87, 82,196,146, 16,141,143, 41,239,233,153,246,124,251, 84,132,214,100, 34,122, 94, 87,140, 2, 57, 91,142,169, 13, -129,253,128,155,157, 7,172,133, 51,156, 71,142, 25, 53, 72, 69,170, 94,217,137,205,224, 37, 40, 71,203,119,220,240, 38, 43, 3, - 85,215,210, 1, 33, 26, 29,184, 68, 77,126, 30, 60, 37,216, 81,209,253,115,226,158,207,174,156,204, 50, 74,107,148,144,197,179, -253,246,208,183,216,238,118,154, 16,246,122, 0,205, 94,225, 44, 11, 59, 24,111, 98,111, 47, 61, 14,148,186,106,181,178, 9, 27, -189,206, 10,230, 59, 63, 97,250,141,164,139, 58, 44,234,227,153, 78,193,104,231,149,189,230,135, 30,236, 44, 54,160, 92,221, 28, -170,236,204,123,242,198,253,159,165,162, 50,191,248,226, 11,188,243,240, 33,222,122,240, 0,237,110,135,161, 31,176,221,182,232, -251, 30,174,114,153,156,102,173,236,109,193, 17,174, 18, 44,106, 55, 12,233,100, 29,225, 67, 80, 66, 26, 72,195, 68,164,219,174, -154, 70, 71,178,233,240,148, 3, 58, 38, 27,166,106, 41,188,118,189,201,219,159, 94, 53,107, 44,150,171,133, 88,249, 82, 20, 38, - 67, 11,250, 2,171,163, 35,132, 16,112,122,114,130,247,190,243, 30, 8, 22,214, 73, 42, 92,208, 0,148,213,234, 88,188,203,131, -207,132,184,196,103,144, 41,130,211,139,168,162, 84, 35, 52, 66, 87,158,230,224, 35,110,110,111,208,110,215,176,198, 96,240, 1, - 78, 59,178,182,235,209,117,194,112, 39,237,158,141,181,121,146, 17, 98,204,226, 48,107, 68,181, 76,198,102,123,157,117, 90,176, -244,179,200, 58,246,142, 32,236,182, 59,128,125, 30,235,138,136,110,116, 79,144,234, 2,162,134,174, 36,230,187, 49, 14, 93, 63, -128, 56,228,206,143,138,219,118,154,208, 25,167,126,116, 68,248, 40,150, 93,227, 44,130,103, 88,138, 48,206,193, 89, 66, 75, 14, -103, 79,174, 16,174,207, 84, 0, 55, 54, 47,174,105,240,247,159,189,192,175,223,189,198,251,191,250,223,240,248,108,141,198, 95, -225,222,201, 18,177, 90, 98,211,121,108,119, 29,134,118, 7, 63,244,170,128, 31, 91, 9,217, 38,202, 5, 74,194, 87,164,232, 59, - 67,168,172, 5,108,165, 9,104,113,140,146, 86, 27,168,209, 93,117,174, 78, 58, 82,143,172,151,235,114,207,174, 12,251,202, 64, - 69,112, 22, 14, 94, 46, 1, 24, 87,130,227,191,115,177, 82,100, 12, 76,160, 0, 88,242,128,113,179,124, 17, 86,207,188, 29, 27, -156,252, 44,149,138,168,150,106, 34,249, 83,158,128, 37, 91, 24, 23,112,101,107,240,182, 1,245, 23,128, 9,152,145, 90,166,145, -172,147,162,254,193,163, 79,218, 93,135, 16, 24, 65, 51,229, 99, 62,180, 77,246, 18,151,132,155, 81,200, 54,203,221, 34,154,188, -152,177, 24, 97, 32,191,184, 60,139,204,222,175, 50, 84, 92, 24,152, 74,120, 44, 79, 44,106,152,239,218,139,226,217, 6, 70,199, - 12,207,227, 15,128,248,112, 87, 58,233,196, 49, 21,215,241, 4,166,195, 7,198,238, 26,187,170,105, 70,160, 3, 60,123,218, 95, - 59, 80,158, 16,232, 27,185, 16,246,177,238,227,226,226, 20,127,252,225, 61,184,110,141,139, 65,125,145, 51, 79,117, 9,180,201, -195, 2,162,153,130,159, 15, 40,190,169, 72,145, 27, 47,112, 0,233, 14,145,178, 56,240, 46, 87,128, 88, 27,139,236,102,208,193, -226, 51, 87,219,115,169,200,215,164, 47, 34,225,161,139,231,118, 90,152, 41, 21,185, 55,248, 71,254, 28, 31, 44,108, 9, 49,154, - 64, 28,119,121,190,230, 83,167,137,187, 33, 9,115,238,250, 75,186,131,224,217,123,235,110,149,190,234, 33,166, 30,208, 81,252, -248, 26,242, 61,207, 31, 40,189,122,143, 78,251,247,130,145, 70, 85,213,216,237, 90,124,249,229,151,248,224,253, 15,208,212, 53, -118,109,171,108,114,171,100, 56,205,219,142, 17,141,142,135, 7, 47, 29,118, 84,113, 88, 10,109, 73,251, 95, 31, 5,151, 74, 32, - 37,231, 25,165,184, 73, 55,108,140, 88,210, 82,204, 40, 17, 52, 83,126,196, 49, 11,249, 77,254,188,181, 6,205, 98,145,211,210, - 18,122,182,170, 37, 51,190, 89, 44,132, 72,167, 46,130,251,247, 31,192,168, 40,198, 89, 7, 50,132,197, 98,137,109,219,225,246, -230, 70, 47, 81, 70,119,220, 4, 87, 73,199, 22, 52,248, 39,161, 74,119,109, 43,105,123, 12,244,222, 99,189, 94,163,221,109,117, -132, 43,227,220, 36,114,220,238,118,232, 90, 65,222, 66, 51,194,165,203,135,174, 92,188, 70,152, 42, 15, 93, 61,233,214,144, 76, -103, 88,144,174,194, 54, 39, 13,113, 1,186,174, 3,199, 33,231,202,155,164, 96,215,175, 69,133, 21, 52,147,252, 66,196,178,174, - 17,137,164,168,233,215, 78, 22, 49, 82, 22, 71,132,209,136, 93, 17,116, 25,125, 13, 44, 69, 24,227,244,162, 16,176,172, 12,170, -197, 18,103, 87, 1, 87,103, 95,162,194, 14,108,170,201,210,181,177,140,139,176,196,243,207, 63,197,159,255,252, 45,248, 71,191, - 4,110, 47,113,116,188,128,119, 43,220,174, 59, 92,223,172,209,111,214, 64, 28, 84, 91,163,159, 81,200, 52,207,251,168, 36, 70, -206,107, 68,147,167, 29,226,187,151, 40, 85, 37,150,242,216, 4, 38, 84,107, 36, 41,252, 17, 52, 70,190,178, 81,242,219,184,190, - 96,114, 57,212, 6, 41,173, 79,191, 71, 42,252,169,131,231,210,216, 76,128,143, 6, 54, 6, 24,203, 50,250,199,184, 15,205, 66, -195, 92, 63,120,140, 99,229,176,247, 41,148,221,186,193,137,137,216,214, 17,155,112, 2,179,241, 64,184,206, 89,242, 7,202, 74, - 94, 69,212, 77, 13,251,131, 15, 30,125,210,183,189,140, 34,202, 18,160, 42,111,155, 8, 63, 84,170,198,229, 73,197, 73, 97,165, -195,177,171,147,225,186, 90,213, 40,113,224,203,125,248,236,176, 49,178,175,231,188, 43,231,209,112, 79, 51,235,218,252, 58, 16, - 3,134,136,188, 66,200, 40, 90,194, 12,107, 50,165,188, 97, 82,192,161, 54,187,148,234, 85,228,201,143,213,102,202,101,215, 34, - 29,185,236,136,247, 47, 11,153,154, 84,164,215, 17,141, 66, 66, 16,129,124,139,120,255, 67,252,244,199,239, 98,115,246, 21, 94, -116, 22,181, 53, 99,162, 87, 49,213, 72,254,120, 99,104, 58, 90,166, 67,227,241,125, 85, 85,249,156, 98,100,172,142, 78, 80, 89, - 66,219,245, 51,158, 63,221, 49, 44,161,172,158,163,195,171,246,241, 22, 80, 50,249,139, 11, 23,107,228,231,212, 1,240, 45, 86, -231,218,205, 29, 29, 31, 35,134,128,193,135, 49,207,126, 38,126, 36,122,181,237,107, 46,210,124,227, 44,247,194,197, 87,170,248, - 95,247, 87,168,216, 11,150,184,251, 87,174, 7,232,141,126,105,166,112,193,193,142,189,188,158, 54, 77,131,151, 47,207, 97,173, -193, 47,127,249,115, 92, 94, 94,104,151, 26,115,214, 58,145, 81, 49,159, 40,199,179,175, 62, 65,135,212,250,101,180,227, 76, 1, - 46,178, 3,183,249, 53,106,154, 58,167, 61,166, 75,238,152, 77, 63, 46, 12, 40, 33, 87,139,174,171,105, 26, 1,220, 88,202,226, -179,202, 89, 28, 29, 31, 33, 68, 66,136, 1,171,213, 10,195, 32, 66,177,166, 89,228,231,185,168,107,116, 67,192, 87, 95,127,141, -151, 47, 94, 32,114,196,201,241, 49, 22,139,165, 42,249,157, 16,244,148, 20,215,182, 29,174,175,111,112,123,115, 45,222,105,107, -209,181, 29,182,155, 13, 98,244,112, 85,157,197,108, 62, 4, 12,131, 23,113, 94,223,139,242, 91, 71,234, 65,199,196, 80, 55,128, -181,178,130,180,214,229, 29,189,202,175, 53, 98,151,139, 32, 17, 33,252,121, 63,228,116, 52, 67,138, 76,133,192,104, 18, 94,213, -144, 36,251, 73, 33,146, 83,148,201,162,237, 7,105, 12,156,153,124,110, 68,201,238,198,194,169, 44,126, 50,144,181,138, 66,116, -157, 19,150,191, 53,140,219, 88,225,236,241, 75,240,237, 83,152,202, 29,124,223,173, 26,139,127,122, 22,241, 96,251, 25,126,245, - 47,127,142,103,253, 35,244,219, 43, 16,123,244, 17,184,190,109,209,175,111, 0, 30, 50,249, 77,143, 85, 48,100, 61, 65, 28, 68, -203,198,170,237,178,201,114, 39, 83,133,132,143,229, 34,115, 87,232,168, 33,191, 95, 2, 75, 82, 34,171,203, 34,139,147, 83,147, - 65,132,192, 86,197,122, 12,207, 6, 20, 2,172, 9, 96,227,212,199, 46,171,129,140,155, 75,142, 2, 2,172, 5, 2, 52,202,149, - 99, 78,141, 99, 98, 16,155,172,140, 55,154, 18, 7,205,117, 55, 38,234,186,197, 78, 38,171,129,129, 5, 24,182,138,184,180, 53, -194,110, 5,211, 94, 1,166,211,193,255,221,159,113,237,212,223,249,164,219,117,185, 67, 47, 67, 82, 98,105, 1,162,100, 61, 82, - 63,123, 2,226,211,225,125,107, 44, 13,222, 68, 7, 78,158,187,108,111,251,138,119, 20,133,125,158,162, 6,162,125, 1, 16, 81, -177,251, 43, 11,123, 65,132, 43, 46, 19,243,200, 82,154, 36,212,141,171,128,137, 2,188,180,135, 81, 49,112, 39,154,238,202,203, -201,120,246, 79, 74,151,226,244, 54, 16,117, 34, 66, 5, 68,198,184, 26,102,119,133,191,251,244, 12, 55,188,192,189, 70,118, 96, -113, 2,170, 41,198, 65,251,125,116, 81,208, 49,205, 92, 63,144,234, 6,140,174,134, 97, 24,208, 15,126,242,124,247,187, 87,154, - 76,108,246,199,201,251,223,135,177,239, 79,207, 99,103,204, 30,235, 29, 35,245, 57,128,102, 46,112, 75, 7, 49, 79,118,207,227, - 90,131,249,205,198,239,251,162, 50,122,163,130,158,213, 71,111,242,119,138,251, 59,205, 46, 73, 7,133,238,140,169, 37,145, 94, - 83,208,153,247,186,243,215, 93, 2,160,135,247,229,213, 21,254,236,207,254, 2,223,121,247, 29,188,120,241, 66, 3,102,100,255, -235, 67,148, 72, 90,125,204, 86, 59, 93,168, 7, 93,212,237,172,187,105, 81,154, 75,126,122,178,136, 5, 84,117,133,170,174,100, -188,158, 57, 11, 52,129,132, 48, 35,219, 1,229, 51, 38, 22, 45,241,185, 55,218,165,199, 73,219, 32, 23, 7,233, 80,143,150, 11, -132, 24,177,221,110,112,255,222, 61, 84,117, 13,107,128,163,163, 99, 92, 92, 94,226,250,234, 18,204,140,190,235, 1,150, 75,128, -100,136, 19,218,110, 64,187,219,225,230,230, 22, 87, 87, 87,216,237, 54,176,122,233, 25,134, 1, 93,215,193, 15,131,142,213,147, -205,140,208,119, 1,183,183,183,104,219, 29, 56, 4, 52,141, 4,169,244,253,160, 77,145, 92,204, 35, 51,162, 15, 88, 52,181,194, - 92, 98,118, 21, 12,131,215, 73,217,232, 52,241,145,209,247,189,120,178,193,168,157, 5,200,106, 52,176,114,205,245,149, 72,121, - 4, 9,150,147, 60,246,105,181, 6,166, 60,117,145,113,186, 80,221,210,229, 41,133,247,140, 98, 90,153,226, 26, 48,140,179,232, - 35,225,236,197, 26,235,103, 95,163,182, 62,239,123,231,171, 47, 67, 0,215, 11,124,241,249, 51,252,226,187, 29,238,255,248,127, -194,246,122,131, 72, 30, 55,109,196,213,213, 26, 97,119, 43, 97, 46,137, 78,200, 99,180,110, 18,168, 49,137, 24,179, 50, 98,139, - 35,178, 8,108, 64, 49,162,170, 12,200,213,249, 2,159,173,214,154, 54,103,116, 95,206,100, 16, 3, 96, 72, 20,244,169,240,198, -100, 61,203, 44,124, 25,137, 79, 66, 97,140,205,150, 54,225,168, 21, 17,227, 44, 30,122,227, 12, 60,156, 40,226, 49,232,235,111, -133,216,151,224, 52,170,186,151,247,179,205,211, 4, 34,155, 57, 45,121, 66, 29, 25,199,196,232,106,198, 45, 31,195,108, 34, 40, - 92,106,179, 61, 59,111,245,168,239, 25, 96,167,234,247, 93,215,231,211,120, 68,170, 30,242,199,236,239,200, 39, 59,200, 49, 58, -124,244,143,167,131,180,120,131,236,121,214,139,177,248,164,107,164,253,227, 53,239,189,137,246,186,252,233, 1, 70,211,218, 81, -230,148,207,186,116, 38,154,136,185, 82,129,150,238,215, 98,229, 12,170,132,128,229,169,234,188, 4,233,164,174,126, 12, 56,153, - 22, 49, 75,102,130, 90,205, 99,114, 98, 13,129,161, 25, 64, 36,162,177,172,183,101,206, 99,181, 84,152,140,209,140,222,146, 20, - 87, 22,128,196, 64, 46,200,108,229,170,196,208,254,234, 97,252,224,243, 84,169,185,247,197, 15,117,156,251,124, 1,158, 23,240, -116, 89,122, 77,101,229,131, 59,252,195, 99,236,242,215,146,168,172,244,205,227,119,180,182,191,154,215,118,151,101,108,238,132, -231, 87,123,230, 11,111,221,216, 61, 20,167,121,241,143, 31,250, 44,158, 42, 47,139, 68, 4,126,195,215,242, 77,174, 25,214, 57, -188,120,254, 28,239,188,253, 16,255,235, 95,254, 21, 46, 47,207,177,221,110, 20, 2, 83,100, 12, 36,204,106,148, 80, 18, 48,161, -107,135,194,239,155,118,227, 49,231,203, 27, 35,212,141,186,174,242,164, 11, 64,206,101,151,139,173,116,203, 78, 97, 37, 73, 39, - 24,212,135, 61,146,221,108, 78, 37,147, 0, 22,217,125, 59, 87,193, 18, 99,185, 92,193, 84, 21,110,174,111,209,247, 29, 30, 61, -122,136,147,147, 99,212,205, 18,235,245, 6, 55, 87, 87, 88,173, 22, 88, 44, 22,104,219, 29,140,181, 88,174,142,113,125,179,198, -213,213, 21,218,221, 22,187,221, 22, 97, 16,177,152,173,212,123, 31, 99, 30,192, 82,209,245,117,221,128,205,118,135,182,221,102, - 27, 85, 12, 18,167,106, 84,228,150, 70,250, 81, 67,111,234,102, 1,171, 94,228,168,137,119,105,122,227,172, 92,254, 67,144,181, - 6,135, 33, 91,174,130,166,252, 17,113, 38, 27, 86,186, 54, 24,188, 87,109,128,250,221,161, 26, 1, 99, 69,168, 26,124, 70,250, -138, 55,221,130,245,241,248, 64,224, 40, 34,205, 72, 9,119,154, 46,148, 17, 67, 96,220,236, 34,206,159,191,132,233, 46, 4,243, -154, 28, 82,206,170,229,119,124, 55, 46, 28,225,233,174, 70,247,228,115,252,203, 95,124, 23,195,131,159, 98,189,217,224,197,229, - 22, 55, 47,207,129,110,157, 59,115,102, 61, 95, 67,132, 53, 81, 60,224,145,149, 92, 41,182,222,218, 57,176,113,185,153,136,250, - 1,119, 70,113,173,122, 86,165,184, 92,214,203, 8, 89,185, 8, 68, 21,172,150, 67,113, 66,122, 95,235,216, 94, 95,251, 64, 6, -134,229,177,144,113,217,117,147,249,240, 41, 3,131,229,191,173,194,108,210,100, 3, 9, 88,198,102,164,216,231, 21,158, 92, 22, -164, 1, 54,153, 49,146, 62,247,145, 9, 11, 0,181,139,184,170, 44,250,221, 9,194,246, 6, 62,110,208, 71,135,214, 51,218,158, -209, 15, 17, 97, 8, 48,195,128, 19,238,240,221, 35, 3,251,195, 15,222,253,164,107,197, 82, 48, 30, 50, 35, 49,174,236, 2, 9, -135,160, 48,211, 17,188, 60,232,196,123,223,247,172,243, 60,111,124, 98, 99,162, 73, 97, 0, 29, 26, 19, 82,182, 54,204,220,224, -251, 59,241, 25, 70,147,103, 19, 5, 59, 1,101,211, 65, 76, 14,167,132, 50,205,114,143,156,132,128,101,166, 59, 79, 58, 35, 67, -197, 42, 64,133, 55, 14,148,137, 90, 9,102, 16, 83, 8, 74,138, 35, 77, 24, 67,146,255, 6,233,141, 90,133, 53,163,120,204,225, -225,178,198,146, 24, 59, 61, 8,193, 5,188,237, 64,215, 60,181, 19,206,147,241, 14, 79, 91,112,176, 60,149, 19,143, 59,236,120, - 7, 6,214, 83,236,237,116, 61, 81, 58, 11, 14,186, 26, 94, 81,196,177, 87,244,167,218,178, 61, 11,222, 43, 42,219, 92,123,255, -109,238, 2,156, 99, 86,139, 55, 52,189,170, 45,230,241, 61,143,169,157,111, 62,118, 79, 93,204, 71, 63,252, 8,214, 26,220,220, -222,230,194,158, 47, 47, 7,254,206,155,140,231,239, 84,203, 51, 99,187, 93,227,151,191,248, 83, 60,124,244, 46,252,208, 99,187, -221, 10, 65, 45,121,149,139, 23, 46,121,213, 57,120,248, 48,192, 90, 11,167,170,236,224, 35,156, 51, 9,180,160,254,116, 41,240, -156, 25, 48,177,136,214, 36,132, 40,163,214,144,194, 56, 82,104,138, 42,211,147, 37,139,244, 51, 66, 36, 93, 52,200,162,107,119, - 56, 57, 57, 66,211, 44,208,107,250, 89, 8, 3,142, 86, 75,156, 62,120, 11,195,208,163,110, 26,172,215,183, 32, 34, 84,117, 5, - 87, 85, 50, 82,111,119, 88,223,174, 49,180, 91,212,181, 19, 38,187,142,183, 23,154, 73,223,118, 67,198,146,202,122, 87, 56,239, -237,110,135,245,250, 86,161, 61,200,138,116, 20, 22, 90, 41,254, 29,192,140,186,110,192, 36,249,230, 85, 85, 97, 80, 93, 66,186, -136, 91,245, 97, 7,150, 20, 51, 2,103, 59,218,224,125, 70,243,210,164,193, 33, 13, 48, 17, 69,251,160,233,109,172,123, 98,177, -183,118, 85,118, 35, 0, 0, 32, 0, 73, 68, 65, 84,141,171, 12,214, 4, 50, 97,247,203,247,138, 62,104, 84,173, 20,234, 33, 18, - 12, 6, 48, 73,130,220,229,109,139,221,229, 11, 56, 18, 43,215, 40,227, 49,217,190, 92,190,219, 22,141,195,103,103, 45,222, 55, -143,241,193, 79,255, 8,207,111,107,236,110, 47,224,119, 27,221,167, 35,179,210,243,133,209,104,222,101,214,191, 72,113,119,142, - 0, 35,157,121,227, 36, 3,129,201, 98, 8, 18, 29,156,105,167,170,236, 15,201, 35, 71, 10, 26,231,136, 33, 74, 54, 6,120, 76, -112, 99,117,104, 25, 10,202,146, 23, 47,124, 48, 21, 16, 25,198,176,102,173,235,250,152,160,170,246, 17, 16,100,136,192, 6,224, -104, 96, 89, 33,244, 90,224, 77, 94, 43,168, 9, 92,113,184,130,103, 31, 19,243, 70,253, 19, 3,100,113,108, 8, 93,205,184, 14, -199,104,110, 13,142,251,167,120,232, 54,248,222, 42,224,247,238, 71,252,232,109,131,159,189, 95,225,167, 63, 56,194,207,126,255, - 33,126,246,211, 15,101, 2, 28,153, 38,163, 15, 46,137,236, 76, 19,213, 48,151, 7,115, 78, 33, 67, 49,110, 31, 99, 91,167,163, -244,226,118,196,152, 9,224, 48,118,111, 60, 38,164,153, 3,214,170,244,152,146,127,145,178,197,139, 39, 96,146,185, 2,157,115, -224, 76,193,170,207, 57,232,242,130,134, 57,154,150, 0, 4,143, 46,232,212, 32,249,245,211,222, 60,245,101, 5,126,181,196,163, -178, 86,152,168,232, 64, 66,132, 97,185,144,132,130,158,150, 87, 29,197, 46, 54, 63,255,124, 81,208,241,114,100, 44, 22, 53,190, -247,246, 2, 23,231,215,120,210, 49, 26,123, 32, 28, 60,219, 8,167, 35,244,180,124, 74, 94,255,114, 68, 31,203, 11, 27,239, 11, -201, 70,230, 64,218, 13, 21, 37,137,231,162,194,233,212,163,172, 44, 73,164,150,245, 25, 60, 31, 70, 79, 47, 6,124,199, 88, 25, -175,248,117,158,219,190,246, 77, 2,119,138,202,105,111,235,204,251, 35,109,154, 47,209,139,219,195, 36,152,249,112,195,158,110, -230,201, 53,146, 10,124,228,120,215, 16,160,128,244, 20, 99,117, 21, 24,189,234,245, 57,148, 43,127,232, 66, 87,254,218,106,185, -196,227,199,143,241,217,231,255,140, 63,248,195,159,225,225,187,239, 97,183,107,193, 79,159, 34,198,128, 33, 4, 65,175,242,184, - 43,238,250, 30, 31,127,252, 17, 66, 12,248,199,255,246, 79,176,141,114,200,173, 22, 94, 99,245,125, 46, 5,203, 58,171,227,119, -202,197, 42,104, 66, 89, 8, 61, 42,103, 80, 87, 78, 86, 65, 74, 68, 20, 48,140, 81, 65, 26, 11, 9,211, 26, 84, 86,198,230,125, -223, 33,120,143,161, 23,128, 74, 93, 59, 88,195, 88,173, 30,224,234,230, 22,174,126,129,102,177,194,205,205, 13, 78,239,157,226, -234,242, 82,114,231, 85,141,159, 50,217, 87,171, 37, 92, 37, 1, 51, 33, 6, 84, 78,138,122,175,151, 26, 86,229,244,162, 89, 98, -219, 5,108, 55, 59,108,182, 91,244,125, 87,128, 83,144, 53, 6, 49, 70,144, 35,244, 65, 10,237,178,105,100,119, 30, 34, 6,237, - 80, 67,156, 6, 14, 15,189,199,114,217,128,130, 83, 56,141,248,209,147, 51,162, 76,159,204,227,111,232,101, 64, 47, 70,131, 22, -244, 0, 2,115, 16, 77,142,126, 86,253, 32,105,109,181, 27, 67, 99, 12, 1,108,173, 76, 18, 98,132,135,129, 33,134,143,132,208, -245, 8,100,176,219,182, 48,126, 7, 84, 35,126, 44, 48, 1, 62, 76, 4,196,233,159,202, 48,194,242, 20,255,246,223,255, 22, 63, -253,245,191,195,233,195,191,198,205,229, 18,166, 94, 0,221, 22, 20,251,140,160,245, 12,248, 62,192,113,144, 49,121,206,221, 48, - 50, 74, 79, 62,107, 86, 11,154,179,178,183, 54,130, 28,142, 42, 76,244, 12, 80,244,176, 70, 56,240, 33, 74,186, 28, 89, 66, 13, -139, 72, 34,222,116, 26, 80, 83, 89, 43,207,155,197, 94, 24,145, 66,196, 34,122,111,176,240, 61, 76, 21,192, 84,165,120,245,137, -144,149,117,194,105,201, 74,120, 93,116, 34,101,206, 25,235, 25, 58,154, 29, 95, 40, 32, 97,162, 79,179,160, 8, 68, 13,152,233, - 35,128,129,241, 17,121,252,242,123, 91, 28,127,248, 54,172,253, 99, 52, 13, 97,181, 58, 65, 92, 54,232,237, 49, 34, 86,240,100, -208,163,198,109,117, 10,151,110, 36, 28, 53, 7,155, 38,168,110,129,152, 20, 29,224, 28, 35, 75,243,129, 54,143, 30,117, 83,236, -161, 89,169, 53,201,175, 94, 66,117, 70,235, 27,231, 93,244, 93, 98, 30, 20,187,250,148,209,110,230,221, 79,145,221, 62, 71,191, -206,141,109,102,126, 72, 30, 16,147, 17,201,253,138,185, 16,245, 36, 65, 6,143,157,102,226, 10,199, 60,162,231,156,179,235, 33, -172, 97, 67,144,253,148,238, 34, 67, 82,125,166,215,149,198, 67, 63, 11,251,104, 52, 15, 14, 12,172, 22, 21, 28, 34,110,135, 56, -178,191,243, 69,169,176, 1, 22, 23,140, 56,177,150,165, 98,128, 9, 32,199,204,107, 16,207, 2, 98,179,187,128,139, 75,147, 36, - 5, 24,163,177,145,172, 41,195,123, 25,184,170, 10,103, 26, 1, 22, 69, 7,109,238,228,208,255,142,163,115,194,100,175, 62,167, - 29,222, 41, 92,223, 91,208,188,226,210, 48, 47,149, 84,200,209, 95,241,205,120, 18,134, 48,154,231, 57,242,157, 19, 8,107, 9, -159,127,254,207, 10,185,105, 70, 7,193, 27, 94,120,230,170,126,126,197,197, 38,178,248,152,119,187, 29, 62,251,252, 51,252,225, -207,254, 8, 0,240,214, 59,143,196, 62,246,244, 9, 46,175,175, 17, 56,140,233,125,117, 37, 98,181,102, 81,172,170, 98,254,140, -249, 16, 52,169,144,116, 36, 76, 57,183, 29,170,194,238, 7,143,161,235, 97,173,147,177,179,170,233, 73, 71,201,145, 67, 30, 43, -131, 72,188,193,172, 68, 59,171, 23,252, 24, 36,179,188,151, 36,174,213,209,145, 10,188,128,193, 7, 92, 94, 92,160, 90,116,120, -242,248, 27,172, 86, 18,143,107, 85,120,215,251, 0,110, 59,144,145,176,155, 16, 25, 93, 39,121,236,198, 58,116,131,172, 22, 22, -139, 6,219, 93,135,198, 57,192, 24,120,223,106,226,151,196,186, 38,165,125,140, 81, 59,117,241, 59, 7,142,130, 5,214,176, 22, -103,109,190,252, 39, 96,141,161, 81,171, 99, 34, 97,215, 14, 24,134, 30,206,146, 38,223, 49, 98, 44,244, 7,202,108,135,250,174, - 19, 75, 32, 49,222, 9,105, 12,173,232, 91, 35, 66,176, 97,240,112,137,181,143, 68,155,147,175,231,172,168,198,125,100,192,251, -220, 72, 85, 6,216,121, 96,104,119,194, 73,207,217,157, 83,109,207,161, 11,233,233,202,224,239, 95,212,248,242,191,252, 71,124, -240,191,255, 57,190, 48,167, 8,195, 99, 65,237, 70,181, 20,234,247, 14,134,208,123,134, 51, 67, 94,181, 68, 22,203,151,177, 6, -156, 80,181, 54,130,157, 69, 12, 6,214, 18,156,171, 48, 68,150,221, 57,100, 37, 36,235,142, 32,138,126, 4, 48,137,194, 63, 5, -194,112, 12,136, 28, 64, 73,220,169,227, 50, 3, 2,179,133,141,140,104,162,124, 77, 14,114, 49,101,146, 14,155,130, 58,105, 72, -215,163,128,229, 32,175, 55, 9,117,143, 74,133,187,214, 4, 17,230,169,209,141, 32,177,174,186, 38, 96, 67, 48,106,139,142,196, -232,153,208,244,192,241, 98,139,213, 59, 43,236, 78,127,140,155,248, 29, 92,251,136, 16,122, 12, 3, 48, 12, 4,244, 29, 16, 54, - 88, 44, 59,216,143, 63,212,241,123, 44,104,113, 60,134,178, 28,154,136, 18, 70,244,171,153, 23,116,140,169,110,102,210,249, 20, -227, 95, 42, 99,229,104, 34, 62, 75, 79,188, 20,185,209,235,124,210, 19, 76,171,178,163, 85,165, 27,103, 99,102,154, 96, 88,147, -112, 97,106,117, 43,191,150,161,113, 68,108, 40,111,210, 38,171,101,166, 49, 81,131,104,223, 91,159, 58, 42,102, 72,160,133,126, -109,103, 12, 26,253,239, 56, 19,128, 69,154,141,173, 21,181, 89, 85, 21,222, 63,174,176, 91,239,240,120,227,149,231,204,186,219, -225, 61, 87, 64,105, 11,156,163,108,203, 71,152,246, 69,119, 1,103,112, 64, 48, 70,121, 18, 81,136,189,239, 42, 21, 52, 93,237, -164,187,148,217,255,129,222,249, 56,222,108, 14, 94, 62,199,153,167,243,117, 26,183, 9,161,225,205, 10,229,168, 94,163, 55, 83, -201, 31,140, 82, 27,129, 46,175,179,235, 17,153,125,167,200,155,189, 36,223,250,159,182,235,176, 90,173,240,231,127,241, 23, 0, - 8, 79,159, 61, 21,207,190,118,114, 41, 91,222,169,250,153, 1, 60,123,246, 28, 79,207,206, 4,220,146, 68,181, 49, 69,201,106, - 12,167,179,112,186, 83,151, 84, 52, 81, 94, 39,150, 58, 20, 24,194,172, 30,255,180,195,102,205, 62,215,125,126, 84, 66, 95,202, - 13,151, 4, 47,225, 29,116, 58,118, 63, 57, 94,161,110, 42,116,109,175,217,244,140,237,102, 13,231, 68, 93,237,172, 69, 85,215, - 24,130,196,142, 26, 67,168,156, 3, 10,150, 61, 88,184,235, 41, 61, 76, 10,233, 56, 52,105,187, 30,125,215, 10,146, 53,237,117, - 13,114,212,105, 10, 22,233,250, 65,196,118,203,133, 4,216,148,246,206,124,177, 37,245,200,203, 55,232, 7, 9, 60,169,235, 6, - 65,125,231,129, 9, 62,120, 69,241,138,122, 62,164, 88,212,132,110,214,203,130,196,154, 42,237, 47,178,130,100, 44,192, 30,206, - 25,193,209,210, 92,136, 57,126, 34, 12, 34,152, 68, 28,233, 12,176,238, 9,155,171, 11,216,216,103, 32,205,155,188, 1, 45, 1, - 87,222,193,222, 62,197,159,254,236, 61, 92, 47,255, 0,235,139,231,216,110,183,224,161,149,142, 58, 55, 15, 98,131, 68, 24, 4, - 28, 67,182, 16,100, 58, 84,214,160,174, 12, 76, 85, 1,228,224,153, 16,125, 0,113, 16, 11,115,140, 32,138,186, 14,208, 48, 28, - 14, 19, 29, 8, 71, 17,205,165,145,122,194, 85,167,156,121,214,228, 63,210,174, 58,133,254,112,102,130,142,204,248,169, 85,153, - 11,146, 92, 90,191, 66, 40,120, 84,164,241,101,223,187, 86, 3, 22, 1,165,136,193,237,136,170, 37,131, 1, 6,215, 3, 48,108, - 34, 66,187, 67,215,109,209,238,182,240,187, 53, 66,183, 70, 24,214,240, 67,139,224,123, 56,195, 24, 53,147, 37,160,165,200,186, -230, 3, 35, 75,105,186,104, 26,240,193,233,239,149,204,179, 18,130, 50,235,134,105,196,190, 48,207,197, 60,148,187, 66,240, 97, -209, 84,185, 34, 96,189, 76,140,113,121, 14,214, 89,156, 16,195,233,239,153, 57,171, 30, 50, 62, 11, 58,161,160,148, 18,116,224, -168, 52,217,138,167,187,111,142,197,152,180, 24, 63, 43,221, 13, 69, 17, 79,187,238, 66, 84, 32,234,202, 24,176,243, 1,187,148, - 76,132,113,188, 30,244,239,196, 52, 13, 40, 70, 13,206, 90, 12,253,128, 23,155, 30, 62,219,233,120,244,202,166,221, 12,151,211, - 11,126,173, 50, 58, 89,137,168,216,225,230, 63,195,163,112,112,146,242,150, 14,164,244,220,227,225,145, 56,207,252,214,105,186, - 96, 85, 60,200,121,253,192, 51, 93,194,239,168,110,163,137,203,238, 91,252,213, 41,133,143,249,117,212, 57,220,225,236,120,117, - 97, 77,239,107, 42, 70,232,252,102, 68, 28,165, 51, 30, 46,214,123,123,245,217, 75,114,104, 44,127,208, 26,168,255,222,212, 13, - 46,206,207,177,217,172,165,192,116, 61,250,161, 21, 15,120, 93,163,174,235,156, 3,206, 81,118,154, 9,233,105,244,127, 33, 68, -212,154,137,205,144,241,110, 8, 17,100,172, 64,124,156,147, 14, 54,248, 12,221,113, 70,224, 62, 2,184,177,163,162,219, 24,101, -180,139,160, 44, 6, 25, 84, 58,181, 99,117,157, 36,196,129, 4, 87, 27, 84,157, 78, 36,204,125, 74,209,166,208,208, 30,205, 8, - 15, 33,102, 46,187,115, 14,117,179, 64, 12, 65,166, 4,198,192, 57,202, 92,250, 65, 45,101, 85, 93,131,201, 98,179,237,176,221, -172,181,211, 21,101,255, 48, 12, 24,122, 47,164, 50, 13, 65,233,186, 1, 28, 60,170, 90,124,249,164,112,152,168, 5,207,169,136, -208,234,168, 46, 68,241,230, 55,149,197, 98,185,148,130, 67,164,145,164, 49, 11, 7, 99, 84, 22,189,122,214,141,238,131, 35,203, -126, 62,197,226, 38, 79,111, 55, 72,212,169,117, 14, 67,144,245,162,240,226, 1,171, 77, 11,199,128,138,228, 18,230,163, 36,200, -113,144, 8,222,174, 31,192,161, 7, 27, 42,148, 86,175,255, 76, 74,183,110,241,159,190, 50,248,252, 63,254, 59, 60, 56,190,133, - 89,220, 71,237,170,140,117, 77, 69,215, 16,137,186,223,202,138,133, 57,192,104, 72, 77,237, 44,234,218,161, 89,212,168, 23, 11, -152,170,206,133,146,201,192,105,236,105,178,137,101, 59,182, 78, 73,211,247,136, 48,240, 94, 46,109, 33, 51, 22, 24,221, 16,224, -187, 30, 20, 7,157,154,136, 39, 62,192, 96, 8, 26, 71,171, 68,189,172,128,199,248,249,101, 26, 39,145, 28, 57,215,129, 17,230, - 70, 57,122,149, 38,151,249,177, 41,142,249,179, 46,154,171,192, 12, 31,128,117, 31,208,237, 58,196,238, 6, 49,118,240,145, 49, -132,128,224,133,121,192, 49, 0,250, 62,200,231, 82,130,153,164, 8,214, 88,164,177,149,187,102, 97,193, 51, 76,209,223, 76,197, -111, 52, 41, 98, 49, 93, 28,184,204, 12, 47, 19,214,226, 68,228,197,123,197,119, 58,250,223,247,221,242,104, 12, 98, 49,245,119, - 1, 88,243,235, 71,142, 4, 33, 21,141, 66, 65,221,119, 39,118, 92,122,204, 90,176,147, 54, 32,237, 41, 98,241,104,141,102, 65, -199,201, 46,185,172,236,197, 30, 30,242,225, 28, 66,132,207,251,120,206,227,237,100, 3,138,169,184,235,117,195, 15, 61,190,186, -222,225, 58, 0, 21, 21, 49,165,152, 66, 93,246,148,232,204,123, 98, 65,230,105,111,200, 60, 94, 34,104,162, 21,224, 28,110, 16, - 11, 69, 30,207,156,220,211,231, 57,109,151,101,189, 83,190, 2,242,188,134, 24,103,151, 11, 70,211, 44,208, 84,213, 36, 97,234, -119,237,216,223,188, 83,229,241,178,152,247,212,252,237,190, 1,223,125,139,160,242,242,203,179,119,199,155,182,219,132,187,130, - 15, 95,249, 80, 51, 86,216,208, 43, 59,120,158,189, 71,140,179,216,110, 55,216,110,214, 82, 88, 21, 28,195,202,216,118,149, 40, -130, 13, 36,118,212, 24,171,252,114, 85, 39,147,201, 72, 85,107, 82,230, 1,171,120, 77, 58,118,177,131, 73, 21, 19,133,182, 17, -124,172,146,212,172,181, 10,190,177, 89, 77,111,212,214,147,104,158,193, 71,248, 68,171, 51, 86, 3, 95,196,130, 39, 64,155,136, -197,162,198,114,185,208,142, 53,100, 69,254,122,179,193,208,183, 88,165, 96, 23, 21,228, 25, 99,225,135,160,177,158, 50,190,174, -157, 67, 83,215,240, 33, 98, 24,122,189, 56,244, 64,148,132,177,160, 19, 5,209,158,233,104,150, 12,134, 97, 0, 16, 81, 55, 21, -170,170, 22,246,123,229, 64,214,230,216,233,168,130,173, 20, 26,227,189,120,221,145, 59,125,177,154,213,181,203, 23,166, 90, 95, -191,168, 34,184, 49,190, 84,222, 99,150,140, 38,207, 97,146,133,157, 80,182,117, 93,229, 72, 82, 1,220, 8,231, 94, 38,177, 34, - 82,244, 62,202,229,200, 0,108, 28,130, 15,160,156, 67,255,250,233, 82,121,224, 52,150,113,109,143,241,239,255,246, 51,156, 92, -254,103, 44, 78, 31,200,100,131, 92,118, 85,228,179,212, 88, 24, 91,103,108,174,133,240,219, 43,235,112,180,112,112,139, 37,156, -173,208,212, 14, 84, 53, 50,194,142, 17,198,112,206, 91, 79,235, 87,103,245, 82,104, 93, 78, 61,115, 70,108,104,164, 52, 58,142, - 17,196,162,221,232,131,176,248,225, 59, 24,138,112,198, 42, 15,193,100, 48,152,120,234,131,158,217, 38,219,184, 35, 51, 40, 6, -169,105,105,146,201, 65, 11,124,208,203, 22, 96, 98, 80, 81,158,201,116, 57,196, 0, 82,189, 70, 84, 75,157,165, 8, 54,132,142, - 9,173, 7,186,118, 0,186, 14, 54,236, 0,242,186, 38, 0, 44, 2,106,138, 32,203, 73,121, 95,164,202,112, 65,115,227, 2,139, -170,221,187, 37,236,197,159,146, 14, 37,242, 97, 0,134,101,228, 14,205,228,209,243,252, 0,163,189,142, 61, 78,200,117, 36,224, -129, 89, 33,185, 59, 62,147, 71,101, 97,244,232, 25, 26, 82, 83,250,229, 83, 71,142,252, 67, 24,187,201,162,179,205,116,189,177, - 11, 13, 96,132,108, 7,227,188,171, 24, 5,132, 35,231, 62, 22,130, 65,154, 5,150,242,204,122,103, 84,100, 17, 11, 91, 33, 23, -132,165,148,237,236, 33,217,213, 33, 5, 1, 36, 25,130,254, 4, 45,237, 39,147, 78, 66, 76,152,225, 99,196, 16, 11,170, 31,143, -177,154, 89,177,203,211,199, 90,232,235,242, 20,101,156, 8,240,126,231, 87, 42,193,147,165, 78,161, 57,101, 97, 63, 20, 82, 98, -140,140, 28,187,193,231, 15, 28,102, 93,252,157,133,139, 95, 49,234,190, 11,134, 83, 78, 38, 10,242, 30,189,214,202, 70,179,146, -201,111,112,131,152,171,226,211,107,207,111,230, 71, 43, 28, 14,229,207,246,174,195, 53, 63, 66, 45, 12,143, 30,189, 43, 40,222, - 16,222,232,154, 99, 20,213,218,117,125,230,164, 39,132,103,213, 52, 88, 44,150,178, 63, 38, 20,240, 42,233, 82,146,223, 59, 51, -184,157, 4,221,248, 33,160,170, 44,142, 87, 75,212,117,157,227,108,179, 31,221, 16,134, 65,190,167,247, 1, 33,248,124, 66, 85, -169,227, 87, 96,138,181, 50,190,239,135, 94, 50,187, 93, 37, 98,171, 65, 8,101,253,208, 99, 24, 6, 57, 87, 52,106, 53,117,227, -198, 26,212, 85,133,213,114,129,166,110,144, 88,242, 66, 86,139, 58,185, 26,227,102,119, 93,135, 16, 2,234,186,134, 81,219,204, - 48, 12,114, 65, 8,114,154, 68,205,250,174, 43,217,153,135, 8, 85,158, 7, 84,206, 96,217, 44, 68, 16,104, 70,230,164,116,211, - 81, 3, 75, 36, 28, 38,228,238, 75,208,187,134,160,204,122, 17,238, 57,231,100,106,168,217,239, 86, 59,202,160,221,255,148,127, - 41, 59,223, 16,188,172, 53, 20,127,155,226, 85, 93,229, 50,137, 50,234, 41,238,163, 92, 90, 12,226, 24,177,171, 0, 46, 31,162, -118,169,116,192,190,121,119,151,158, 14,239,147, 35,135,255,240, 5,240,197,255,251,255,224,225,233, 22,212,220, 7,138, 73,169, -136,250, 4,116,100, 17,181, 8,219, 81, 0,104,229,103, 87,213, 21,170,170, 65,229, 28, 22, 77,133,170,174, 1, 91, 33, 48,233, -235, 9,249,179, 90,184,162, 94, 28, 98, 72,103,107,200,250,159,244,117, 37, 75,125,132,217,116, 33,194, 15, 30,204,189,224,105, -157, 5,172, 69,100,241,253, 7,117, 37,145,190,230, 52, 57,223, 99,158, 10,144,146,237, 34, 43,215, 91, 63,243, 81,233,114, 96, -155,149,239,163,147, 74,180, 87, 49,253,121, 37,215,117,158,209,245, 61,120,232, 81,193,163,113,132,166,118,176,181, 3,185, 90, - 46,138,204,148,243,172,211,143, 41,238,245,181,148, 49,123,204,132,136,187,198,172, 99, 7, 18,102, 85,197,140, 38,185,153,162, - 61,249,196,213, 79, 88,118,199, 32,212, 74, 14, 66, 17,132, 50, 62,198,253,115, 59, 23,103, 50, 26,229, 90, 42,243,139, 81, 63, -143,197,125,162, 36, 46,187, 73,158,118,175, 28,121, 44,188,233,209,235,229, 37,178, 20,252,146,229,205,133,218,126,108,216,227, -120,155, 6, 84,248,146,246,210, 81, 45,111, 92,136,230,116, 76, 23,211,101,129, 71,145,158, 86,117, 86,219, 79,122,117, 99, 28, -191,126,246, 51, 48,224, 25, 56,169, 29, 30,214,148,163, 51, 83, 33, 79, 44,234,114, 84, 27,131, 92, 52, 74,106,222,168,212, 46, -232,130,204, 83,225, 24, 23, 23,177, 34, 99,184, 68, 39, 78, 89, 45,211,113,127,240, 9, 23,122,247,126,251,240, 40, 57, 61,119, -126,163,197, 60,163,180,130, 81,254,121,211, 12, 3,252,250, 78,132,222,120,244, 94,206,209,191, 13,162,102, 98,108,152,193,234, - 94, 43,142,211,136,188,155,155,219, 60, 82,126, 51,221, 0,233,133, 54,104,240,136,149,247,154,122,195,173,181, 56, 90, 29,201, -142, 93,127,102, 18,161, 90,129, 21,184, 2, 64, 59,119, 74, 35, 47, 44,154, 26,139,213, 74,210,217,162,234, 73,244, 51, 18,116, -140, 79, 76, 8, 28,148, 59, 32,239,163, 24,198, 79,184,177, 18, 84, 98,212,146,182, 88, 46, 97,156,140,191, 67, 26,123, 70,198, -102,189,133,239,122,196, 16,243,206,222,232, 4, 33,130, 96, 93, 5,207,140,219,205, 14, 93,215, 11, 21, 44,200, 88,214, 89,131, -170,170, 96,212,155,238,253, 32,212, 67, 50,216,108, 59,236,182, 27,236,118, 45,162, 94, 60, 98,178,223,121, 61,236,105,244,130, - 91,235,164,200, 24, 43, 69,223, 57, 56,103, 80,215,149, 8,193, 98, 49,114,141,114, 73,112,206,232,231, 48,228,247, 75,226,185, -187,202,201,116, 32,196,204,121, 39, 45, 2,146, 62,150,154, 17,229,167,131,132,206,166, 69, 47, 68,198,144, 9,115, 66, 77,235, -123,143,224,251,177, 17, 96,160,114, 36, 29,174,190,255,228, 66, 24, 14,112, 61,238,150,156,148,127,104, 97, 25, 55,246, 4,255, -246,111,126, 3,243,244,111,224,142, 78,101, 13, 83, 57, 56, 91,229, 12,130,228,184, 18, 81,154,132, 0,213, 6, 88, 44, 44,162, - 93,192, 69,198,162,150,203,165,117,149, 0,116,212, 94, 23, 24,136, 62,192, 82, 0,172,131,248,204, 56, 19,247,100, 50, 75,240, -158,225,135, 65,245, 9, 81, 94, 11,189, 92, 70, 0, 49, 26, 12, 94, 94, 39,223,247,114, 57, 51, 4,231, 44, 96,205, 56, 62,231, -152,215,159,185,241,100,202,141,218, 56,134,167,124, 38, 6, 16,124, 52,136,158,129,232, 1,120,140,191,205,147, 73,177, 52,218, - 1, 30, 17,125, 48,232, 6,200,165,183,107,193,161, 83,160,142, 3,155, 10, 68, 53, 92,196, 72,210,201, 74,228, 52,215, 47, 32, - 33, 57,170,116,230,231,205,233, 56, 58, 99, 13,179,251, 10, 40,249,168, 15,219,174,166, 98, 48,206, 69,146,161,196, 29,140,161, - 50,156,212,243, 60,210,236,204,193,157,101,233, 60, 31,131, 84,246,144,176,243,241,100, 86,153,143, 80, 24, 78,214, 52,157, 70, -208,136,172, 25, 11,243,196,154, 53,158,188,227,135, 35,137, 3,203,187,237, 8, 61, 32,146,160,147,152, 64, 22, 60, 66,255, 71, - 54,188,142, 30, 57, 42,204, 32,229, 82, 83, 30,217,251, 28, 26, 50, 13,143,201, 62, 86, 6,154,102,137, 37,119, 56,239,122,101, -183, 79,189,210,105, 12, 8, 38, 84,150, 16,250, 22,183,222,226,222,209, 2, 86,247,116,124,224, 53, 76, 59,119,202,115,131,113, - 60,199, 60,117, 59, 76,173,101,124, 64,119, 70,175,245,132, 83,193,122, 46, 99,106, 41, 95,220,248,181, 95, 39, 19,156,242,216, -153,179,250,251, 91,203,236,249,110,217,218, 33,148, 49,242, 78,110,180,137, 30, 44,200, 52,181,232, 77,196,245,252,250,130, 94, - 26, 5,215,235,219,204,190,127, 19, 33, 96,136, 17,203,197, 10,167,167,167,184, 93,111,176,109,119,122,177,149, 66, 67,170,186, - 62,189,127, 31, 87,151,151, 64,223,137, 31,157,129, 97, 8,168, 82,222, 53, 73,152, 10,179, 7,123,175,157,178, 85, 17,145,100, -125, 27, 16, 6,221, 71,215,138,158, 53, 49,169,222,229, 98, 1, 5,177, 24, 24,244,125,143,197, 98, 1,160,198, 48,120,241,191, -219,113, 26,231,156,140, 95,125, 24, 38,135,107,242,247, 71, 31, 1, 14,240, 94, 5,127, 58,198, 7,128,168,143,173,114, 46,127, -246,171, 74, 38, 15, 62, 50,110,111,182,184,190,186, 66, 12, 67,126,207, 36, 54,125,140, 64, 55, 12,136, 49, 74,210,153,142,182, -171,186,209,162,226, 97,140, 92,122,210,158,190,237,132, 20,103,156, 69, 28,100, 10,209,122,101,201, 91,125, 61, 35, 35,244, 61, -234,202, 10,160, 37, 53, 88,193,231, 61,124,154,162,112, 12, 42,138, 3,154,202, 33,146,129, 13, 1, 49,136,112,206, 24,209,179, -136,187,192,131,169,130, 15, 81,160, 52,218, 29,139,163, 37,181, 99,177,112,242,112,241,201,126, 67,169,102,209,208, 51, 3, 39, - 43,131,127,120,218,224, 95,252,231,191,193,163, 95,191,143,199,139,123,176,241, 28,204, 78, 2,113, 98, 4, 87, 14,209, 3, 21, - 7, 16, 89,212,142,176,170, 13, 22,203, 26, 84, 45, 80, 25,177,222,133,232, 96,173,135,179,189,140,220,137,208, 56, 66,240, 34, -230, 76, 41,104,164,190,112, 17,117, 64,167, 0, 64, 96,185,176,197, 24, 1, 19, 64,228,244, 61,100,181,246,169,157, 47, 6, 80, - 16, 64,143, 51,162,251,136,112,234, 55, 71, 81,176,163, 90,222, 24,134, 98, 6, 19,145,214,183, 8,181,175, 35,194,144, 45,234, - 2, 21,130,222,146,172,153, 88, 2,210,200,118,145,129,158, 65,228, 65,212, 35,194, 10, 66,158, 34,136, 44, 98,112,208, 31,219, -190,234,145, 83, 7,151,142,105, 66, 49, 70, 38,253, 49,147, 10, 5,246,182,181, 83,235,153,238, 99,109,193,231, 69, 81,104, 39, -135, 79,185,103,143, 17,109, 68,206,121,167, 25,156,134,249,112, 68,232,124,224, 61, 45,246,211,239, 93, 54,100,114,187, 26, 59, -254,168, 35,100,131,162,123,211, 11,137, 45, 60,237,229,255, 76,250,250, 5, 33, 40,143,180,185, 92, 88, 20, 88,196,178,179,229, -209,203, 31,116,215,159,139,110, 28, 63, 72, 49,139,201,120, 50, 57,201,244,190,244,248,245,131, 24, 24,168, 44,225,114,189,193, - 87,235, 33,231,154,207,231,214, 57, 80, 38, 12,104,185,194,255,252, 39, 63,195,159,127,124, 31, 93,215, 73, 7, 68,229,212,131, -247,246,176,242,182,142, 99, 7,142,113, 47,207,111,184, 60,158, 23,252,196, 29, 63,216,177, 23, 22, 76,142,251, 26,129,210,246, -189, 47, 36, 27,129, 15,252,109,244,246, 92,172, 24,192,251, 59,143,215,116, 46, 66,236,195, 68,204,248,186,203,192, 4,136, 72, -111,182, 67,159,175,224,109, 1, 42,121,147,127,134,190,199,195,135, 15,113,124,122, 15,183, 55, 55, 24,218, 14,195,208, 35,250, -144,217,228, 98,101,148, 46,216,168,173,170, 31, 6, 16,241, 24,144,226, 28, 22, 26,192,210, 84, 21,156,138,230, 66, 84, 46,123, - 93,193, 88, 3,239, 83,204,167, 0, 84,132, 65,174,204,249,192,242,153,211,120, 90,232,207, 86,178,215, 59,116,221, 78,124,244, - 49, 98,185,104, 80, 85, 53, 34, 51,218,182,197,237, 70, 34, 80,211, 37,176,170, 28, 22,139, 70,198,255, 36,106,249,166, 22, 92, - 43,153,226,194,106, 76,142,123, 5, 67, 19,235, 58,108,183, 27,120,223, 1, 28,209, 84, 50,242,143, 49, 8,213, 44,119,211,102, - 92, 69, 84,181, 98, 65,197,189,226,117, 15,153, 46, 88,181,162,109,135, 65, 20,248, 94, 81,184,214, 36,238,123,250, 12, 9,149, - 47, 69,244,202,229,197,234,185, 69,121,213,130, 66, 15,227, 35, 84, 1, 47,161, 48, 38, 37, 74, 90, 3, 87, 89,157,106,132, 60, - 41, 77,217,246,105, 58,147,117, 45,144, 84, 58,153, 74,148,181,226, 77,202,250,244,160,118, 96,116,245, 2,191,249,167,151,248, -201,242,183, 56,250,232,199,136,177,206, 54, 95, 91, 85, 32, 83,201,138,193,200,234,198, 89,139, 85,237,112,116,180,194,209,106, - 9,119,180,130,107,142,224, 42, 7,227, 68, 24,109,171, 74, 46, 36,250,119, 34, 57,196,192,170,132,151,195, 34, 93, 86, 64,162, -103,176,206,194, 26,151, 85,246,172,194, 73, 14, 17,145,131, 34,100,145, 1,100, 67,136, 8,253, 0, 10,157,218, 54, 13,124,208, -105, 74, 12,170,126, 2, 56, 10, 23, 32, 42, 63,101,106,153, 77,172,122,193,216,146,129,140,254, 53, 93, 14,138,175,141,108,245, -120,137, 89, 73, 31, 9,104, 35, 97,215, 49,186,182, 69,215,111,208, 15, 3,134,193, 99,232,123, 12,190,131,113,134,178,231, 60, -157,166,105,151, 92,132,191, 76,138,223,116,139,194,217,227,156,201, 57, 7,230,134,251,155, 67,158,216,231, 38, 10,100, 66, 14, -119,157,143,123,129,113, 84,111, 14,136,232,242, 45, 50, 89,173,138, 55,158, 33,236,237,205, 75, 29, 0, 10,161,224,184, 39, 39, - 69,176,254,255,204,189, 91,175,100, 89,114, 30,246, 69,172,181,119,102,158,186,116, 79, 79, 55,103,200, 25,106, 46,228, 92,196, -185,208,132, 68,209,134, 77,208, 4,168, 7, 3,126,243,139,127,206,252, 9, 1,122,149, 97, 63,202,128, 33, 72,166, 72, 27,148, - 12,209,162, 44,138, 4,135,166, 64,147, 38,104,243, 58,211,211,151,234,170, 58, 39, 51,247, 94, 43,194, 15, 17,107,237,181,118, -238, 60,231,212, 12, 9,184, 6,131,238,174, 58,149,151,157, 59, 87, 68,124,241, 93, 22, 61,185, 40,144,124,116, 42,154,208,198, -230, 31,104, 59,219, 78, 35,176,132,222,240,170,161, 33, 92, 50,250, 22, 82,158,125, 89, 43,191, 93, 23,100, 69, 21, 29,156,175, -171,253,179, 54, 12,250,217,247, 51, 1,203,181,225, 6,110,111,243,198, 99, 96,164,187,151,248,189,215, 35,126,234,239,253,125, -252,196, 19,193,221, 57, 85,155, 75,125, 96,210,171, 94,121,171, 31,214,198, 44,229,122,141, 47,175,223, 14,175,155, 39, 79,241, -238, 59,111,215, 24,202,139, 70,173,177, 37, 94, 99,130,138,109,119,182, 37,209,169, 91, 4,189, 17,169,110, 25,157, 31, 62,218, - 22, 38,189,246,122,187, 71, 55, 17, 27,178, 61,213, 7,183,253, 15,189,178,251, 26,173,148, 38,188,247,222,123, 70, 40,123,253, - 10, 79,159, 61,197,211,167, 79,113, 56,236, 45, 93,205,147,205,114, 74, 53,167,188,172,169,114, 86,223,137, 11,142,231, 19,142, -147, 57,135, 89, 70, 57,144,231, 84,119,214,133, 75, 19,153, 45, 39, 59,155,197, 42, 59, 19,142, 93,167, 79,108,255, 31, 29,122, -127,125,119, 7,149, 92,155,149, 18,243,202,193, 34, 70, 85, 45,239,252,124, 62, 2, 16,164,148, 49, 77,147, 59,193,113, 45,224, -182, 67,158, 17, 67,201, 80,183,231, 49, 50,157, 53, 48, 73, 50,230, 36,184,125,245, 10,121, 62, 27,148,188,219, 65,193, 72, 30, -221,122,158,146, 39,204, 69,183,250, 20,236,118,163, 21,144,146, 97,238,136, 2, 59, 1,108,246, 66, 48, 12,131, 17,165,156,217, -111, 59, 97,139, 90,181,189,186, 37,165,221,157, 38,228,148, 16,216, 8, 96,228, 73, 98,115,202,198, 18,103,114, 98,153,217,210, -150, 36, 72,147, 83,177, 17, 26,125, 39,111, 4, 70,174,103,124,140, 1, 49,122,147,225,205,131,233,200, 29, 37,177,165,244,227, -123, 95,221, 44, 24, 80, 0,207,247,192,255,241,193, 19,220,253,225,239,224, 63,253,217, 3,248,211,223,192,200, 25, 66, 1, 44, -130, 49, 88,190,124,242, 9,120, 23, 9,135,195,128,155, 39, 59,196,155,167, 64,184, 65,246,149,162,168,186,177, 11,129, 60, 37, - 77, 97, 97, 43,196,253,158,171,174, 26, 37,215, 85,133, 53, 79,126, 61, 66,116,142, 7,213,148,210, 33, 90,243, 20,130, 53, 23, -182, 87, 39, 68,100,196, 8, 71,157,236, 32, 74, 66,174,121, 95,236,117,139, 81, 81, 65, 95,139, 24,156, 90,179, 42,207, 82,177, -245,136,175, 84, 37, 91, 48,141,136,239,232,157,227, 64,140,147, 16, 78, 19,144, 78, 19,116,186,133,228, 51,178,204,144, 44, 46, -186, 35,170,110, 55,229,250, 7, 52, 18,174,242,223,157, 52,108,129, 60,185,241, 78,191, 36,232, 74,221, 39,200,138,149,221,239, - 96, 55,168,119,149,117,191,144,232, 90,107,209, 42,159,107, 66, 58, 20,253, 36,223,195,158, 75, 90, 91,105, 12, 10,252,121,145, -192,214,238,217,101,153,166, 85,115,195,150, 95,200, 94,173, 7, 52,123, 54, 46,175, 72,116, 80,113,130, 69, 89, 41,172,139,243, - 66,204,211,198,132, 71, 32,203, 97, 41,104,204, 99,164,129,138,251, 73,184, 85, 49, 44,251,236, 69,101, 80, 27,148,238, 96,151, -250,243, 2,198,126, 63,224,253, 63,252, 29,252,147,127,246,111,241,193, 52, 98, 55,114,231,229,223,214, 27,209, 94,154, 88,112, - 29, 1, 86, 55, 76, 91, 76,180,243, 47, 95,231,147,215,226, 75,209,246,122,186,198,146,182, 11,249, 5, 57,189,198,174,210,102, -149,212,123,179, 75,175, 20,243,106, 5,171,143,146,166,231, 60, 59,233, 75, 27,153,231, 27, 18,250, 59,151, 60,189,183,246,211, -143, 88,208,203,138,227,199, 62,243, 25,100, 81, 39, 90, 81,229, 44, 20,238, 65, 22,179, 46,221, 29, 14,230,213, 30, 66, 35,171, -178,207, 55, 37,155, 34, 74,100, 41,220,160, 37,240, 0, 34,147,123,229,148, 92,118,230,153,245,220,250,219, 83,221, 39,219, 62, -254, 9,206,211,236, 89,238,177,202,211,198,113,128, 16,225,120,116, 51, 24,223,117,146,250, 68, 63, 77,206,160, 54, 72,127, 55, - 12,184,217, 31,140, 4,235,182,171, 37,243, 93,253,224, 39,135, 86,231, 41,225,116, 60, 66, 37,185,247, 55, 33,137,224,120, 58, - 98,154, 38,136,199,132, 78,201,154,135,133, 63, 73,216,143, 1,251,253, 30, 28,173, 97, 24,135,136, 48, 88,218,150, 90,180, 23, -146,199, 13,103, 81, 68,182,130, 54,207, 25,243, 52,155, 47,123, 49,141,202, 69,146, 71,216,237, 45,131,189, 64,123, 54,165,251, -170, 48,144, 23,162, 80,179,232,201,119,212, 69,194,197, 30,250,210, 82, 98,205,243, 61,120,226, 88,145,251,154, 52, 79,253, 51, -165,110, 78,127,195,166,212,255, 57, 48,112, 62,220,224,159,253,198, 95,227,103, 62,249, 13,124,251,151,127, 1, 79,223,253, 50, - 14, 79,158,248,125,228,228, 74,182, 16,159, 65, 19,158, 29, 34,198, 39, 55,160, 97,103,208, 53,155,107,222,121, 74,200,211, 4, - 86, 39, 85, 54,156, 19,162, 50,178,185, 74,131,129, 33, 88, 51,163, 76,238,246,151,221, 83,192, 24,159,236,126,250, 28, 44,128, -200,124,218, 25, 68,209, 86, 73,129,129, 16,145,192,134, 32,193,155, 9, 10,117, 5, 66,154, 1, 94, 76,181,132, 22,136,158,144, -151, 49,148,185, 35,170,195,137,214, 1,130,192,118,102, 41,115, 55,240,145, 79,242,231,204,152, 39, 5,230, 19, 72, 78, 32,216, - 26,137,139, 37, 41, 81,123, 94, 81,135,235,147,135,127,180, 46,114, 92,123, 13,109, 44, 87,169, 51,157,193, 74, 18,166,186,189, - 57,164, 21, 66,211,193,232,212, 18,224,218,201,220,141,240,169,149,147, 93, 30,108,210,188, 22,169,108,254,117,154,153, 94,200, -187, 8, 11, 90,160,144, 70,230,183,192,182,109,106, 93,150,197,152,166, 53,212, 41,180, 66,209, 86,163,236,250, 88,233, 41,204, -237, 36, 90,118, 45, 82,244,223,218,255,221,170,121,175,132,190, 30,233,162,213,251,107,137,132,109, 7, 36,205,123,232, 40,214, - 94,216, 15, 67, 64, 60,189,194, 57,155, 86,148, 86,153,232,253, 68,216,163, 8,229, 95,234,126,125,211, 49, 77, 47,136,114,237, -175, 16, 2,110, 95,189,192,251, 63,248,192,164, 69, 88, 88,248,218, 73,235,122, 20,188, 52, 98, 61,243,156, 55,106, 54,117, 77, -223,195,229,185, 29,189,129,149,117,222,230,129, 54,167,140, 31,255,241,159,192,123,239,126,218,204, 84,222,128, 30,183,245, 20, -162,143,217,221, 63,174, 77,185,175,129, 24, 98,196,243,183,222,198,221,221,177,178,180,231,121,178,130, 87, 86, 83,108,110,112, - 97,136,136,195,208,226, 75, 70,198, 74, 9,199,243,185, 50,184,207,147, 57,198, 17, 7,164,108,177,166, 92,179,207,185,154,181, - 20,125, 53,193,140,101, 84, 4, 67, 8, 8,113,192,237,221, 9,146, 51,134, 33, 26, 23, 69,204, 62,180, 24,193,204,231,201,208, - 65, 49,180, 32,165,108,132,182, 52, 87, 86,126,145, 45,138,163, 82, 55,135,157,103,143, 79, 80, 53,134,241, 60, 79,230, 42, 55, -153,239,253, 52,157,113,158, 28, 30, 87,197,221,241, 8,145,180,216,128, 6,243,128, 31,124,245, 80,204,171, 66,113, 58,147,236, -201,157, 37,165,139,234, 30,254,246,238,132,187,227,209, 72, 97,254,169,165,172, 16, 73,245, 3, 28,135,136,113, 55,186, 12,140, -145,230,108, 33, 39,187,193, 81, 0,223,253,122, 35,146,178,152,175,123, 48, 84, 34,169, 41, 11, 36,153, 61,172,105,225,197,253, -247,237,254, 63, 39,193, 60, 25, 26, 48,207, 9, 44,201,146,208, 56,150,249,108,203,117,228,135,186,191,222,189, 81,252,111, 31, -124, 10,191,243,207,255,103,252,151, 95,252,115,188,251,141, 95,198,167, 63,253, 14,110,222,126, 7,113,119, 48,107,222, 33, 96, - 63,142, 8, 49, 98, 24, 24,227,254, 0,142,123, 87, 93, 24,225, 81,201, 10, 63, 73, 2,179,154, 41,142, 67,237,102,230,179, 52, -244, 70, 12, 12,160,104,107, 32, 4, 67, 3,212,157,231, 10, 97, 92, 26, 14, 65, 82,251, 44, 32, 98, 5,153,140, 20, 61,103,194, -148, 4,121, 78, 8,154, 60, 7,192, 28,250,230, 76,206, 83,144,230,177,168, 91,253, 74,167,248,178, 58,106,223, 39, 71, 80, 44, -240,221,131, 95,130, 71,206,106,173,119,194,192, 41, 51, 78,103,130,158,207,190, 18,200,224, 11,253,178,162, 87, 89,107,157,183, - 43, 41,172,200,176, 10,240, 44,126,177,134, 70,171,222, 66,241,116,207,198,178, 85,236,174, 77, 53,168, 33,158,113, 7,173,163, -217, 81,175,118, 3,221,174, 94, 87,147, 75,223, 88, 72,159, 32,191,250,127, 15,197,227, 66,159,189,222,203, 46, 70, 43, 1,189, -142,155, 33,139, 76,174,149,146,161,236,129,219,247,184,220, 0,117, 34, 43,187,243, 98, 71,219, 53, 24,107,114,224,242, 58,105, -115,215,222, 78,175,210, 21,143,197,232,102, 97, 15, 11,145,195,117,168, 33, 22, 23,147,180,246,215, 79, 21,117, 5, 65, 88, 50, -178,239,155, 14, 11, 83,119, 11,150,103,118, 5,196,170, 9,168,143,215, 48,253, 93,253,129, 24, 92,118,216, 46, 4,114,190,232, - 42,233,106, 58,241,149,189, 32,240,232, 29,122,219, 68, 37, 1,146,188, 65, 84,252, 21,211, 37,136, 62,170,237,208, 7,213,124, - 15,191,135,130, 62,157,142, 37,200, 69,235,228,193, 76, 93,212, 38, 51, 99, 24, 70, 63,104, 25,228,146,177, 24, 2, 32,217,100, - 56, 10,220,236,247, 62, 1,145,219, 6,219,238,156, 30, 72,104, 25, 0, 0, 32, 0, 73, 68, 65, 84, 66, 52,131, 22,127, 76, 17, -211,224,198, 33, 0,190,139, 38, 14,184,189, 61, 66,114,178, 48, 18,209, 26,244,194, 49, 98,206, 9,105, 58, 87,227, 21, 21,155, -132, 83, 78,238,208,102, 69,223, 24,242,192,221,221, 9,243, 52, 33, 4,243,158,223, 31,246,102,193, 11,219,171,158,206, 19,142, -119, 71,204,167, 51,142,199, 19,238,238, 78, 72,243,140,156,103, 71, 95, 22,189, 55, 66, 48, 95,118,168,185,229, 57,203,125, 28, - 71,220,157,103,164,249,140,113, 8, 8,209,140, 86,198, 64,120,250,244, 6,227,206, 44,127,231,105, 70, 78,246,254,167,148, 33, - 98, 68,195,154, 63, 47,110, 46,227,146,190,224,250,118, 67, 53,200, 87, 31, 70,170, 43,166, 41,217, 89,244, 62,106, 34,137,153, -236,192,253,206,197,215, 91, 89,115, 85,191, 64, 21,145,213, 86, 4,100, 22,180,204,134,192, 40,155, 77,222, 99,182,233,173,140, -237, 26, 77, 62, 2,136,207,247,248,239,255,245,107, 12,255,225,127,192,183,190,253, 14,158,125,230,171,120,246,214,219,120,254, -236, 57,110,158, 60, 69, 28, 15,136,113,192, 48,238, 16,195,136,195, 8,240,238, 0, 38, 43,118, 44,132,145,197,115,207,203,226, -143, 93,121, 96,196, 72,165, 96,245, 40, 48, 18, 49, 82,182,251,130, 84,204,186, 59, 68,100, 71, 48,202, 62,157,104,201, 54,207, -217, 81, 16, 73, 32,228, 26, 94, 83,149, 4, 57, 65,188,176,199, 64, 32, 30,205,172, 38, 89,168, 78,158,205, 66, 24,154,124,192, -165,186,123, 23, 63,103,181,154,127, 21, 40,190, 60, 62,154,122,167,125,112,151,147,163,143, 9, 56,157, 50,228,116, 2,201, 17, -177,192,163,129,109, 23,144,176,236,211,213,221,114,114, 83,208, 47, 38,108, 47,234, 92, 9,119, 84,255, 76,138, 60,124,101, 59, -187,117, 59,148,195,149, 26, 87,187,222,126, 78,251,155, 5, 10, 85, 94,216,219,132, 14,138, 23,244,113,170, 23,254,244, 40,200, - 66,113,145, 91,182,222, 23,154,103, 90,138,174, 21,227,242,229,209,142,173,173,133, 63,208,145, 10,171, 90,116, 97, 73, 82,111, -221,208, 89,228,170,237,251,165, 65, 73, 90,189,113,113,182,227,141,199,211, 46,172,206,155, 17,162, 75, 93, 54,168,147,153,105, -155, 54,231,252,135, 34,167,214, 54,196,187, 35,178, 93,198,177, 58,244,211,193,234, 90,195,127,214, 5,101, 9,228,185,132,229, - 55, 88,240, 87,156,219,180,193,165,141,184,153,145,105,192, 23, 62,255, 57,188,252,248, 3,124,248,226,149, 39, 83,233,197,114, -165, 79, 25,120,200,104,166, 55, 84,106, 92,125, 54,255,170, 54,238,123, 97, 8,248,254, 95,253, 5, 20,230,196,166, 15, 25,219, -232,234,109,106, 35,147,124, 4,201,248,225, 41,233, 49, 5, 29, 72, 41,227,229,203,215, 96,182,184, 78,242,105, 88,107,230,117, - 49,162,113, 15,118,104,221,213, 14, 62, 73,176,155,206,204,211, 4, 82,193,205,211, 27,140,187,177, 66,216, 70,144, 51, 7,136, -156, 18, 16,205,147, 59,120, 22,123,150,140, 49, 70, 16, 15,120,117,123, 11,201,201,118,197,176,215,199,204,216,239,134,186,159, -100,247,246, 38,247,155,135,123, 29,156,166, 25,131,239,150,130,239,179,247,187,209,156,232,166, 9,115, 22,223, 75,155,203,164, -101, 98, 4, 28, 79, 39, 76,238, 84, 39, 57, 35, 70,242,248,210,140,192,140, 57,217, 46, 77,189, 96,134,192, 53,123,123, 28,108, - 29, 32, 57, 97, 55, 90,211, 51,139,101,161, 43, 51, 78,231,100, 5, 3,140, 33,154, 94,121, 78,158,234,166,130,209,119,240,240, - 52, 71,130,233,237, 99,224,154,174, 38,112, 35,147, 16,161, 72,128,136,187,221, 69,204,105, 70, 22, 11, 45, 17,138,149, 52, 90, -114,202,197, 83,208,170, 10,199, 87, 84,196,102,197, 27, 41, 67,133,221,245, 78,125, 82,236, 93, 7,183, 67,143,174, 28,242, 27, -206,164,239, 30, 20,191,253,254,167,241,171,255,244, 95,225,191,253,249,223,196, 95,252,244, 47, 35,221,125,128,145, 18,120, 24, -144,241,202,131,102, 50,118, 35, 35, 12, 59, 80, 30, 0, 4,140, 44, 56, 13,209,215,115, 12, 81,134,230,212,156,161, 37, 55,157, - 48, 43,129, 61,208, 6,106,236,247,228,185,246, 76,106,153,233, 98, 77,102,118, 35,152, 0,128,130,217,242,154, 17,140, 13, 57, -101,226, 30, 96, 97, 49,194,138, 89, 8, 57, 1, 67, 72, 24, 66, 64,162, 1,146,212,148, 8, 69,141,131, 84,173,198, 77, 21, 38, - 75,176, 21,181,138,150,133, 0, 93, 8,117,229,159, 4,234, 8,235, 32, 67, 92,142, 25,144,179, 96,119, 58,131,179,218, 94, 34, -195, 37, 85,110,167, 23,157,108, 81, 7, 19,135,155,251, 9,145,124,223,190,200,224,164,153, 70,185,250,223, 54,132,166,149,129, - 70, 39,105,107,143,173,213,207,181, 36,179,110,194,215,203, 32, 22,110, 38, 86,189, 42,119, 43,107,130,133, 59,192,213,145,174, - 55,147,233,166,201, 2,147,151,102,128,184,155,144, 85,196,172, 94,219, 73,147,168,154,246,132, 85, 64,206, 2,177,219,245,205, -104,246,253,210, 78,161, 84,155, 10,105,244,242, 11, 41, 80, 23,228,161, 69,216,181,213,145, 95,162, 11,104, 86, 35,232, 32,237, -214,249, 78,123,123,216,110,135,175, 93,113,173,211, 63, 97,115,215,191,254,134,223,199,138,111,145,128,251, 72, 97,181,249, 40, - 9,119, 42,248,224,227, 79,112,119, 78,206, 66,190, 36,155,235,163,202,228, 10, 79,234, 8,138,122, 15, 49,190, 49,149, 33, 59, -136,247, 55, 7,124,250,157, 79, 85,249,225, 67, 79,215,242,239,116, 29, 6,247, 35,252,122,172, 59, 95,241, 86,255,139,191,252, - 75,192, 9,110, 57,101,204,105, 70,202,217,101,100,168,153, 1,236, 59,240, 24,130,197,129,114,172, 94, 8, 28, 2, 56,114,181, -188,140,195, 0, 34, 96,183, 27, 48,196,136, 33,154,190, 56,142,195,162, 14, 96,143, 93, 21, 91, 95,156,167,147,217,174,178,183, -225,140,154, 63, 94,160, 74, 49, 47, 85,107, 18, 10,193,205, 37,107,121,158,145,210,108,196,189,211,185,154,189,100,135,232,111, -111, 79, 56, 29, 79,230,205,224,150,155, 57,219, 78,251,116,154,112, 62,159,171,129, 82,206,230, 96, 39,158, 54,152,230,212,216, -204,134, 26,253,201,193,138,116, 12, 4,144,165,189,237, 6,155, 48,167, 89, 48,207,103,164,233,108,141,195, 52,185, 23,187,123, -210,147,177,213,179, 75,253,202, 36,151,221,250,181, 38,178,121,113, 46,186,122, 34,246,224,151, 37, 63, 61,101,227, 7, 48,156, -128,199,238, 8,226,135,181,197,130,114, 61,168, 83, 54, 87,180, 16,108,191, 94,144, 15,155, 34,249, 1, 22,231,149,206,244, 74, -183,201, 10, 60,121,107,196, 63,249, 45,194, 95,253,218,127,135,159,251,242, 29, 14,159,253, 38,194,112,192,211,195,136,167,207, -158, 33,238, 15, 38,113,214,140, 24, 35,110,134,128,221, 62, 2, 97,135, 73,109, 34, 14,174,164, 0, 17, 34, 21,233, 98,168,251, -109, 14, 70,188, 28, 73, 77, 58,232,147,118,206,100, 22,187,200,238,128, 88,194,134,108,173, 3, 17, 68,118,239,133, 24, 49,107, - 64,158, 25,200,166, 45, 55,106,124,132, 80, 64,202,132,105, 18, 80,154, 48,114, 54, 54,126, 24,109,234, 22, 79,242,146, 12,169, -213, 97, 89, 1,233,170, 38,224, 66, 96,147,235, 98,171,102,109, 96,137,169, 21, 98, 28, 51,112,119, 86,132, 47,127,254,189,239, -156,110, 39, 99,171,186,235, 27,161, 53,146, 41,105, 94, 27,250,222,134, 57, 46,205,135, 72, 77,250, 58, 81,239,180,211,126,192, - 61,109,105, 29, 40,210, 20,240,117,226, 23, 53, 90,239,246,181, 16, 86,236,114,106,210,206,122,167,226, 37, 79,188,120, 2,211, -170, 64,161,121,158,203,198,160,107, 70,219,189, 56, 90,159,223,133,159, 64, 14, 9,181,100, 64, 90,201,248,150, 63,100, 96, 67, -183,216, 6, 7,160, 34, 31,237,117, 90, 12,115, 43,177,102, 67, 89,192,104,179, 8,104, 67,250,215, 71,156, 96,227,250, 95,124, - 79,105,249,188, 85,183, 29,161, 31,150, 83,209, 35,224,105,234,124,221,117, 45,249,242, 87,127,188,187, 53,120,212,131, 57,186, -148, 74,234, 83,214,136,112,225, 97,173, 85,221,176,137, 43,110, 92, 43,244,186,121,162,229,243,129,130,217,200,126,243, 60,221, -127,202,173,179, 81, 59, 67,138,199,182, 31, 63,202,182,179,127,176, 57, 37,124,245,107, 95,131,170,224,116, 58, 98,118,151, 54, -114, 47,153,148, 76,147, 61, 39,155,180, 85,205, 51, 61, 57, 67,123, 73, 99, 3,210,156, 48,140, 35,158, 62,127, 14, 10, 30,164, -225, 94,218,226, 80,186, 89,195, 26,204, 27, 8,181, 1, 40,205, 72,240, 4, 52,109, 37,163,141,197,108, 69,129,200,204, 63,202, - 79, 21,242, 85, 65,157,138,157,114,245,144,119,169, 86, 74,150,235,144,146,224, 60, 77, 72, 41,153,222,217, 93, 17,139, 92,205, -118,214,118, 90,150,243, 35,184, 26,128,136, 48,198,136, 57,171, 17, 0, 99, 0,152,240,236,102,135, 48,238,145, 82,174, 49,211, -167, 57,227,120,188, 5,139, 5,172,132, 24, 43, 15,165,216,140, 70, 82,140,227,128, 57,163,230,156, 3, 86,172,169,192,192,121, -118,150,123, 48,169, 91, 96, 80, 8, 62,157, 75, 37,215, 69, 15,190, 41,152,100, 8,132, 12,182,207,193,157, 42,139,172, 45,149, -228, 19, 85, 68, 2, 78, 26,240,234,147,215,224,116,123, 53,204,101, 77, 99,121,140,195,210, 33, 2,127,122,187, 71,254,243,255, - 27,255,245, 47, 28,112,247,147,255, 16, 31,127,240, 26,124,126, 1,138,140, 44,140,168,130,247,158, 7, 60,123,239,211,152,194, - 59,200,115,134,228, 25,231, 36,152,238, 78,192,124,135, 12, 69,202,234,188,132,106,151,234,193, 81, 90,125, 79,137, 25, 89,172, -201,130,100,244, 86,102,203, 56, 83,138,104, 73,183,204,204,150,149, 46, 25,130,100, 87, 85, 60,187,221, 31,129,155,128, 46,134, - 41, 58, 2, 45,193,227, 4,117,107,216,197,130,189, 13,120,129,234,245,139, 70,168,105,118, 29,194, 72, 75, 29, 9,113,135,240, - 83,159,127,239, 59,230,138, 68, 72,101, 18,247,105, 91,186, 51,124,129,108,181, 41,102,133,225, 44, 23, 90,229,246,103,169,145, - 24, 97,187, 40, 52,187,250, 11, 28,144,214,147, 89,195, 98,111,226, 99,150,130,223, 22, 30,221, 44,156,186,113, 18,234,134,161, -130, 18,109, 54, 34,107,170,245,186,248,213,107,230,204,255,174,159,165, 94,199, 86,210,158,168,105, 16,212,159, 91, 43,181,239, -130, 1,183,200,233,154, 12,243, 98,186,210, 94, 19,162, 75, 3, 20,166,158,128,213,226, 18, 75, 86,248,234, 91, 73, 91,133,188, - 93, 49, 95,198,135,221, 87,200,183,255,108,173,144,216,130,149,169, 99,104,183, 79, 91,158,186, 55, 89,209, 14, 9,106, 33, 44, -108,188,159, 11,180,223, 11, 65, 81,121, 44,235,131,254,125,148,232, 74,172, 52,169, 37, 72,228,116, 62,249,207,242,227,170, 51, -225, 13,204,225,187, 62,224,135,222,163,119, 59,207, 24,241,193, 7, 31,226,115,159,251, 28, 62,251,217,207,224,163,143, 62,130, -200,226, 60, 89,236, 88, 37, 43,206,231, 83,213,142,159,206, 39, 67,165,162,185,158,193,201, 91, 41,101, 16, 3, 55,207,158, 97, -140, 35, 78,167, 9,211, 52, 87,159,116, 43,206,206,200, 97,151,246, 64, 92,255,238,242, 35,151,175,229,226,173,238, 82,184,253, -126,143,185, 18,235, 66,109,132,146,179,188,199, 49, 90,179,172,132, 97, 48,100, 96, 24, 34,118,187, 1,227, 56, 56, 41, 45, 99, -246,201,126,158, 19,210,156, 61, 18, 85,220,241, 44,122,163, 82,246,213, 90,137,125,133, 24, 71, 76,150, 91,128,128, 57, 77, 56, - 12, 17, 74,140,195, 46, 34,238, 14,184, 61, 77, 6, 3,131,240,234,238,132,219,219, 87, 24, 72,140, 25, 95, 45,185,125,173,232, - 41,114,204, 17, 2,207, 98,159,167,106,125,154,179,214,181, 72, 33, 80,134,146, 2,230,232, 86, 40, 55,179, 7,199, 88, 65,119, -159, 13, 14,230, 67,226, 40, 64, 25,132, 2,147,195,209,185,254,126, 8,150, 22,246,242,213, 17, 56,191,222,116, 37,236,136, 88, -111,232, 75, 51,142,140,239,254,185,224,107,250,127,225, 23,126,233,103,241, 98,255, 77,220,189,124, 1, 73, 71, 76, 2,228, 41, -227,237,113,198,225, 83,207, 49,133, 79, 33, 21, 14,130,223, 23, 73, 50,166, 36,208,148, 0, 73, 85, 70, 86,206,240,226,197, 46, -206,113,130, 51,231, 43,233, 83, 96,220, 39, 82,139,103,109, 73,227,174, 74, 16, 49,190, 20,113, 70,166, 0, 18,170,126,238, 65, - 45,214,150,162,217,194, 38, 98, 32, 3,172, 9, 49,170,125,190, 60,212,179, 71, 29,198, 47,231,145,247,184,205,170,141,186,248, -235,146, 38, 87, 81, 97,223,235,115,173,127,246, 56,227, 48, 46,167,139,172,116,101,101, 7,110, 13,101,221, 8, 55,122,238, 5, - 75, 47, 58,193,178,208, 23,237,113,246, 53,105,173,133,204,215, 18,184, 77,118,252, 34,229,235,182,223,109, 41,226, 11, 34, 28, -213,221, 17,161,117,162, 91,171, 43,218,199,105,244,230,237,206, 89,183, 57, 0,253,194,128,112,197, 59, 12,197,227,219,236, 96, -253,231,152,186, 53,193,165,188, 79, 59, 11, 83, 93,177,167,168, 54, 12, 61,115,191,141,121,109, 53,251,218, 53, 89,139, 86,252, - 82,228,165,157, 23,250,114,125,181, 18,244,176, 34,228,105,219, 20,181, 95,106, 92,243,108,167,141,161,151, 22, 89, 96, 5, 44, -184,227, 20,172, 22, 8,117,191, 7,185, 31, 8,124,112,162, 64,175,239,239,215, 21, 27,236,124, 90,239, 16,215,127,182,240, 43, -234,106,195,141, 52,238, 35, 24,117, 13,175, 62,174, 16,235, 99,127,239,135,192,238,153, 25,146, 19,254,227, 31,252, 71,236,198, - 29,130, 7,122,168,239,148,107, 35,161,102, 68,147, 82, 50, 82, 26, 7,196, 97, 88, 96, 98, 11,176,182, 85, 68,202, 38, 27, 10, - 6,235,102, 39, 47,218, 46, 89, 17,227, 96,206, 89, 94,236, 11, 25,142, 24, 8, 49,212, 12,246, 24, 67, 93,125, 29,246,123, 99, -211, 59,153, 79, 11, 84,236, 65, 50, 28,216,144,200,121,134,136, 5,188,152,196, 49, 64, 17, 48,229,197,183,129, 8, 30,234,146, - 16,163, 77,182,165, 73,176,156,121,107, 14, 36, 75,213, 70,155, 51,155,212,251, 32,171, 57,204, 5, 50, 62,197,147,155, 17,135, -155, 27,156,103, 65,158, 78, 32, 50,105,223, 60, 79,230,160,198,182, 6,152,230, 84, 37,108, 75,188,179,105,228,179, 91,153, 18, -212, 27, 14, 99, 91,115, 73,158,115, 95,119,109,191,119, 34, 30,205,234,154,124, 54,210, 88,100, 35,236,153, 36, 43,215, 38,158, - 92,177,144, 83, 50,235, 81, 10,221,106, 99, 8, 10, 30,134,199, 57,201, 61,194, 22,190, 93,163,222, 4, 69,126,254, 22,254,209, - 63,255, 8,223,251,213,127,140,111,124,254, 14,239,126,225,103,176,127,242, 14,118,187, 17, 52, 68,124,116,199,152, 94,190, 66, -208, 91,131,187,149, 49,137, 35, 10,236, 77, 87, 12,230,127,206,206, 22,175, 86,174, 77,138, 39,140, 68,203,129,160, 20,235, 46, -189, 20,203,224,188, 16, 43,238,140,192, 10, 79,180,241,100, 60, 5,107,225, 38, 40, 6, 38,148, 91, 60,147, 34,129, 45,241,148, -128,179, 16, 78,179, 66,211,140,128, 12, 13,140, 76,177, 74,164,197,211,248, 76, 6, 89,252,226,217, 51,215,139,242,201, 82,225, -168,157,204,105, 53,136, 53,168, 97,248,210, 79,190,247,157,211,105,114,148,197,253,105,209,106,164,151,209,190,221, 5,107, 67, - 14, 99,223,171,235,106, 82,160,134, 48,119,193, 51,166,203,161,100,107, 30,187, 6,189, 99, 13,211,211,229,196, 89, 36, 76, 76, -151,243, 76, 59,221, 86, 82,130,155, 13, 16,174, 5,110, 93,102,149,119, 28,170,246, 96,214,214,166,148, 54,216, 76,212,172, 15, - 20,232,204, 85,219, 41,154,214,168,243,106, 53, 65, 23,175, 77,239,153,134,137, 86, 88, 67,145,222,233, 5,186,222,161, 21,145, - 24, 35,195,125, 11,180, 97,113,234, 37,145,204,255,108,107, 16,223,154,206, 55, 61,222,155, 98, 89,255, 92,239,233,254,238,181, -151,165,238,126,124,163,242, 86,110,124,208, 61,252,128,141,103,212,213,139,188,188,153,183, 15, 56,237, 21, 10,111, 2,185,255, -168,123,244,205,105,125,176,105,253,167,191,242, 21, 60,123,254, 12, 63,248,193, 15, 60, 19, 64, 42, 20,158,230,217,184, 36,115, - 90, 34,137,221, 49, 13, 88, 53, 0,146,177,191, 57,224,240,228,105,253, 84,166,169, 64,250,118,207, 84, 41, 91, 12, 78,168, 99, -247,176,231, 10,138, 22,120, 43, 4,194,225,176,199, 60,155, 55,123,201,108, 47, 28, 21,246,169, 53,120,194, 25,121,226, 26, 51, - 59,163, 88,160,190,179,206, 41,131,212, 86, 14, 41,153,244, 80,178,105,196,179,187, 26, 22,169,164,136,201,159, 76, 95,238,223, - 5, 21,236, 92,107,207,197, 71, 28,132,253,126,103,146, 36, 8, 98, 8,238, 55,225,140,247,156,234, 52,156,197,214, 0,195,104, -211, 61, 42,100, 30,144,132,160, 57, 89, 50, 27,199,154,215, 94,238,128,192,168,105,111,129, 44,168,165,246,153, 30,224,162, 46, -169,179,107,226, 5,170,174, 40, 22, 14,141, 22, 85, 24,216,185, 1, 86,224, 50, 17, 94,222, 38,228,219, 79, 76, 58, 6,218,100, -201,252, 80,123, 30, 40,158,140,192,159,188,222,227,197, 31,255, 17,126,229,103, 50,246, 63,245,159,227,110,138,144,243,201, 76, -122, 38,193,123,135, 51,244,249,219,120,117, 62,224,124,247, 26,167,211, 17,167,227, 9,243,233,206, 39,247,180, 72,103,125,141, - 93, 89,229,117,128,181,221,145, 58,209,185, 68,169,146, 79,142, 54,203, 47, 57,233,170,141,150, 71, 23,150,186,210,194,245, 42, -153,233,130, 96,103,159,203,223, 10,202,103, 46,146, 82,211, 11, 91,181, 84, 69,122,125, 85,162,212, 24,159, 41,249, 32,157, 11, -249, 1, 37,139,165, 87,143,217,107, 29,198, 1,225, 75,159,123,239, 59,199,211,180,152,154, 96, 29,113, 74, 87, 60, 61,168,209, -136,183, 19, 96,255,103,237,228,140, 43, 59,245,107,207,181,253,215,250,189, 48, 45, 14, 3, 27,115, 50,213,124,219,182,224, 45, -147,188, 94, 17, 3,109, 65,214, 61, 92, 78,235,150,132,180,203,227,174,152,122,167, 89, 71,125, 78, 82,244,145,181, 74, 29, 51, -253,242, 90, 45, 69, 82, 91, 50,211,186,209,216,154,108,233, 18, 20, 70, 3,203,117,235,102,234, 35, 85,187, 47, 2, 8,209,223, -124,214,102,143,238,111,104,139,125,253,216, 34,254,240,206,157,250, 75,122,181, 70,210, 69,115,242, 6, 6,176,143, 40,155,143, - 11,111,169, 13, 19,189, 65,245,109, 9,135,143, 68, 27,104,235,121,239,225, 0,188,233,175, 16, 34, 94,124,252, 2,207,223,122, -142,175,127,237, 43,120,255,253, 31,224, 60, 77, 75,192, 11, 80,247,206,229,144, 74, 73,124,146,164, 74,184, 3, 44,178, 50, 39, -243, 59,120,250,252, 25, 66, 24,170, 30, 58,165, 92,223, 69,206,217,200,115, 28, 60,233,109,129,136,155,101, 23, 24,100, 83, 92, - 28, 48,207, 22, 78, 18,152, 23, 26, 82,206, 14, 67,103,220,236,119,134, 2, 52,150,195, 67, 12,230,142, 55, 26,169,207, 34, 82, -151,137,110,158, 18,114, 50,126, 64,242,215,174, 82,179,181,144, 44,245,163,154,223,236,199,136, 56,238, 60,251, 92, 49, 12, 86, -128, 99, 40, 78,109, 3, 56, 68, 39, 26, 78,102, 67,238,110,118, 57, 11,134, 96,142,111,134, 4,180,190,210,102,116,163, 57,153, - 28,208, 13,101,218,148, 68,109,162,163,217, 45, 79, 1,170, 50,182,200, 11, 18, 70,108,136, 7,123,184,118, 33,117, 22,183, 76, - 38,212, 93,187, 22, 77,149,127,255, 95,221,206, 72,119,159,120, 74, 37,221,115,243, 63,124,191,215,134, 93, 23, 33,201,126, 31, -241,251,223, 35,156,254,244,187,248,197,159,125, 11,251,191,243,243,120,117, 6,210,249,132, 65, 51, 62,117,200,200,207,222,198, -221,116,131,249,248, 26,167,105, 66, 62, 27, 9,114,154, 51,242, 52,193,204,208,187,229,111,227, 23,218,103, 62,100,113, 27, 86, - 42, 12,116,174,249, 6, 69,190, 87,174,139, 74, 6,171,175,136,136, 59, 4,181, 69, 40,217,141,169,216,125, 28, 64, 92,243,231, -217,149, 4,197,223,161, 58, 33,170,177,225,213,141,224,202,231,202,133, 37, 95,247,240,212,216,138, 47,242,225, 18, 7,190, 27, - 6,132, 47,255,228,123,223, 57, 29,207, 21, 1, 22, 45,133,129, 26,134,123, 47, 32,215,238, 48, 95,158, 0,234,188, 1,127, 49, -151, 90,219,166,175,160,203,253,116,187, 31, 39,244, 1, 88,212, 21,241,166, 5,104, 8,111, 53,237,109, 21,231, 90,205, 96, 90, -102,252,149, 6,131,188,216,147, 46, 5, 82, 47,134,109, 90,224, 14,234,129,252,182, 8,111, 77,196,168,187,242,229,204, 45,186, - 71,162,109, 62, 1,249, 14,188,151,159, 45,215, 81, 47,246,221, 13, 57,144,154,120, 86,106,143,196,126,128, 92, 18,135,174, 53, - 3, 54,249,204, 46, 93, 42,133,103,201, 93,239,201,120,143, 33,193,221, 55, 89,211,125, 28,136, 55, 41,209, 43, 54, 29, 61,182, -178, 18,176, 34, 12, 60,234,121,151,157, 23, 93,172,154, 30,122,186, 66,222,123,147,130,190,246,120,127,172,234,254, 77,127, 29, -143, 39,124,235,219,223, 70, 96,224,245,171,215,198, 44,119,146, 27, 26, 25,171,170, 26,129,204,125, 7,164, 73, 11,179,105,216, - 38,162, 39,207,158,130,131, 21, 99,243, 75,207,117, 63, 29,221,201,171, 24,113, 20, 67,149,210, 24, 4,182,172,112, 98,198,126, -127, 64,202,130, 52,207, 96, 98,203,124,135, 71,173,170,218, 68, 43, 54,153,143,227,224,236,117,155,240, 99, 8,190, 87,223,227, - 56, 37,156, 79,103,204,105, 46,176,143, 49,231,115,242, 9, 61, 89,129, 35, 96, 55, 14, 80, 48,230,121,194,232,228, 59,130, 69, -125, 10,156,185,238, 7,118, 12,140, 33, 70, 95, 63,176, 55, 65,150,195, 94,220,243,140,169,111,136, 0,113,112, 50,156, 27,123, - 5, 50,120,185,152,152,136, 86, 39, 56,162,133,197, 30, 60, 14, 54,144, 33,142, 57,139, 23,103,211,167,179, 10,194, 48, 44, 70, - 86,222, 80,192, 73,164, 89, 22,147, 44,214,108,201,109,162, 24, 72,144, 41, 66, 82,194, 24, 21,119, 18,113,247,242, 21,130, 78, - 29, 19,126,189, 30,124,164,196,226, 98, 88, 10, 4,240,126,196,255,254,199,103,204,127,244, 91,248,229,191,247, 12,251,159,254, - 47,240,226, 21, 65, 78, 47,113,136, 2,218,239,113, 59,239, 48, 31,111,205,239,252,108,159,219, 60,103,104,178,245,133,144,169, -144, 52,107,213,156,151,149,101, 97,241,151,149,138,145,235,146,161,144, 62, 48,219,208, 46,203,249, 70,168,105,111,197, 97,142, -155, 63,140,205,116, 91, 46, 65, 6, 60, 12,198,126, 51, 22, 83, 47,231,141, 16,147, 59,215,177, 91, 9,243,178, 50, 38,172,194, - 93,176,228,174, 87,228,129, 58, 5, 18, 65,109, 82,255,226,231,222,251,206,241,120, 54,202,253, 18,208,221,147,196,154, 2, 78, - 45, 65, 10,107,205,245,226,203,174,155,211, 18,117,197,143, 46,183,231, 15,192,239,205,174,124, 85,141,203,227, 15, 68, 8,164, -173,147,123,227,242,198, 30,106,223,175, 3,104,163, 16,215,169,151,250,215,219, 74,225,116, 69, 46, 83,186,143,137,188, 76,237, -221,102,152,108,129, 81,118,199, 76,151,200, 0,220,209,111, 81,220, 45, 72, 72,167,176,167,109, 70,122, 87,142,168,231, 78,182, - 57,243, 11,173,156, 46, 30,167,220, 26, 68,218, 52, 53,165,169,235,159, 71, 55,152,250,219,141,194,195,172,247,174,113,211,246, - 57, 23,126,234, 53,168,191, 37,198,233,170, 17,122,212, 96,254, 67,141,248,203,250, 65,233,113,127,189, 34, 90,122,217, 28,190, - 9,211, 93,255, 6, 97,247,118,210,143, 49,226,253,247,223,199,167,223,253, 49,124,249, 75, 95,196, 71, 31,125,104, 14, 94,206, -109, 40, 59,234,226,171, 93,242,219, 11,121,171, 20, 15,246,117,152,138, 21,152,253,225,198, 44,100,231,212,100, 49,104,101,128, -199, 33,186, 38,188,132,199,176,123,153,219,190,113, 28, 2,216,167,244, 82,112,161, 62,217,183, 94, 25, 37, 72,196, 33,105,245, - 60,240, 16, 24,207,158,220, 96, 24,119,120,245,250, 14,105,158,172,121,117,247,188,242,218,164,217, 59,171, 26,132, 46, 48,253, -121,201,222, 54, 91, 91,193, 16, 3,118, 59,119, 43, 35,139,153,165, 48,152,180, 44,205, 0, 41,230,164,152,230, 12, 70,198, 48, - 12, 80, 98, 68, 55,243, 81,143,167, 45,133, 99,206, 48,107,216,226, 79, 65,168,238,149,234, 81,181,129,164,202,217,136,138,115, - 98,179,172,163,197,227, 51,112, 73,121, 19, 39,128, 73, 13,129,129, 79,145, 74,140,148, 20,131, 57,182,216, 89,235,143,119,151, - 25,199, 87,175,193,114,244, 0,146, 70, 45,244,134,223,146,246,252, 34, 90,228,162, 35, 43,198, 39,123,252,214,159,158,241,253, -239,254, 22,126,241,171,132,183,190,246,159,225,147, 87, 1,135,244, 2,195, 77,192, 81,110,128,243, 29, 68, 39,156,146,163, 42, -243,140,156, 38,100,181,247, 52,103,133,166, 12,166,217,174,129, 79,124, 74, 75, 16, 89,185,111, 73, 44,166,204, 38,108,238, 24, -229,197,207,164, 16,147,203, 23,187, 6,164,234, 82,101,132,141,173, 47, 89,107,206, 58, 68,193,146, 65, 16, 8,155, 57, 14,212, -138,189,138,216,126,158,141,224, 25, 67, 0, 7, 87,121, 80,112, 57, 28,106, 98, 92, 35,238,174, 43, 0,105,138,253,110, 55, 32, -124,225, 39,222,251,206,249, 52, 45,176,180,110, 72,172, 26,236,186, 78,210, 68,171, 66, 76, 53, 53, 12, 13,191, 88,251,182,160, - 43, 6,116,121,124,111,129,157,171,195,145, 86, 42, 47,135, 53,136,177, 11,132, 17, 46, 7,172, 69,110, 9, 92, 89,118,231, 13, -139,208,133, 8, 88,201,154,188,212, 54,165,129, 87, 30,247,180, 32, 4,171,162, 79,155,171,133, 53, 67, 95, 59,233, 24,105, 65, - 19,122,130, 0,131, 46, 26,158, 53,171,189, 99,187,211, 6, 63,191,223, 4, 44, 59,102, 15, 19,208, 77, 62, 63,109,163, 41, 84, - 16, 16,186,168, 62,244,200, 9,253, 90, 17, 47,239,131, 54, 9,100, 77,247,122,133,226, 77, 68,219,195,118,183,218, 89, 75,213, -180, 15, 42,199,154,173, 70,125,120,249, 61, 71, 84,103,254, 67,141,145,210, 99,224,118,237, 63,175, 55, 41,232,127, 83,196,184, -237,150,200,158, 69,210,140, 79, 94,190,194,183,190,245, 77,156,207,103,188,122,245,202, 93,204,236,222,154, 39, 75,138, 42,111, - 36,139,177,214,219,137,189, 40, 21, 68, 76,134,118,120,114,131, 24, 7,156, 78, 39, 35,180,213,233,201,244,200,197,115, 62,132, - 80, 61,231,199,193,160,231,156, 19,158, 28,246,152,147, 96,154,166, 42,105,203,174, 93, 31, 66,180, 3,188,184, 29,178,201,204, - 56,184,119,183,146, 75,200, 6,156,231,140,200,246,216,149,203, 81,246,222,179,237,189, 69,212, 53,249, 22,244, 82,138,162,136, -201,199,118, 99,196, 48,142,136, 67, 68, 28, 70, 4,207, 74, 7, 5, 15, 23,177, 64,149,148,213, 93,237, 38,135,242, 93, 87,239, -251,255,228, 44,108, 51,222, 33,144,152,254, 92, 10,167,217,181,231,154,147,125, 58,146, 93, 50, 23,205,118,186, 6, 85,195, 35, - 64, 5, 33,216,193,239,217,200, 94,212,164, 58,176, 17,204, 35, 63, 16,204, 53, 78,221, 76,204, 89,249,230,249,110,136,192, 36, -192,237,237, 17, 52,223,218,122,228, 71,192,132,168, 54,228, 23,190,159, 24, 89,177,123,114,192,111,255, 89,198,247,255,195,191, -198,175,252,221, 35,158,127,227,151,112, 62,237, 17,226,132,204, 79,113,158, 50,238, 82,194,233, 44, 72,167, 19, 36,157, 23,238, - 67, 54, 66,166,241, 21, 60, 9,205,139,105,185,103,139, 63,136, 21,243, 98,191,204,230,207,194,138,140,176,144,145,197, 16, 38, - 91, 41,241, 18, 87,222,216,117, 23,119, 56,246, 5, 54,123,252,106,102, 2,193, 3,114, 96, 57,237,101,143, 47,170,152, 75, 50, -156,152,201, 76, 34,130, 34, 32,144,153, 20, 89, 97,183,159, 71,107,242,230,239,137, 26,156,110, 55, 68,155,212,207,167,169,113, - 98, 91, 50,212,181,251,113,123,140,232,118,176,209, 89,130,107,232,175, 94,176, 70,175, 78, 27, 5, 19,221,254,182,103,239, 93, - 20,194, 43, 83,189, 82,145,191, 44,147,110, 86, 69,110,157,216,104,121, 30,161,203,199,231,246, 80,166, 21,154,176,218,246, 87, -143,124, 90,105,147,219,235, 68, 88,101,206,119,222,105,171, 33,122,139,175,192,141,119,126,121, 77, 90,201, 65,125, 77,243, 6, -140,168,255, 90, 53,143, 27, 54,224,255, 11,136,190,225, 65,172,202,116, 51, 6,234, 5,167, 64, 9, 43,173, 59, 93, 41,238,143, - 47,236, 91,127, 70, 43, 69,195,125,118,235,107, 34, 96,219,212,233,189,248, 60, 53,190,246,171, 54,147, 30, 98,160, 83,229, 75, -144, 82, 79,130,105, 52,245,189,187, 95,163, 8,121, 36, 83,248,177,133,254,111,172,160, 55,187,189,113, 28,240,254,251,239,227, -221,207,124, 22, 95,252,194,231,241,225,135, 31,214, 64, 18,179, 24, 21, 75, 34, 27,140, 50,107,108, 94,237,248, 46, 38, 77,203, - 38,195,113, 66,221,225,112, 83, 19,209,138, 85, 41, 19, 99,154,147,155,205,152,208, 53, 57,110, 60,196,136,236,100,228,113,183, - 55,150,124, 74,117,197, 6,247,104, 40,107,193,224,170,131, 24, 3,246,187, 29, 66, 12,158,231,110,185,216, 67,140, 75, 58, 91, -136,254, 16,226,172,114,173, 6, 92,234, 41, 91,230,231,109,133, 86,137, 23,125, 50, 89,131, 64, 94,152, 83, 74, 94,131, 3,152, - 2,178, 95,199, 57, 9,114,154,170,236,104,118,198,126,246,160,150,150,253,108, 48, 59,234,110,155,200, 26, 13,170, 62,225,140, - 16,216,134, 24, 47, 38,204,228,177,207, 90,207,145,172,228,211,184, 52, 38, 77,112, 40, 62, 35, 6, 0, 20,171,153, 14, 67,113, - 24, 35, 40,142, 16, 49, 16,122, 74, 25, 72, 9, 20, 9,183, 71,129,156, 94,213, 38, 7,215,164,213,244,208,189,218, 15, 44,107, -107,227, 8,197,225,233,136,223,253,222,136,247,127,231,223,225, 31,126,243,136,195, 55,126, 5, 31,189,222,225,116, 60,226, 60, - 39,220,158, 38, 76,199, 59,228,233,104,161, 73,146,145, 61, 10,149,145, 17, 72,106, 51, 89,174,136, 54,100, 78, 41,202, 40, 88, -204, 56,164,216,187,180,217, 38,197,212,106,113,127, 3, 49,164, 89,183, 49,172,233, 43,142,243,230, 24,215,164,202, 56,145, 50, - 67, 93, 10, 39,128,102,127,108,245,201, 61, 99,206, 51,210,108,164, 77, 73, 25,164,179,163,163,229,115,150,197,128,166, 14,103, - 62,252, 17, 16,199, 17,225,139,159,127,247, 59,231,243,100,249,175,197,201,172,154,152,184,110,145, 44,238,240, 16, 8, 55,129, -113, 19, 8,123,235, 61,154, 80,147,134, 96,183, 50, 2, 89,179,144, 47,224,229, 13,246, 59,175, 32,120,221,188, 95,168, 58,200, -214,206,169, 77, 91,163,118,183, 76,117,103, 73, 85,115,191,132,213, 80, 83, 40, 55, 52,255,254, 97,182, 70, 54,218,155, 38,209, - 37, 65,139,112, 93,215,126,173,149, 97, 55, 0,194,197, 32, 76, 75,209,184,194,114,191,168, 11, 77, 24, 79, 37, 44, 86, 40, 93, - 27,147,152, 21,121,110,179,200, 82,215,196,116,112,251, 38,241,241,145,133,124,163,177,161,245,207, 82, 95,216, 31, 5,141, 87, - 5,194, 5, 78,114,255, 95, 42,175, 71,245, 30,244, 97, 53,107,235, 10,109,160,254,222,220,108, 58, 26, 91,200, 55,173,231,247, -137, 0,254, 70,108,231,208,170, 44, 23, 4, 41,167, 25, 31,126,252, 9,190,253,237,111, 65, 37,225,120, 60,185,220, 75,125, 31, -188,100,136,171, 74, 13, 43, 41, 80,120,221,225,250,231, 17,152,112,243,228, 9, 66, 28,204,237,205, 11, 97,206, 70,110,139,158, -210,165,158, 57, 48,248,164,157,230,132,195,110,180, 98, 51,205, 11, 87,134, 96,174,108,108, 69, 52,103,117, 27,217, 17,129,163, -235,201,109, 31, 78, 42,136, 49, 98, 24, 70,140,251, 61, 64,140,187,227,201, 88,239,206,152,175,108,119,226,202, 9,128,152,173, -104, 8, 92,215,101, 67,180, 34, 92,245,204,121,198, 97, 55, 84,141,124, 86,134,228, 25,115, 54, 8,190,186,217,169,185,209, 5, -202, 14,173, 27, 57,173, 83, 42, 19, 35,168, 96, 24,130,171, 80,236,141,230,146, 41,193,161,190,247, 96,169, 50,198,104,119,254, - 77,206,158, 24, 86,247,195,189,113, 73, 73,218,171, 95,255,106, 21,107,241,182,226,133, 36,231, 4,214, 4, 10,140,215,103, 32, -221,221,130, 57, 65,125,207,124, 1, 31, 61, 36, 51, 41, 82,216, 78, 2,186, 65,212, 4,112,243,100,192,239,126,127,135,143,190, -251,239,241,159,124,245,136,233,199,127, 17,175, 62, 78, 56,221,125,136,124, 62, 33, 77, 19, 52, 77,152,114, 70,154, 5,200, 25, - 65, 51,136,178,213, 50,151,166, 81,123,160,250,196, 46,234,126,246,154,205,153, 77,225,150,176,174, 0,240, 41,187,216, 31,131, -109, 96, 21,247,117, 37,111,166,180, 68, 5,211,194, 80,111, 7,158, 50, 48,150, 12,147, 8, 5,187, 61, 59,147, 15,166, 30, 7, -204, 32, 68, 21,179,149,133, 23,126,150,101, 12,149, 34,229,205, 70,176, 83, 5, 40, 91, 35, 52, 58,252,126, 60, 78,238, 79,187, - 76,154,182,131,176, 47,200, 16, 35, 14, 67,192, 97, 12, 56, 68, 15,110, 81, 96, 22, 96,114, 66, 64, 11,213, 46,186, 71,189,167, -176, 97,155, 94,126,157,103,133,237,224, 76,106,146,229,176, 10,127,105,223, 80, 9,224,107,111,231,165,240,111,174, 2, 72, 87, -119, 93,123,102,246,108,116,186,194,188,190,104, 66,186, 98,164, 23,251,113,169,135, 42, 93,202,241,136, 58, 51,157,203,168,216, -229,137,185,249, 94, 73, 67,200,107, 24, 6,155,124, 21, 90,173, 87,168,191,210, 23,110,127,111, 90,180,183, 97,118, 2,209,181, -230,158,122,235,249,181, 34,130,232, 74,193,211,206,234,151,232,145, 4,185,173,169,153,238,163,215,173, 38,124,234,221,255,244, - 30, 52,161,254, 61,122, 51,250,223,223,234, 14,189,125,228,142,180,161,216,237, 70,188,255,189,239,227,230,217,219,248,187, 95, -255, 10, 62,250,240,227, 10,111,179, 71,100,166, 57,185, 37,167, 21,139,114,168, 77,201,136,102,129,201, 93,217, 44, 50,148, 3, - 99,119,216,251,132, 14,196, 16,253,159, 46,221,241,253,252,110, 48, 11,217,115, 74, 32,207, 41, 79, 98, 19,146, 29,140, 6,139, - 26,211,220,160,203, 57,219,115, 70,159,238,203, 33,171, 40,169,138, 75, 67, 62,121,114,153,133,254, 88,241,158, 82,194,221,241, -132,243,233,236, 99,173,253,253,209, 13,101, 10, 81,112,191,223,129, 56,186, 23, 61, 33,122, 44, 42, 60,117, 46,146, 49,229,207, -167,179,133,122,136, 57,215,169,204, 22, 40, 82, 38,110, 48,166, 41,131, 52,129,163,193,233,228, 44,125, 26,118,152,178, 58, 98, - 64, 22,205, 25, 92, 96, 74,166,199, 87,182, 52, 49, 53, 74, 55,178,147,222, 66,108,226,112, 81,153,204,126,227, 73,195, 68, 55, - 84, 0, 10, 4, 5,146, 75,184, 40, 16, 82, 6, 8, 25, 33, 48,238, 18,227,124,251, 10, 92,200,114,244, 24, 25,198,234, 62,237, -200, 49,215,227,135,212, 11,251,225, 38,226,119,255,106,196,243, 63,255,109,124,253,167,206,184, 61,124, 21,243,105,194, 60, 29, - 49,167,132, 60,103, 76, 57, 35,207, 25, 33, 79, 32,182,201, 91,132, 93,182, 38, 6,139, 19,215, 76,115,168, 35,187,238, 57, 96, -124,130, 18, 71,166, 30,151,186,196,169, 22,255,125, 38,182,162, 95, 36,152,190, 54,170, 94, 42,229,207,120,137,183,134,146, 89, -175,147,214, 52, 55, 45, 80, 62,185, 14, 65, 25,177, 32, 52,129,173, 65,141, 1, 20,108,117, 67, 28, 16,137, 17,130, 33, 85,228, - 72, 17,123,122, 26, 19,155,249, 76, 19,212, 85, 71,250,186, 53,102,118,184, 42, 24, 17, 3,192,156, 21, 47,103,197,135, 89,241, - 82,129,249, 98,119,222,236, 47,169,175,246,235,140,150,246, 35,236,204, 81,232,250, 57,123, 57,213,104, 23,205, 42, 10, 36, 93, -242,202, 11,243, 81, 87,230, 38,139, 75,155, 9,252,115, 67, 72,227,238, 89,151,221, 51, 90, 35,125, 44, 74, 1,166,150,253,169, -151,242,228,102,119, 74,171, 11,192,144,205,216,217, 18, 21, 43,218, 55, 20,210,196,163,174, 77,113, 90,243,177,101, 21,210,104, -171, 11, 65, 6, 43,119,187,141,200,218,234,115,222, 56, 22, 73,251,217,108,154,242,232,229,160,184, 33,207,210, 11, 47,249,203, -232,219,229,114,234,197, 32,112, 95, 33, 91, 37, 8,248,235, 94,188, 2,113,245,177,180, 57, 92, 86, 48, 64,243, 26,214,254,239, -107,227, 31, 85, 65, 9, 65,184, 86,100,101,229,197, 95, 81,122,194,255, 47,126,169,244,102, 72,165, 73, 81, 37, 60,125,114,192, -111,254,155,223,196,247,126,240, 2, 63,249,249, 31,119,178, 39,234,180,206,129,160,130, 42,215, 33,103,106, 91,225, 10, 86,128, - 66,168,209,185,119,183,183, 72, 83,194,205,225,128, 39, 79,158, 84, 91, 95,230,136,192,193,225,104,115, 56,155,147, 32, 77, 54, - 5, 19, 7,228, 52,187, 69,171,121,166, 15, 49, 86, 35, 24,142,132,195,110, 68,140, 1,226,144,185, 66,220,194,214,244,217,105, - 54,143,247,125,100,220,236, 6, 51,132, 10, 1,162,100, 36, 43,241,211,176,200,152,216,166,224, 18, 43,171,217,118,209,199,211, - 12, 82,155,216, 3, 91,104, 79, 33,248,185, 49,105,117,214, 27,162,237,244, 35, 41,118,227, 0, 26, 6, 55,180, 9,126, 31,152, -109,109,154, 83,181,104,157,146,224,124,158, 16,201, 39, 72,168,167,166, 5, 39,113, 25, 34, 32,238,100,215,167,161, 0, 0, 32, - 0, 73, 68, 65, 84, 22, 98, 76,120,247,220, 8,161, 49, 94, 33, 79,217,179,247, 6, 55,200,161, 18, 1,171,182,195, 15,200, 72, - 0,242, 44, 32,157,141, 69,238,250,124, 82,193, 97, 31,128,225,208, 89, 45, 95,235, 11, 55,127,155, 86,131,147,110,143,234,218, - 21,118,197,254,217, 14,119,159,236, 48,124,255, 55, 17,134,247,161,225, 6,160, 1,100,206,237,128, 88,177, 37,182, 85,171, 32, -248,231,100, 65, 61,102,138,150, 42,112, 77, 85,114, 22,106, 96, 74,112,248, 69,168,140,228,101, 71,111,159,119, 78,102,178,100, -141,128, 33, 54,112, 78,131,157,215,206,183,112,196,155,137,173, 16, 19,144, 97,251,243,164,102,100,227,250, 66, 4, 24,185,155, -139,131, 27, 9,132,128,164,193, 72,119, 96, 16, 5,179,156,141, 4, 10,209, 86, 69,113, 0,194, 14, 74, 35, 20,177, 26, 92,177, -177,193,181,217, 28,195,255,144, 16,193, 54,145,231,140,219,243,132,151,199, 25, 31,157, 50, 94,204,130, 59, 1, 18, 86,174,108, -205,212,219,196,105, 47, 50,199,170, 47, 93,206,207,139, 34,221,212,197, 22, 70, 7,173,208, 0, 44,182,168, 53, 38,180,113, 3, - 43,166, 57,236,144, 54, 53,249, 40,221,227, 52,137, 67, 11,233, 77,107,120,202,150, 74,163, 48, 38,219,206,228,130,233,174, 27, - 77, 9,173,247, 79,139, 41,138,234,150,204,115,237,130,167,189, 51, 95, 23, 45,187,148,223, 26,128,162,109,221,214,138, 2, 20, -215,191, 54,188, 5,186,184,238,213, 73,223,157,194, 90,124, 76,165,117, 7,212,134,181,124, 79,129,190,150,151,190,110, 12,154, -207,175,227, 82,168, 94, 56, 18,174, 63, 15,221, 76, 50,211,139,207,172,106,156,219,100,187,182,155,236, 34,147,232,162, 97,233, - 60,151,181,185,160,229,177, 43,226,165,247, 79,218,186, 28,148,111, 58, 67,175,227,118, 85, 31,111,138,243,208,207,174,215, 43, - 61, 22,175,216, 29,110,112,126,253, 2,191,254,191,252, 6,246,135,103,120,231,237,183,144, 82, 50,232,123, 24, 44, 34,149,200, -228, 69,168,135, 76,117, 38,179,212, 44, 15,218, 32,198, 60, 39,124,242,201, 39,230,205, 62,140, 56,236, 71,220,220, 28,188,120, -186,235,155,231,164, 79,243,132,195,200, 56,220,220, 88,156, 38,115,117,175, 36,143,123, 37, 39,231, 25,243,221, 66, 81, 4,236, -198, 43,246,243, 4,231, 3,177, 67,176,176,131,178,144,214,114,202,152,167, 51, 84, 77,106, 22, 60,115,251, 60,153, 22,126, 55, - 70, 12,193, 80, 1, 37, 50,214,188, 38,236,247, 22,221, 26,139,235, 90,117, 96, 84, 12,209,215, 0, 33, 66,201,156,221,146,144, -243, 1,164, 34, 82,187, 33, 34, 12,131,105,238, 93, 46,151, 69,144,231, 9,145, 20,113,127, 0, 56,214, 3,214,252,219, 25,167, - 76,200,211,100,104,164,103,141,147,223,175,213,131,191,177,138, 13,108,239, 57, 59,126,201, 0,198,200,216,143,134, 10,100,101, -176,204, 54, 68,100, 75,108,203, 96,228, 89,176, 15,138,176, 63, 24,116,189, 61,145, 60, 14,107,122,195,123,159, 33,136,195,128, - 48, 30, 16,135,136, 16,198, 10,147, 19, 51, 66,105,138,216,210,237,202, 90,162, 20,236,133, 24,151, 27, 68,147, 16,130,161, 28, -162,132, 0,245, 41,184, 64,238, 22,227, 28,203,116,236, 15,170, 30,248, 50, 59, 33,143,117,177,237, 22,231, 56, 72, 35, 25,228, - 80,248, 21, 17, 16, 53,169,100, 74,238,185,239,181, 55,144,123, 16, 88,211,155, 65,134,134,207,138,211,148,113,158,147, 53,182, -106,174,117,118,253,141,124, 55, 11, 97,206, 46,215,252,210, 79,188,251,157,211,105,110,166,178, 37,179,219,146,194,164,238,180, -230, 46, 69,108,101,171,186,177, 95,212,149, 39, 54,117,250,187, 75,216,119, 61, 67,213, 60,242,106,247,186, 61,101,173, 25,249, -107, 18, 88, 27,124, 82, 22, 2,218,236,155,187,199,242,223, 15, 77,129,144,141,251,145, 54, 94,113,139, 40,173, 25,227, 23,221, - 1,109,179,180,177, 41, 87, 67,151,185,190,245,119, 8,180,233,210,167, 23,204,244,222,247,124,177, 97, 45,228,194, 69,154, 88, - 96,242, 26, 44,226, 95, 2,189,106,208, 67,219,170,134, 71, 64,242,215,126,175,253,215,173,213, 7, 54, 26,156,109,190,198,138, -127, 80, 86,129, 45,251,191,189,105, 30,210,149,181, 97, 43, 63,170, 26,156,126,184, 31, 37,160,218,253, 62,230,151,168,226,176, - 27,113,115,179, 55,130,150,104,175, 24,216,132, 78,151, 34, 95,154,192,195, 97,143,191,254,203,191,192, 25, 17, 63,247,237,159, -193,233,246, 22,167,105,174,159, 87, 22,129, 36,199,253, 60, 9,205,136, 94,182, 67, 76,238,100, 22, 61, 27, 60,103,131,155, 21, -214, 24,112, 24, 76, 23,238,146,173, 57,153, 45, 42, 65,240,252,233, 83, 80,220, 89,162,154,103,140, 43, 19, 36,171, 23,106, 43, -236,150, 91,110,249,216, 68,106, 83,206, 48,120, 62,184,199,137, 50, 33,132,104,147, 40, 76, 67, 95,144, 44,114,127,246,147,179, -250, 37, 39, 4,216,107,166, 56,248,110, 30,152,102, 67, 11,134, 33, 98, 24,247,152,179,173, 24, 66,140, 53, 19,221,224, 83,131, -201,179,147,232,114, 78,110,122, 66,174,227,215,218, 4, 20,115, 19,155,176,109, 42, 7,177,231,172, 11, 6, 86,119,156,179,130, -157,192,200,243,140,125, 84, 36,183,242, 13, 62,177,171,218,128,150, 17, 0,103,204, 39,129, 17,177, 0,176, 59,169, 73,145,105, -177, 57,162,141, 44,160,200, 80,101,176, 42, 12,233,183, 48, 19, 30, 8,175,231,128,244,250, 37,152, 82,159,220,246, 24, 91, 88, -255,222,245,136,189, 62, 64, 91, 81,156, 19,225,107, 79, 18,190,254,205, 27,156,126,236, 31,224, 60, 61, 71,158,110,161, 57, 97, -206,130,115,158,145,140,184, 0,209, 12,205,126,122, 19, 47, 81,213,142,188,160,102,162, 55,169,155,190,171, 46, 49,179,117, 85, - 73,182,235, 54,127, 17,163,207, 5,146,234, 62,199, 5, 17,166,133,112,107, 22,190,197, 41,154,234, 38,183,100,212, 11, 19, 84, -131, 35, 8,226,142,115,182, 30,145,130, 26, 87, 73, 29, 60,250,215,121, 30, 41, 67,115,118, 7, 66,151,144,170, 17,240,134, 24, - 29,125,168,249,228,182, 31, 87,181, 41,124,130, 66,200,114,100, 7, 42, 26,112, 43, 44,188, 98,198,183,145,170,218,238,182, 27, -210, 92, 27,252,162,212, 59,216, 53,246, 0, 23,187, 86,162,203, 96,152,109,162,101, 13, 51, 53, 47,234,172,152, 26,102,119, 97, -240, 87,147,131,139, 21,234,242,197, 74,181, 59, 84, 4, 93,215,100,194,229, 22,104,217,171,114,137,197, 43,239, 76,117, 59,181, - 12, 27,137,111, 13, 28, 47,221,207,105, 79, 70, 92,189,110, 45,153,187,171,125,122,191,230,186,132,237,197, 35,117,123, 40,217, - 35, 1,171,191,241,150,197,170,214,233, 87, 86, 48, 75, 95,103,174, 77,238,171,215,215,192,218, 45, 12,172, 77, 12,225,250, 49, -215, 85,124, 29,147,187, 36,217, 95, 22,183,156,181,194,224,197,192, 65, 91, 88,233,161, 98,189, 72,250,113,197,243,248,254,105, -123,221,208,210,195,162, 57, 93, 29,140,242,134, 99,190,177,124, 25,231, 84, 76, 57, 46, 87, 34,151,112,200,114,244,238,198,193, - 44, 67, 65,120,251,249, 83,252,251,127,251,155,248,157, 63,248, 19,124,249,203, 95, 70,228, 80,173,145, 11,219, 60,198,176,248, - 47, 52,132,160, 24, 67,109,210,119,227,104,154,226,211,209,200, 96,234, 86,169,113,196, 56, 12, 24, 35,227, 48, 14, 64,217,151, - 15, 3,142,231, 9, 41, 77, 14, 29,115,149, 17,101,135,203, 57, 4,204,115, 2,187,249, 11, 51,129, 99,244,195, 54,120,222,185, -253,108,202, 25, 36,150,129, 29, 98,168,247, 68,136, 3,166,172,238, 34,151, 49, 48,155,123, 93,136,184, 59, 30,241,250,238,174, -249,126, 16, 52,155,252,205,118,242, 54,221, 71, 55,157, 81, 53, 84, 32,171,130,196, 51,215, 37,155,157,107, 12,224, 96,107,131, -234,236,166,203,119, 66,138,211, 39, 7,235, 53,115,194, 57,171,147,219,180, 26, 42,141,145, 33, 60,216,164, 6, 65,140, 0,130, -125, 94,179,195,234,209,179,199,163, 11,228, 72,178,145,111,221, 20,199, 32,230, 4, 66, 70, 38, 70, 18, 67, 4,212, 37,113, 55, - 3, 99,124,114,131, 24, 70,236,118, 3, 36,236,107, 19,244,166, 44, 79, 82,170,248,226,214,215,172, 59, 95,169,245,151, 32, 76, -179, 96, 58,159,145, 37, 35,169,241,190, 56, 70,128, 71,219, 61,187,219,157,208, 98, 34,179,132, 88,121,212,120,118,219, 86,183, -195, 37, 37, 87, 26, 16,114, 82,144, 38,211,128,107, 48, 14, 68, 89, 63,120, 1, 87,159,102,153,125,210, 15, 4,225,128, 18, 68, - 94,222, 39,163,236,221, 45, 48,109, 22,241,240, 24,135, 77,124,237,226, 31, 0, 32, 9,201,185, 1, 50, 39,168, 36, 63, 99,173, - 1,177, 96,153, 12,201, 9,146,102,204,217, 9,166, 57, 1,152, 1, 54, 68,170, 22, 56,130, 57, 15,169,152, 12, 34,129,144,200, -247, 21,126,184, 15, 32,219, 1,248,158, 99,225,200,235, 5,241,140,154,134,161, 77,221, 88,159, 31, 93, 81, 93,165,130,109,238, -137,113,153,139, 78,171, 37, 76, 86,133, 6,194,179, 1, 56,144, 24,219,208, 83,148, 34, 45,105,112,114,177, 65, 53,116, 66,212, -246, 42, 54,205,187,100,161,190,110,221, 56,112,117,245, 79,234,223,223, 69, 17,187,143, 83,178, 70, 60,208,217, 17,234,198,177, -171,141,236, 70, 55, 90,143,106,194,209, 64,199,218, 93,178,165,248, 82, 3,245,139, 46, 48,149, 93, 3,217,164, 74,235,125, 83, -243,106, 47,221, 53, 0, 29,111, 80, 59, 8,126,185,110,219, 59,247,229,247,245,226,179, 88,130,109,228,122,145,116,200,108,136, -161,121, 31,122,157, 65,174,219, 31, 17,145,118, 74, 6,210, 7,206,180,102,125, 95, 95,135, 62,120, 14,246,150,149, 63,140, 46, -152, 25,231,243, 9,167,187,219,199, 57,220,116,187, 9,216, 1,228,246,164, 97, 24,241,108, 31,240, 47,255,197,191,192,239,255, -209,159,225, 43, 95,250,201,186,210, 24, 6, 99,169,151,191, 22,156,244,134, 70,226, 99, 36, 47,207,238, 38,139,101, 37,133, 65, -212, 49, 32,137, 32,101, 51,162,217,237,119,184,217, 69,236,118, 59,100, 37, 32,155,239, 58,177,157, 53,145,128, 97, 24, 23,127, -115,166,106, 81,203, 33, 26,243,185,172,160,220, 18,116, 24,162,241, 97,220,228, 38,249,141,110, 28, 51, 99, 77,231, 60,131,144, - 45,213,141,108,148, 97,102,236,199, 17,154, 51,210,116,194, 24, 3,134, 97, 64, 24, 6,119,210,179, 48,150, 2,219,219,101,204, -200, 78,234, 27,134,232,242,186,209,243,182, 7,136, 88, 97,200, 21, 82, 71,229, 39, 24, 35, 91, 60,175, 93,160, 28,108, 98,155, - 39, 0, 2, 35,123,103,159,230,128,160, 25,187, 72,144,176,195,156,220,248, 39, 11,128,236,206,105,190,170,112,242,156, 40, 87, - 79,120,109,120,188, 89, 0,157, 39, 16, 82,205, 3,153, 69,161, 8, 24, 57,224,201,205, 0,218, 63,169,235,227,135,118,233, 29, -152,167,143,156,208,155, 63,229,114,174,139, 21,182,148, 18, 78,231, 9,119,199, 25,167,187, 35, 36,157,141, 87, 64,132, 9, 12, -201,132, 80,217,107,139,105, 12, 67,161,108,242,176,156, 4,144,180, 20,118, 8, 34,169,173, 71, 4,136,206,165, 96,127,114, 75, - 10,204, 62,204, 88,236,170, 89,205, 18, 72, 8, 65,201,119,250, 10, 45, 43, 15,119,226,204, 37,173, 83,140, 95, 65,146, 17,145, - 13, 65,242,176,163, 50, 80, 71,255, 44, 50,236, 53, 74, 78,118,207,139,128,164,148, 40,191,215,189, 25,156,115,198, 60,103,204, -217,115,229,185, 97,135,115, 99, 50, 79,106,240, 77, 38,130, 56,201, 34,178,177,223, 11, 36,206,101,122,111, 32,242,222,218,165, -213, 45,232,134,164,145, 86, 59,109,186,216,149,202, 61,112, 46, 55,127,183,211,143,135, 1,251,167, 1,207, 15,140,155, 72, 24, - 96,108,208,172, 75,196,172, 77,238,188, 16,122, 58,153,154,122,115, 96,187,141,242,231, 37, 7, 89, 55,103,153,165,148,234,138, -182, 85,202,173,220,179, 86,162,245,238,188, 76,193,186,141, 38,108,237, 87, 33,254,103,173, 59,153,234,229, 94,186, 41, 94, 29, - 98,210, 78,223,126,168,103, 21, 15, 70,160,126,247,125, 95, 97,223,250, 25,108,144,251,218, 61,122, 83,185,106,178, 92, 7, 57, -108,237,160,181, 78,173,107,134, 65, 69,121,154,199, 91,183, 98, 68, 54, 41, 93,146,243,180,115,121, 91,223,147,221,109, 93,199, -246,237, 68,191,205,173, 0, 93, 74,122,174,165,172,210, 10,209,120,156, 60,239,202,243, 23,105,206, 22,217,144, 86,221,241,234, - 9,206,231, 83,141,250, 84, 85,140,251, 27, 12,122,194,175,255,218,191,196,251,175, 19,190,240,185, 31,183,105, 79,201,173, 47, -151,152, 90,166,197,156,170, 24,152, 73,217,104,179,133,186,220,222,222,214,239, 49,147, 33, 93,243, 52,131,153,241,252,173,103, - 24,119,123,204,211,140, 16, 24,129, 3, 66,136, 96,102,219, 97, 83,192, 16, 44,169,139,188,192,149, 48, 15,103,211,217, 97,183, - 58, 43,178, 2,211,156,161, 57,185,235,157,214,116,192,253, 56, 96, 28,119, 6,105, 70, 70,202, 2,145,140, 24, 34,158,222, 28, - 48,142,131,185,223,145, 19,178,148,234, 10,160, 22,129, 2,199,186, 83, 94, 86, 54,130,213, 16,173,184,164,108,187,226, 96,100, -100,113, 83,152, 37, 23,222,214, 9,145,205,135, 31, 0,134, 96,147,123,137, 26,149,236,201,115, 16,196, 72,160, 56, 64,133, 16, - 44, 41, 29, 67, 4, 56,142,181,193,152,147,184, 75,157,173, 37, 98,228,218,112, 21, 51,150,253,192, 24,157,144, 72,126, 93, 50, - 24, 41,157,145, 36,227,201, 64, 24,111,158, 66, 48,192, 42,205, 27,232, 42,168,172,189, 20, 15, 45,228,173, 1, 94,206,169, 57, - 19, 56,205, 24,249,108, 46,124,200, 56, 78, 9,243,241, 4,164,179, 59, 28, 18, 52,205,128, 38, 63,219,217,153,253, 38,177,148, - 98,246,229,204,119, 72,174,123, 90, 55,209,243,149,130, 86, 36, 99, 96, 70, 12,102,227, 91,212, 68, 90,254, 5,226,191, 39,176, -255, 89, 96, 78, 97,222,151,153, 54,168,201, 23,149,212,234,138,152,116,211,246,246, 1, 33, 26, 34,197, 98, 28, 6, 98, 53,201, -162, 26,159, 32,144, 32,176, 88, 13,142,214, 8, 70, 38, 75,137, 11,110,209,158, 0, 86,215,213,134,226, 84, 83, 52,116,218,218, -213, 91, 81,207,190,191, 26, 24,216, 19,234,196, 94, 36,247,101,226, 71,199,188, 70, 7,171,210, 21,229, 76, 91,108,164, 19, 36, -233, 37,169, 92,221,234,175, 33,207, 21,237, 53,169,152, 41,196, 16, 16, 65, 56,101,224,152, 21, 71,129,217, 7, 58, 76,221,238, -154,185,105, 68,184,129,155,203, 39, 66,171,125,177, 49,214,181, 91, 55,172, 39,176, 74, 86, 67,207,150,238,119, 20,151, 48,249, - 37,113, 80, 47,144, 13,237,174,203, 82,224, 91,136, 93,156, 40,164,173,252, 92, 55, 8,250,170,157,163,153, 54,236,108,169,176, - 44,186,248,214,142,236,165, 15, 20,242,213,223,235,137,124, 43,159,188, 21, 65,174, 56,123, 93,204,231,221,115, 52,173, 80, 7, -235, 8, 56, 68, 59, 8, 23,234,122,157,236,213,159, 40, 75,194,249, 60, 93, 57, 87,244, 10,185, 76, 23, 71,190,149, 82,226, 94, - 2,176,246, 72, 21, 20, 77, 58,162,246,107, 0,244,164,224,246, 53,208, 35,135,162,199, 18,231, 46, 95,224,245,134, 96,189,226, -120,242,236, 45,164,187, 79,240, 79,255,199,255, 9, 57, 30,240,165,207,127,214,119,245,188,172,163, 2, 99, 24, 7,176,135,140, -216,206,217, 96,240, 64,140, 64, 1,146, 51,166,211, 9,211, 60, 99,136,140,155,195, 1, 55, 55, 7, 60,123,122, 64, 86,198,237, -217, 66, 85,198,129, 49, 12,209, 2, 75, 28,105, 73,162, 54,233,251,151, 55,132, 96, 12,232,156, 59,178, 82,245, 93,241,230,171, -112, 93,178, 19,253,246,187, 1,187,253, 14, 89,128,233,124,182, 67,155, 76, 38, 6,138,224, 96, 6, 33, 89, 50, 38, 97, 76, 25, -152,147,173,249,230, 57, 67,242,108,201,108, 62,125,149,168,216, 44,185,129,153, 91, 82, 50, 99, 8,112,127,123,120,161, 15,213, -105, 76,156,139,128,226,102,231,143,171, 94,232,217,221,243, 80, 84, 23,158, 40,119,150,128, 52,155, 37, 45,133,136, 89, 3,230, -180,156, 87,145,128,193, 25,102, 89, 81,112,100, 27,146, 92,126,151,179, 32, 48, 87, 20, 98, 22, 54, 4, 83,128, 60, 39,140,122, -198,211,103, 7, 72,124,234,208,239,195, 20,148, 11,212, 78,215, 50,156,141,117,161,239,164, 11,255,197, 60,212, 5, 99, 16, 28, -246, 35, 14,251, 29,194, 48,154,199,250, 60,129,117, 70,100,183, 79,117, 25, 91, 96, 53, 2, 26,187, 79,191,136, 73, 2, 89, 64, -193,215, 35,154,221,114,213,247,232, 78,190,227, 10, 46, 25,127, 33,198,224,205,149,175, 44,100, 57,203,236,117, 42, 40,171, 33, -222,197,236,167, 70,149,251, 96, 24,150,124,116,113,181,134, 37, 19, 10, 56, 50,114, 12, 16,184,242,195, 35,115, 11, 83, 94, 64, -152,149,172, 57, 68, 0,113, 68, 8, 1,163,231, 24,240, 16, 45,122,245,236,146, 12,109, 88,236,235,128, 16,245,229,106,217,177, - 6, 50,221, 93, 37,156,109,184,193,133,118, 15,190,142, 44,237,121, 80, 27,127,123,139,132,182,142, 58,165,198,133,169,157,216, -141,206,149, 83, 70,154,179,121, 3, 19, 53,250,117, 90, 44, 85,169,119, 93,187,204, 95,163, 78,134,129,142,176,183,210,165, 19, -238,245, 48,223,138,140,221,150,234,109,122,168,174, 83,102, 55,136,111, 11,193,173, 86, 15,162, 43,207,143, 7,244,215, 61,217, -140, 87, 92,251,246,125, 87, 31,118,186,116,163,163, 43,100, 56, 85,155, 92,246,129, 12, 54,245,116, 34,197, 21,130,219,102, 18, -159,118,143, 75,157,232,144,106,195,115, 69, 45,142,203,103,163,135,221,102, 26,222,129, 62, 10,190,110, 45,149,219,191, 79,203, -122,234, 17, 59,248,191, 21,233,218, 22, 44,160,247,153, 29,111,236, 4, 20, 24,119, 35, 94,127,244, 62,254,250,163, 91,252,131, -159,255,251, 96,153,240,250,238,232,133, 84,171,149,170,193,237, 86, 44,216,229, 97,145, 25, 49, 68,100,181,227,116,183,223, 97, -127,184, 49,184,154,140,224,117,123,188,131,204, 19, 84,178, 21, 93,101,228,121, 50,133, 78,140, 85,166,197,100,204,111,246,252, -243,194,114, 23,245,195,209,247,253,195, 96, 91,229,192,110,239, 58,248,132,239,102, 57, 57, 39,164,121,198, 52,207,144,108,114, -178,121,158, 29,225, 96,156,167, 25,211,116, 6,196,162,102, 37,103,236, 98,192, 16,131, 91,207, 70, 36,159, 4, 99, 88,130, 67, -168, 70,193,182, 95, 47,103,184,103, 65,206, 22,246, 66,154, 33, 62,209, 83,241,177, 47,132,195,130,124, 64, 17,221,144,102, 96, -135,245,153,144, 57, 96,154, 5,154, 38,111, 40,188, 89,206,201,176, 17, 5, 34, 41,130,163, 27,112,167, 57,118,210, 93, 65,114, - 68,151,102, 85,201,100,113,193,167, 74,114, 45,190,198,136,151, 71, 1, 29, 95, 46,238,114,143, 32,122, 42, 61,246,158,110, 12, -186,200,136,114, 95, 28, 51,190,249,245,128,215, 63,241,115, 56, 79,159,133,230, 35, 78, 57,227,238, 88,166,245, 35,128,220, 60, -129,248,119,218, 89, 96,164,139,201,152,175,164,102, 88, 83,165,146,145,213,226,116,109,239, 77,181,184,104,179,255, 47,100, 75, - 38,246,180,186,226,152,168,203, 26,163,122,220,112, 3,193, 45,106, 39,166,130,194, 16,192,118,150, 20,162,158, 33,193, 75, 90, -155,146, 54, 41,159, 84, 45,109,165, 4, 37, 65, 33,142, 72,236,118, 59,196,234,136,221, 6, 0,248,212,158,219, 99,212,181,220, - 38,152, 55,162, 69, 96, 96, 80,243,184,205,133,229,199,192,142, 20,131, 2, 39, 53,186,253, 5, 19,187,235, 87,245, 98,103, 72, - 27, 7, 38,173,244,212,189,225,203, 74, 18,166, 25, 72,102,201,151,116, 89, 45,244,216, 3, 45,132, 35,234, 35, 63,212,255,187, - 20, 25,110,210,205,138,179, 50,145,141, 89,234,164, 8,109, 37,118,212, 67,239,220,189,163,198, 79, 94,168, 35,142,182, 39, 38, -173, 9, 94,186,152,206,172,251,218, 94,226, 70,221,126, 86, 85,220,116, 66,187,117, 69, 29,142, 55, 35, 74,123,252, 64,117,177, -216,237, 12, 29,181, 15,244,129,182,209,175,101,242,166, 94,154, 70,139,211,146,168,226,148,151, 92,104,106, 38,244,203,152,182, -102, 85,208, 48,246, 43, 36, 77, 23, 52,190,234,117,125,209,188,232,194, 84, 93,208,129, 94,199,126,181,142,149,104, 68,104,159, - 48, 3,244,217,239, 88,140, 78, 90,223,125,109,101,104,205,244,187,181, 35,255,219, 42,230,216,132,249,215, 80,154,110,125, 97, -251,218,223, 60,216, 91,159,250, 20,254,244, 15,127, 15,191,250, 27,239,225,191,249,175,126, 9, 41, 11,190,255,193,199, 72,148, - 76,179,207,132,113, 55, 32,165,236, 5,146, 60,190,212, 16, 21,118, 63,114, 77,102,232, 18, 67, 0,199,128,211,235, 19, 32, 25, -196, 54,213,198, 16, 76, 90,230,114,178, 57,155,115,195,126,103,161, 41, 89, 21, 41, 59,131,221,167,118,153,230,166, 53, 93,148, - 30, 41, 37,132, 24,176,143, 86,216, 85, 9,211,156,144,189,225,228,121, 6, 19, 89,190,249, 41, 1,146,109,231, 46, 25,187, 8, - 40, 13, 8,206, 28, 39,223,211, 11, 25, 31,160,112, 57, 52,154,222, 30,226,226, 49,118,223,112, 55,213, 41,247,111,100, 2,107, - 6, 13,140,243,196,198, 74, 15, 84, 45, 94,153, 50, 2, 7,164, 84,166, 79, 11,252, 24,163,157, 69,153,140,208, 37, 89,192,152, - 64,209, 89, 82,106,123,224,192, 86,186, 89,141,213, 62,123,101,229,198, 25,143, 66,196,156, 96,188,128, 96, 62,245, 36, 25,138, -140, 29, 43, 52, 14, 21,113, 20, 85, 60,139,130,155,231,207,240,250,229, 13, 6,189, 3, 40, 62,192, 43, 93,237,216,208,184,120, - 54, 27,118, 90,161,189, 45,108, 63,101, 2, 77, 25, 83, 58,225,227,219, 25,250,250, 14, 17,130, 97, 24, 49,113,172, 86,170,128, - 25, 34, 45,188,157,197,142,213, 2,180, 74, 76,139,147,234, 52,120, 98,107,170,235, 15,245, 8, 90, 10, 1, 80, 94, 94,171, 40, - 2, 27,103, 11, 58, 24, 73,211,255, 14,187,137, 82, 33,157,195,253,220,209, 36, 48,154,210,192, 35, 85, 61, 51,221,254,187,200, -167,114, 73, 80,175, 50,217,154,167, 66,126,134,202, 18, 72,163, 89,160, 89, 64, 44,144,148, 16,101,225,134, 57, 33, 78,193,190, - 51,206,229,163, 40, 14,117,238, 3, 60,179, 95, 14,159,114,163, 31,142,137,217, 48,127, 53,227,255, 25,203, 20, 44,197,230,212, - 79, 4, 65,239,231,141,106,140,143,206,171,187,141, 12,181,110, 28,139, 94,184,196,228,109, 16, 48,104, 35, 41,110, 77,178, 18, - 93, 17,156,168,129,233,136,160,108, 76,118,109,216,109, 84,104,253, 94, 80, 24,122,129, 34, 85,251,207,106, 71,173,171, 34, 76, - 93, 85,165, 70, 22, 77,186, 77,130,235, 11,219, 61,206,123,126, 51,162,250, 22,183,251,185, 53,233,106, 41,188,109,192, 73,253, -113,109, 73,120,125, 83,193,222,153,138,246,147,178,125,137,238, 41,246, 53,255,153,160,146,155,132, 53,183,173,173,241,244,122, -105, 84,209,189,199,181,250, 66, 46,165,110,212, 79,215, 75, 30, 59, 93, 78,252,218, 7,226, 92, 11,106,107, 89,184, 53,114,216, - 19,156,232,202,244,187,232,215,169,213,193, 45, 30, 1,143,144,175,233,223,104, 65,215,235,147,247, 86,197,215,235, 56,135,186, -237,171, 18,240,206, 91,207,241,239,254,205,191,194,215,191,246,211,248,217,175,127, 29,199,223,251, 46, 62, 17,143,103,117, 93, -250,110, 55, 84,115, 14,101, 70,202,201, 26,207,114,183,120,140,232,254,112,131,227,105,178, 29,114, 28, 64,200,120,250,228, 0, -225, 1,113, 78, 16,142,230, 76, 87, 44,108,213, 92,213, 34, 3,211,188,184, 84,164, 57, 99,136,236,147, 57,124,111,109, 75, 62, - 11,118, 49, 99, 18,114,199, 53, 85,197,116, 58,185, 89,206,136,147,206,134, 46, 4, 54,141,121,202,102,160, 19, 71,136, 36, 75, - 99,227, 96,112,171,191, 22, 21,113, 36,194,160,226,236, 56,102,136, 1, 83, 90, 38,244, 2,243, 2,140, 48, 70, 76, 51, 1,115, -194, 16,173, 16, 39, 53,168,152, 25,149,121, 29,131, 33, 28, 25, 64,240,239, 90, 18,191,142, 57,129,121,105,184, 57, 16, 2, 5, - 51,219, 41,231, 20, 17,166,100, 38, 41, 35,102,132, 33,154, 25, 10,249,116,234, 22,168,236,129, 53,170,118,239,102, 81, 39, 22, -218, 57, 41, 96, 12,164,120,251,173, 3, 94,127,248, 41,224,246, 53, 16,239,135,155, 58,155,142, 46,102, 88,175,222,110,228,171, -180,242, 31,199, 76,160,121,198,147,221, 4,196, 17,183,119, 51,166,243, 11,219, 67, 15, 1,105, 26, 33, 46, 65,100,205,182, 89, -192, 66, 68,171,249, 0, 72, 53,129,141,148, 22,174,140,107,218,139,193, 80, 61, 3,201,148,239,220,229,109,169,171, 27, 24, 1, -128,248, 20, 72,133, 85,239,223,121,110, 76,199,200,135, 70, 51,250,113,163,153,230,219,190,184,218, 1,172,132,236,196, 88,114, -210,111,246,139, 24,154,200,180,202, 38, 18, 49,205,124, 80,237, 18,213, 10, 79,189, 24,221,179,150,212, 25,173,246,137, 34,132, - 25,132, 9,132, 68, 11,228, 29,200,152,150,199, 76, 56,119, 26,118,135,190, 92, 22, 23, 89, 17, 73, 27,151,227,149,204,135, 22, -248,190,202,179,104,137,193,171,111,165,192, 19, 74,221,170,154,215,172,248, 43, 2, 33,189,232, 6, 23,127,248,198, 58,109, 37, -157,179,152,190, 78,249,212,190,206,149,238, 72,117,123,216, 89,203,249,214,194, 60,189,151, 27,170, 27,196, 52, 52,114,172,254, -253,173,229,108,178,177,227,150,166,208,244, 63, 75, 23,207,139,198,211,160, 20,106, 89, 95,163, 7,100,108, 23,238,115,205, 4, -208, 13,137,138, 11,254, 66, 47, 89,187,156, 64,175,153,171, 92,240, 58,252, 53,154,145,197, 18, 95,216,114, 3,168, 97,216, 83, -251,223, 43,115, 26, 85,189, 72,210,235, 16,165,150, 83,241,195, 16,220,240, 35,231,189,172, 10,186, 94,239, 32, 30,251, 75,180, - 35, 10,132, 97,196, 33, 42,254,215, 95,251,117,204,136,248,202, 79,127, 9,159,250,212,219,136,131, 77,226,146, 77, 42,182,219, -239,170,109,105,225, 20,196, 24,145,114,198,121,154,145,179,253,183, 40, 48, 77, 19,134,200,120,246,244, 41, 50,141, 72,115,194, -232, 12,242, 33, 70,140,187, 17,113, 28,144,242, 12, 38,155,216,152,217,251,238, 50, 65,143, 24, 98,240,148,182,232,250,222,132, -192,132, 39,251, 61, 66,136,152,147,216,212,239, 18,177, 52,207,152,179, 96, 78, 9, 36, 9, 68,108,176, 44, 17,146, 6,168,204, - 24,227, 96,147,180, 74,205, 31, 71, 97, 70, 55,247,120,105,160,179,122, 3,146,115, 13, 0,169,141,104,137, 6, 85,177,102,153, - 2, 52, 11,184,236,131, 75,204, 41, 53, 57, 15,164, 56,101,193, 60,157,193,106,142,121, 22,165,170, 30, 62,227,156, 20,182, 41, -158, 60, 20, 71, 68, 16,116, 50, 66, 88,136, 80,216,115,205, 62,153,135,104,251,222, 16, 44,239, 59, 6, 32, 81, 64, 78, 25,208, -185,158,102, 41, 43,158, 12, 25,251,183,222, 66,194, 30, 54,234,222,119,243, 45, 9,149,143,106, 83, 75,225, 47,131, 4, 1,175, - 18,227,197,139, 4, 58,125,130,195,129, 65,251,103, 56,205,140,233,238, 14, 65, 78,216, 13,132,195, 24,177, 27, 24, 8,214, 36, - 74,182,138, 86,214,196, 35, 27, 66, 97, 43, 63, 15,229, 33, 87, 60,101, 67,158, 11, 78,154, 0, 76,217,208,159, 57,139, 95,131, -106, 24,187,248,233, 55,132,115,117,253, 59,124,253, 67, 78, 26, 37, 6, 40,152, 37,112, 52,182, 27,132, 99, 45,242, 16,179,227, - 77,217,119,245,101,105,224, 43, 15, 91,121, 59, 49, 47,103,176, 36, 48,102,187, 71,156, 15, 48, 57, 82, 0, 91,233,219, 7, 37, - 14, 27,136, 19,223, 10,179,189,144,130,196, 93,198, 36, 19,102, 81,156,197,244,236,128, 32,136, 65,202, 93,138, 88,179,151, 8, -196, 24,152,176, 71,105,234,180,163, 68, 22,211,124, 39,171,250, 63,181,237, 39,156,229,220, 23,190,174, 44, 54,235, 64, 90,161, -137,221, 49, 91, 23, 59, 82,167,118, 99, 70,182, 17,163,139, 33,203, 37,195, 79,107, 26,157, 82, 79,150,171,244,200,123, 72, 77, -180, 34,126,193, 59,111, 96,219, 22,247,154,236,173, 94,141,245,148,165,168, 41, 68,184, 40,226,232, 24,250, 90,137,129, 82, 75, - 23,173,138,248, 22, 89, 45,183,197, 92, 23,249, 27, 26,226, 34,182,100,108,218, 19,192, 68, 47,139,223,154, 10, 87,148, 7,116, - 65,212,211,109,166,184,110,105,217, 27, 52,197, 9,147,180, 52,184,151,235,244, 90,188, 47, 53,244,168, 22,196,219, 51, 6, 93, -153,180, 31,187, 79,124, 19,149,208, 99,225,246,254, 90,209, 70,159, 75, 61,228,244,128,127,119,183, 56,243,142,246,233,179,183, -240,103,127,250, 39,248,189,223,251, 46,190,240,133, 47,225,221,247,222,195,147, 39, 79, 48,142,177,126,190,195, 48,184,172,205, -138,115,246, 2,203, 32,228,116, 54,194,147, 31,171, 49, 88,211,117, 78, 4, 73,147,147,149, 34, 98, 28,188, 49, 48, 98,218,126, - 24, 64,108,174,112,195, 24,221, 30,213, 29,233,192, 86,216,200,227, 73,213, 86, 98, 67, 12, 64, 48, 89,217,156,102, 39,199,101, - 8, 24,231, 36, 56, 31,111, 1,153, 17,189,120, 79,211, 12,146,140,231,163, 77,204,217, 51,220,166,148,145,115,182,232, 87,151, - 61, 65, 21, 67, 96,159,248, 76,158,151,211,140, 98,200, 51,123, 44,104,174,164, 52,203,211,182,224,150,224,197,221, 73,189,210, -192,211,190, 87, 15,102, 13, 7,205,128,230, 25,162,217,141, 80,168, 54,230,170,192,156,178, 23,181,229,163, 13,126,206,206, 26, -204, 43,221,225,222, 65,179, 61, 39,204,177,140, 69, 48, 12,132,153, 77,118, 71,146, 43, 19,158,152,145,148, 16,114,194,243, 39, - 3,116,247,220, 88,228,247,212,243,218, 51, 95,233, 34,117,163, 1,111,117,236, 68,192, 36,132,233, 40, 56,221,126,132,249,248, -202,209,244,157,193,221,243, 12, 72, 2, 71,198,184,219,225,201,205, 1,187,253,222,154, 34, 53, 43,214,125, 36,236, 6, 2,141, - 12,196, 17,160,104, 6, 63,110,140, 20,120,209, 97,129,221,108, 70, 1,202,142,158, 72, 54, 93,184, 24, 71, 65,154,212, 59, 16, - 53,241,220,161,158, 87,166,155,103,168,186, 5,177, 24, 25,209, 62, 39, 6, 35, 58,255,172, 88,207,100,139,100,205,166, 71,103, -191,174,234, 59,248, 49, 0, 97, 32, 8, 5, 75,209,211, 98,236,228,123,254, 58,149,147,120,180, 28,117, 80,237,250,144,102,136, -177, 51, 69,188, 1, 48,136,160,152, 29, 6, 6,134, 2,207,118,100, 46, 70, 38,194, 12,216,132, 15,234, 2, 21, 66, 19,128, 33, -186, 88,183, 44, 31,173,244,187,226,139, 57,141,170, 17, 67, 99,152,186, 25, 16,210, 51,125,169, 2, 24,133,173, 88,172,254,218, - 78,129,187, 67,142, 22,153,153,182,187,126,237,118,179,219,211,248,234,240,111,166, 94,129,118,204,243,251, 78,123,109, 76,219, - 47,244,223,235, 50,190,225,209,222,153,171,172, 38,232, 53,110,160,208,171,143,177,102,182,235,214,239,109,176, 95,251, 21,238, -198,227,235, 50,253,114,123,127,104,239, 7,112, 73, 94,219,184,210,107, 45,187, 72,223,156,164,185,178,136,175,211, 28,139,110, -191, 73,102,127, 68,181,189,216, 6, 60,114, 64,161,141, 79,243,161, 96,186,251,111,153,199,190, 88,197,198, 77,177,189,143,167, -254,212, 54, 34, 53, 99,140,140, 63,248, 63,127, 31,162,192,187, 63,246, 25, 28,158, 62, 3,135, 17,251,253,128,193, 37, 96,198, - 96, 39, 68, 47,240,170,140, 33, 14,128,154, 75,219,235,211, 4,205, 25, 79, 14,123,196,184,131,202,236,190,233,131,193,195,108, - 58,107, 14,198,158, 15,113,112,164, 45,187,132,137, 49, 14, 92, 39,227,156,178, 37,164,145,184,124, 40,184,159,124, 70,154, 18, -134,192, 24,130,185,221,205,105, 2,201,140, 24,236, 80,159,146,231,141,179, 98, 8,192,205,211,231,152,104,143,243,249,136,121, - 78,206, 3, 48,183,182,232,222,238, 69, 66, 85,118,226, 4,235, 28, 73,196,195, 96, 20,105,158,125,245, 32, 62,229,195,223, 83, -116, 83, 19, 99, 89,179, 67,178,133,223, 19,124,253, 51, 11, 16, 92, 71,175, 96, 48, 9, 98,228,250, 26,204,104,199, 18,200, 6, -214,154,189, 18,216,252,248,161,132,128, 4, 14, 64,224,136, 56, 48,116, 24,161, 26, 92,194,230, 6, 84, 8,136,154, 16,131, 0, -193,132,114,201,229,239,148, 20,159,190,201, 56,188,243, 14,146,238,221, 91,253,254,239, 65, 43,203,188,255,190,213,134,232,102, - 67,230, 81,129,227, 81, 65,114,135,147, 40,242,249, 12,202, 19, 66,201, 76, 87,219, 37, 27, 98, 1,140, 99,192,225,102,135, 48, -238, 16,137, 49, 6, 2,198,128, 16,119,136, 60, 66,217, 33,114,144, 7,163,152,167,190,128,171,103,126,128,130,120,201,162, 23, -101,219, 99, 75, 2,147,172,236,203,201,227,126,201,238, 51,247,129,177,166,141,151,164, 54,127,157, 1,179,165,244, 49,170, 47, - 65, 32,170, 33, 45, 2, 32, 8, 48,120,147, 87, 34, 96, 7, 2,226, 64,224, 97, 0, 33,130, 68, 65, 98,126, 44,145, 26, 15,108, - 89,201,104, 4,171,228, 53,178,244, 30,177,245,186,123,237, 22,243,124, 79,160,241,221, 73,104,184, 78,226, 26,113, 82, 65,242, -127,175,240, 5,245,147, 80,203,176, 22,215,119, 46, 14, 68,205,207,208,198, 45,227,251,100,190,150,203,126,223, 97,165,151,144, -185,108,133, 8, 53,249,216,173, 52,170,101, 56, 87,247, 53,237,137,109,186, 1,195, 75, 3,233,166,182,137,113,222, 1, 61, 48, - 45,213,231, 21,221, 30,174,180,217,233,118,251, 98,169, 13, 77, 65, 46,186,114,121,193, 54, 95,244,249, 68,235,194,222,198,193, -186,191, 1,245,205,160,174,216,241,186, 34,153, 21,141,247,122, 47,174,170,149,164,103, 55,244, 34,253,178,123,164,245, 23, 40, - 76, 97,186, 56, 26,234,117,184,200,180,237, 27,155,107,215,123,105, 32,196,249, 33, 27,242,190,149,170,163,222, 59,173, 74,224, - 30,179,186,107,177,234,180,217,170,253, 8,251,243, 45,182,192, 35, 59,142, 50,241, 19, 22, 27,225,174,145, 82,197,254,176,199, - 7,239,127, 15, 47, 95,126,130,231,111,191,141,183,223,122,134,211,237,107,104, 14,102,223,153,206, 24,198, 61, 68,128,121, 58, -215,160,148,192,132, 41, 37,188,126,125,135, 12,114,163,150, 1,146,196, 51,208,131, 65,194, 98, 69, 17, 49, 32, 75,198,126, 48, - 8,121,154,147, 19,224,108, 84,137,113, 4,179, 24, 33, 46, 4, 12,140,154,126, 6,223,153,134, 0,119,237, 34, 48, 71, 95, 35, - 42,198,221,136, 87,199,140,148, 79,102, 80, 2, 91, 29,156,178,226,238,147, 35,114,154, 65,146, 76, 39,207,128, 82,192,233,156, -177, 27,128,253,126,176,134,193, 28, 78, 48, 48, 97, 70,132, 22,217, 84, 74,136, 62,229, 5, 21,168,147,220,152,204, 1, 83, 68, -144,197, 97, 96, 39,148, 22,136, 87,157, 24,194,149,112, 42, 0, 51, 88,216,144, 54, 37, 40,179,101,193, 19,160, 33,128, 53,131, -131,121,133, 51, 53, 12,122,135,242, 19, 89,245, 32, 24, 33, 44, 66,160, 12,100, 53, 98,222, 46, 36,200, 24,145,133,145,148,145, -147,197,126, 70, 88, 49, 26, 3,225,157,119,159,227, 47, 94,188, 11,189,251,115,208, 16,239, 65,211, 31,207,123,215,213,151, 40, - 18,240, 74, 9, 31,189, 36,124,233,248, 2,225,112,198,168, 1, 41,204,200,129, 64,137,129, 16,192, 25,136, 81,145,133, 17, 36, - 97,140,128,196, 8,205, 1, 89, 51,132, 0,228, 1, 68, 69, 6, 25,170, 93,180,212,178, 43,221, 48, 96,235, 95, 66,112, 55, 56, - 37, 32,169, 32,102,131,148,217, 7, 74,241, 51,138,200, 73,212, 68, 75,106, 26, 1, 44, 84, 73,188, 86, 63,170, 70, 12,193, 7, -217,228,104, 76,177,168, 77,234,228,111, 22, 40, 69,136, 12,174,100, 48, 15,251, 16,163, 17,242, 28, 93,136,157,150,124,237,173, -214,236,176,225,246,167, 45, 28,186, 20,217,114,232, 50,148, 20, 17,102, 80, 99,230, 41,228, 12,240,165, 59,107,109, 76,203, 81, - 40,208,149,228, 77,171, 23,110,233, 84,209, 48,210,123,253,148, 94,206,150, 43,203,212, 54,214,180,151,101,105,199, 94,239,102, - 27, 89,145,192, 22,250, 93,179,127, 70, 67,152,234, 79,229,146, 89, 94, 92, 3,239,131,225, 47, 97,250,133, 80,182,236,161, 8, -155,146,128,166,146, 44,250,233,141, 10,223,202, 42, 58,174,158, 94,233,166, 55,138,120,247,154, 86, 5,159,182,174, 7, 93, 52, - 0,173, 45,170,170,174, 68,101,205,190,218,223,183, 10,144,105,139,151,224, 59,204, 21,131,188, 60,102, 33,184, 80, 3, 59,105, - 33,179,108, 82,224,112,209, 88,212,171,208,233,253,181,243,161,175, 77,144,174,109,149,174, 24, 20, 93, 33,158, 17, 45,132,125, -253, 17,247,232, 15, 31,160,107,247, 35,186,223,214, 14,141,141, 49,181,250,140,203, 87, 24, 99,196,237,221, 29, 94,188,248, 24, -159,123,235,109, 60,123,254, 28,175, 94,191,198,233,213,173, 47,187,156,230, 51,142, 32,168, 37,167,205, 9, 4,198,156, 50,224, -150,177,187,225,169, 17,145,144,221, 32,133, 49, 14, 86, 48,111,239,142,166,235, 21, 59, 8, 99, 24, 48,120,162,153, 69,187, 50, -114, 54,107,212, 34, 5, 11,113,132,128,145,243,132, 93, 52,219,213,115, 18,236, 71,179,146,157,146, 73, 49, 66,136,152,166,140, -243,121, 50,219, 84, 95, 18,227,205, 0, 0, 32, 0, 73, 68, 65, 84,255,108,231,100,167,217,160, 51, 34, 51,206,217,164,104, 76, - 62, 41, 65, 48,205,198, 90,143, 67, 0,171, 5,185, 36, 98,228,201,164,106,202,214, 52,104,224,106, 46,165,238, 2, 70, 76,230, - 21,175, 12, 21,130,164,134,231, 66, 90, 39,124, 35,247, 49, 34, 71,164, 16,144,179,133,148, 44,105,112,245,147,170,212, 7, 21, - 67, 2,163, 10,136, 66, 93,203,137,167,239, 25,203, 93,106,226,157,114, 4,170,109,172, 88, 80, 79,182,196, 51, 81, 1, 35, 35, - 4, 69, 38, 91,141,188, 51, 38,188,254,204,167,241,226,255,253, 24,163,220, 1, 60,174, 20, 52,215, 85, 30,215,167,244,190,186, - 51, 1, 39, 0, 31,188, 12,248,234,139, 15,241,236,217, 71,192,225,109,228, 20,144,101,103,126,232,147, 5,164, 4, 16,198,145, - 32,216,129, 84, 49, 4, 66, 30, 35, 36, 11,134,217,104,224, 2, 53,103, 84,246, 98,236, 40, 8,249, 90, 86,252, 62,207, 94, 38, -130, 75,199,196,125,218,129,128, 89, 24,148,125,210,166,224,147,191,161, 32, 4,241,129,100,177, 99, 51, 30, 5,251,240,185,112, -163,172,136, 11, 8,118,127,164,220,248,174, 20, 21,215,236,181, 16,217,207,229,130,190,200, 18, 84,102, 69,125,109,108,162, 23, -211,233,122, 40,110, 93,213,106, 43, 64,230,188,214,177,163, 11,137,204,167,251,212, 24,102,175, 61,231,130,215,105,193,226, 32, -132, 10,122,182, 28,245,166, 9,208,181, 54, 90,239,183, 95,213, 13, 8, 94,155, 59, 71,215, 75,120,170,123,243, 70, 49,185,128, -188,157, 44,170, 36,187, 81,149,196,213, 98,124,241, 58, 55,107,237,198, 28,213, 60,126, 39, 21,107, 26,146, 54,147, 88, 31,147, -207,189, 81,152, 55, 11,120,127, 13, 46,126,127, 45, 87,187,242, 62, 91,230,125,249, 57,193, 18,112, 80,180,204,165, 98,234, 70, -163,208,166,159,161, 97,196,183,153,180,122, 17,242,162, 93, 24, 13, 54, 27, 19,185,100,214,119, 36, 62, 90, 61,151,214,144,141, -203,125,136, 94,188,231, 69,253,112,105,169,190,134,216,137,157,116,163,242, 67, 79,229,111, 58, 13,109,236,116,182,245,107, 23, -143, 75,151,138,130,174,168, 7,124,242,201, 75,124,244,209,135,248,226, 87,190,142, 41, 41, 66, 24,176, 63,236, 64,211, 18, 9, - 52, 12,140,105, 8,120,253,250,136,172, 51, 36,153, 62, 60,229,140,195,225, 0, 38,115,104, 15, 4,135,215,109,138, 49,163, 14, -131, 56,121,136,174,217,205, 38, 67,203,103, 75,141,139,140, 33, 68,144,239,206, 77,131, 12,179,111,117,201,154, 34, 64,230, 25, - 26, 2,166,188,179,137, 30,230,226,149,100,130,164,185,255,254,170, 21,245, 16, 71, 40, 51, 88, 12,166, 15, 30,137, 90,245,228, -115,178,204,237,192,150,254, 38, 64, 32,147, 74, 33, 39,128,204, 88, 4, 98, 54,174,230,168,107,254,241,102,204, 51, 96,128,169, -135,146, 47, 95, 5,168, 54,165, 41, 11,136, 51,198, 17,246, 88,152, 43,146, 42, 98,175, 51,120, 2,157,138, 21,109,150,132,200, - 12, 98,231, 76,101, 71,157, 20, 96,100,196, 32, 8, 49,120,218,151,218, 53, 98, 64,185, 52, 69,134,114,236,216,196,206,105, 54, - 52,193, 82,220, 4,163, 36,124,246,157, 3,110, 95,127, 30,249,253, 63, 70, 24,147,157,234, 69, 73,244,192, 29,189,182,208, 94, - 16, 61,234,134,193,153,129,191,126, 29, 64, 47, 94, 97,247,119, 62,192,171,155,207,130,207,207, 17,211,107,200,110, 97,188, 3, -201, 24,235,108,238,131,101, 71,190,231, 17, 66, 10, 14, 39,128, 7,103,147, 79, 0, 51,136, 34, 2,103, 67,160,220,220, 40, 9, - 1,217, 10,174,168,248, 36,206, 85,214,106, 5,182,240,171,202,222,212,178, 13,140,171, 38,222,168, 27,234,204, 84,242,111,236, -113, 10, 9,171, 88,191,177,163, 48, 20,128, 92, 21, 67,217, 21, 30,228,159,111,170,114, 56, 21, 59,199,136,184, 14, 76,177, 88, -227, 17, 46,211,198, 22,178,155,118,118,157, 76,203,110, 83, 74,124,168, 55, 7,137,128,236, 55, 78,108,200, 95,229, 67, 41,147, -127,213,123, 99,145,138,173,227, 55,214, 33, 34, 45,148, 72,141,236,237,126,162, 81, 99,204,114,117,191,168, 87, 80,201,254,176, -211,186, 78, 95, 5,203,116, 7,183, 75, 2,137,218,124,171,250, 24,180,149, 58, 72,215,161, 86,106, 52,225,117,254,164,229, 49, - 43, 43,187, 93, 93,104, 5,194, 87, 19, 39,186, 37,128, 42,109, 23,251, 71, 77,231,189, 92, 13,104, 95,211,202,148,103, 37,157, - 35,135,222, 69,169, 91,239,108, 53, 0,149, 61,220, 76,252,229,189, 94,192,236, 87, 94,163,138,221,180,212, 33, 60,218,200,106, - 86,144,127,183,235,215,198,213,160,197,150,244,225,194,170,173, 28,115,181, 18,106,100,121,128, 7, 76,116,192, 70, 63,211,208, - 3,166, 56, 63, 84, 49, 87,189,130,119, 94,195,221,177, 52,172, 5,201,211,203,165, 18,145, 77,220,127,249,215,239,227,231, 68, - 42, 17,142,134, 1, 41, 43,246,251,157,155,152, 5,224,110, 2,221,157,161,202,110,232, 98,102, 47,175,134,215,120,235,237,103, -216, 15, 35,102, 26, 29,138, 52, 93,186,102,219,175, 43, 24, 41, 41,118, 44,216,239,204,131, 61,237, 71,176, 8,166, 52, 33, 99, -196, 64,192, 48, 4,164,204,213, 0,198,216,242, 6,175,134,194, 86,158, 39,176,102,156, 11,107, 92,109,199, 41, 98, 65, 44, 42, -166, 37, 55, 23, 66, 1,192,230,204,182, 27, 32,228, 94,247,100, 16, 49, 71, 91, 39,144, 16,230,212, 40,107, 64,110, 22, 98,247, -160,161,243, 25,177, 4,112,168, 88,112,135, 8, 6, 34, 76, 28, 48, 75, 6,231,140, 24,141,137, 78, 76, 32, 1, 34, 27,153, 45, -137, 79,116, 37,115,131,225,129, 36,106,204,118,113, 98, 91,185,125, 56, 64, 51, 65,114, 70,160, 34, 37, 76, 16,101, 4, 48, 52, - 68,243, 17,208, 25, 9, 17, 9, 12, 18,128,178, 77,230, 67, 32,196, 49, 32,229,209,162, 94,117,198,192,150,132,246,132, 19,222, -121,239,109,124,255,229,187, 8,211,247,141,229, 72,247, 40, 46,238,217,189,171, 94, 34, 71,100, 47, 31,255,207,109,192,221,247, -143,216,233, 95, 65,195,207, 2, 58, 34, 66,145,153,161, 49,130, 89,192,228, 90,252,108, 40,113,140,132, 68, 17, 34, 12, 10, 2, -162,157,251, 34,176,115,153,114, 89,199, 87, 13,123,112,195, 34,113,222, 67,238, 52,227, 0, 72, 22,197, 84,155, 87, 65,169,174, - 27, 5, 10,245,213, 72,114,146, 97, 13,129,161,198, 14,141,122,117, 64, 96,212, 0, 36, 99,198,231,138, 8,170, 4, 95,143,107, - 93,187, 22, 89,173, 42, 33,252,212,231,223,251,206,241, 52,217,158,137, 46,139,187,254,127,180,189, 91,175,100,215,145, 38,246, - 69,172,181,119,230,185,214,189,138,197,162, 72,138, 20, 69, 81, 18, 91,221,237,238,105,184,199,118, 15, 26, 6,198,104,140,167, - 31,198,131, 25, 79,195, 3,248, 6, 3, 54, 96,216, 47,182, 1,191,232,193,191,196,127,192, 79, 54,140,241,192,126, 24,195, 51, - 99,117,171, 37, 81, 20, 37,138,215,170, 98, 85,145,117, 63,117,206,201,204,189,215,138,240, 67,196,190,230,206, 60,135,106,185, - 0, 9, 82,213, 57,121,217,185,115, 69,196, 23,223,101,196, 98,111,164, 98,220,121,210,116,241,149,218,151,133,245,229,113,157, -196, 76,122, 16,187,162, 31,252,210,155,132, 91,135, 30,151, 10,140,246,253, 52,128,240,105,114, 15, 58,112,125,211, 97,145,217, - 6,107, 78,231, 92,140,203, 4,173, 49,159,105,234,189,248, 11, 19, 26, 62, 14,209,116, 53,167, 9,230, 52, 77,176, 2,198, 7, -252,148,215, 90,211, 64,141, 31,183,191,166,234,138, 37, 77, 19, 10, 39, 39,254, 77, 26,249,233,216, 85,208,186, 55,254, 57, 46, -248,154, 75,220,208, 5,111, 72, 63,155,174,119,212,243, 89,167,193,205,179,177, 60, 14,244,246, 29, 92, 69,125,105,205, 89,143, - 49,154, 52, 26, 56, 98,176,219,118,134,108,115, 10,208,216,221,142,232,204,120,218,223,108, 34,223,178,192,223,210, 52,244,189, -225,169,183,154,155, 98,172,180, 92,145,148,144, 53,224, 59,239,188,141,186, 94,161,174,204,225,108, 85, 39, 16, 7,196,162, 4, -199, 2,171, 58,227,116,177, 68, 93, 45,145, 82,237, 42, 57,219,217,238,239,239, 98,239,224, 2, 6,214,178,126,128, 20,209,200, - 76, 5, 3,151, 14,230,184,112,225, 2,246,246, 15, 48,155,237, 0, 69,137,211,101, 54,182,124, 32,196, 98,102,211,189,203,125, - 66,140, 70, 18, 99, 5, 71, 19,206,198,192, 0, 71,212,117, 66, 93,173,144,146,165, 95, 53,252, 13, 70,151,240,197, 4, 51,139, - 9,100,182,174, 78,208, 99, 14, 94,244, 74,191, 64,205,170, 66, 81,165,134, 37,109,208,108,206, 25,164,130,136, 12, 4,130, 82, -244, 29,169,101,122,131,109, 74,172,151, 85,235,183, 31, 60, 47, 62, 4,130,112,129,148, 9, 82,175, 12,182,109,156,207,220,201, - 78,178,180, 50, 85, 35,134, 82,187, 4,101,127, 63, 69,104,115, 94,187, 60, 2, 37,228, 36, 96,212,200, 20,144,171, 12, 72,229, - 81,163,141,148,142,157,188, 42,136, 36, 8,209,138,169, 42, 99,111, 22,112,138, 25,150, 71, 47, 16, 80, 65, 61, 27,252,220,176, - 83,187, 58,211, 73,238, 7, 51,240,100,201,120, 13, 75,188,241,173,136,147,253,223,129, 44, 20,200, 47, 0,202, 16, 33, 68, 5, -202, 32, 70, 36,139, 69,219, 64, 55, 22,175,234, 30,247,109, 90, 91, 54,239,127,201,181,125, 6,141, 85,185,152,251, 30, 27,179, -208, 21, 25,161, 85, 97,161,205, 41,160,222,226,151,214,191, 98,228,195, 45,251,222, 91, 76,125,147,155,168,221,129,147, 37,181, - 35, 43, 53,133,182,141, 9,103,203, 90, 39,237,201, 26,135, 22,228,101, 12, 8,223,124,229,218, 15, 23,139,202,165, 92,180,129, - 92, 70,131, 66,222, 91, 69,175,205,196, 58,250,226,107,243,187,126, 91,133, 94,147, 48,120,124, 26, 30,218,230, 56, 53,220, 13, -117,150,129,163, 98, 54,158,126,123,190,206, 83, 89,173, 83,187,206,109, 53,166,157, 94, 39,232,204, 52,176,214, 29,170, 7,186, - 29, 50, 13, 28, 72,187, 98, 75, 27,167,117,108,101,238, 99,226,208,167,181,166, 64,123, 21,136,116,170, 48,244,190, 60, 27, 45, - 99, 55, 20,235,141,117, 96,115,166,250,248,158, 58, 87,179, 48,241, 36, 58, 81,216, 55, 22,218,254,218,162, 31,120,191,109, 69, - 49, 32,230, 97,164, 4,233, 21, 96, 58,135,223,251,214,107,187, 41,208,167,151,101,191,241,241,244,111, 88,204,117,152, 40,115, - 86, 65, 31,115,110, 8, 35, 91,185,225,159,178,136,184,247,224, 43, 92,185,241, 50,222,120,229, 38,238,125,249, 16, 85, 85, 67, -115,221,153,174,112,192,209,139, 83,172, 22, 75, 52, 1, 40,169, 78, 80, 17,135,214, 75,204,102,115,236,204, 11,223, 69,218,129, - 90, 4,177, 48, 21, 2,246,231, 5,246, 46, 92, 66, 40,247, 80, 20, 51,112, 81,226,171,163,132,227,103,207, 17, 41,187, 29,167, -105,188,219, 44,117,119, 90,179, 34, 25, 90,163,145,166,145,171,179, 98,185,172, 44,187,218,155,129, 38,105, 46,231,100, 50,223, - 96, 62,237, 57,101,236,148,140, 80,150, 38, 67, 99, 70, 25, 3, 98, 89, 34, 11,185,153, 72, 64,170,147,121,204,251,101, 11,108, -251,209, 88, 20, 88, 73,132,166, 26,196,140,156, 5, 69, 36,112, 40, 33, 30,179,153, 83,106,245,239, 68, 48,179,152, 44,136,193, - 57, 75, 13,226,208, 31, 1,200,176,248,208,114, 87, 26,118,184,175, 72, 2,129,163,237,206,155,244,202,172, 62,176,185,113, 74, - 3,225, 19,204,112,199,227,204,188, 15, 48,130, 88,140, 17, 28, 3, 18, 34,170,236, 48,255,188,196,209,178,132,158, 62,181,196, -178,150, 16,125, 94,138,220,244,173,217,120,144,188, 80, 32, 28, 3,127,251,214, 83,208,183,190,137, 19,249, 38,234,213,137,161, - 48, 4,203,126,103,184, 47,122,105,177,172,196,173, 21, 46,162, 33, 16,117,130,231,145, 91,186, 94,110, 86, 73,210,131,205,197, -200,136,230, 3, 31,218,233,157,220,164,134, 60,245, 79,168, 33,201, 13,207,219,208, 4,129,185,181,122, 91,164, 65,230, 43,160, - 22,121,219,196,224,194,215,216, 89,105,200,253,105, 19, 67,209,121,209,187, 31,189, 5, 28,217,154,106, 86, 22, 54,169,167,101, - 13,238, 16,195, 65, 38, 58,245, 18,216, 90,113,143,246, 44,236,122, 52,128, 62,129,174, 97, 44,135, 86,239, 13,163,218, 59,195, - 16,218, 77,229,218, 99,187,247, 9, 83,227, 83,143, 38,204, 61,168,119, 8,211, 26,147,151,122,110,110,180,177,120,158, 57, 56, -246,181,234, 62,174, 81,255,224,223, 32, 32,106,118, 28,220, 56,144,141, 60,240,251,110,105, 83,207, 59,140,148,237,201, 20,214, -224,237,169,108,249, 49, 61,128,134,207, 59,178, 85,221, 90,228, 54,161, 33,180, 5,239,160,177,120,112,248, 23, 52,137, 4,108, - 43,206,253, 59, 64,167,235,253,150,198,132,166,246, 30,253,159,239,252, 91,167,192,242, 45,208, 14, 13,250, 5,210,141,112,203, -217, 82,159,175,241,135,136,206,132,228,183, 63,233, 38,207,188,222,180,173, 58, 65,224,236,223,175,155,215, 16, 76, 12,169, 79, -113,251,171, 23,248,198,155,239, 96, 7, 75, 60,126,242,220,242,209,103,102, 6, 83,103,194,209,209, 49, 40, 85, 78,152, 51, 83, - 24,109,116,185, 10, 28,236,237,224,240,194, 33,200,229, 89, 12,193,188, 44,192,197, 12,243,178,192,193,225, 1,132,103, 54, 8, - 16,227, 40, 5,220,191,255, 0,188,122,142, 16, 35, 2,199, 86, 10,102, 36,176, 96,209,150,238,241, 45,218,227, 73,144, 17,237, -170, 42, 35,173,150,208, 84,183, 58,228,198,205,173,121,207, 49, 24,244, 45, 41, 25,209,174,152,183, 94, 7, 92, 68, 36, 42,160, - 57,217, 74,210,181,241,164, 25,145,155, 66,108,174,115, 96,182, 53,187,214, 78,226, 51,108,179, 40,204,246, 86, 36, 35,186,215, -119,206,141,142,217,172, 68,197, 51, 57,162, 40, 56, 0, 9,193,249, 6, 6,241,138, 23,133,178, 96, 32, 70,211,180, 55,123,119, -104, 91,164,219,245, 25, 25,150,170, 68, 72,217, 2, 92, 66,224,238,188, 86,177,248, 85,183,253,173,133, 77,162, 23, 24, 89, 44, -148, 39,213, 53,230, 72,224,217, 28,207,143, 19,168,126,225,198, 57, 91,131,166,167, 73,114, 83,253,168, 2,129, 21,247, 78, 25, -111,224, 24,111,254, 32,226,249,222, 31, 35, 45, 24,168,143, 17,144,128, 64, 16,138,136,100,198, 57, 66,132,146, 76,234,215,186, -254,113, 68,173,132,170,206,168,147, 25, 13,169, 24, 1, 78, 52,155,238,191,237,243,196, 10,174,167,247, 21,193,120, 35,226,197, - 57, 2, 16,182, 68, 79, 18,114,119,193,206, 8,157,219,212, 48,106,145, 81,105,118,232, 77,157,112,134, 59,185,127,188, 0,200, -217,255,135, 74,139,162,180,223,125,120,250, 92,111,162,167, 16, 80,204,119, 16,222,124,245,218, 15, 83, 85, 89, 12, 93,107,151, - 61,178, 61,161,225, 20, 44,107,160, 51, 70,161, 45, 29,197,159,168, 41,214, 6, 53, 72,207,190,148, 90,152, 24,131,253,226,218, - 97,186,101,138,165,141,213,104, 10,218,158, 14, 69,153,148, 16,209, 58,199, 96,109, 17, 78,125, 40,146, 38,158,163, 3,101, 6, -129, 48,212, 39,221, 17,214, 84, 86,227,227,182, 15, 33,143, 15,227,190,101,225, 48,154,100,195, 65,190, 45,134,132,182, 35,177, -155,138,230,150,207,142,122,182,236,212, 95,131, 16, 70,100,180,225,122, 99,216, 3,232,128,231, 65, 95, 11, 69, 24, 10,249,105, - 19,212,223, 71,138, 90,184,189, 55,249,232, 89, 89, 47,244, 55,171,210,248,173,252,250,153, 92,184, 22,122, 64,143, 13, 75,211, -251,249,193,119,164, 7,249,157,247, 85,206,102, 51, 60,251,234, 62, 62,250,226, 41, 94,127,227, 13,236, 82,133, 58, 37,236,238, -239,130, 66,137,163, 69,141,197,241, 9, 10,178,112,146,101,157, 90, 75,208,192, 86,208,102,243, 57, 46, 92,186,140,249,108, 6, - 2,176, 59,143,160, 88,160,242,240,233,217,238,190,233,134,213,156, 44, 31, 62, 57,198,242,217,151,173, 73, 77,227,215,201,189, -248,200, 98, 86, 32,196,194, 52,230, 34, 96,205,136,129, 80, 9, 97, 85,213, 72,213, 10,208,108,210,162,236,145,151, 49, 24,251, - 92, 60, 6, 51, 90,179, 80, 80,198,204,247,234,117,178,169, 47,186,163,157,106,130,100,109,179,175,193,108,233, 91,112,217,147, -159,135,226, 89,235,205, 14,211, 52,235,130, 16, 11,207,136,183,226,106, 26,117, 35, 69,101,176, 17,226,160,136, 1,208, 88, 32, - 11, 27, 17,175,189, 89, 45,215, 93, 89, 33, 84,250,247,175, 57,123,205, 98, 55, 6, 43, 52, 77,161, 87, 34,179,234,117,231, 12, -102, 65, 12,209,228,202,108,102, 62,171, 36,168,107, 83, 10,228,156,140, 37,239, 48,127, 65, 25, 5, 41, 14,119,129,101,121,136, -147,103, 11, 4, 61, 5, 56,110, 92,213,172,143, 67, 61, 15,144,222,191, 69,255,135, 8,197, 11, 16,158, 61, 36,252,173,203,247, - 81,190,253, 58,170,244, 45,112,125, 4, 32,163,100,131,161,205,164, 79,220,131,160,128,176, 64, 66, 64, 70, 68,114,105, 89, 22, - 66, 85, 11, 82, 85, 33,215,169, 53,242, 49, 47, 46,237,148, 68,170,200, 30,153, 42,234,105,158, 49,120,179,105,123,119,147, 27, -178,223,195,185,245,214, 16,106, 76,211,168, 77,231, 67,123, 15,104,187,218,107, 60,203,152,140, 48,201,161, 9,145, 81, 35,199, - 57, 17, 19,173, 17,156,249,249, 55,173,158,128, 81, 22, 51,132, 55, 95,189,254,195,213, 98,101, 93,167,142, 17, 53,194,184, 33, -151, 13,135,143,210, 48,225,173,237,246,209, 40, 44,156, 29,239,157, 6, 19, 80,184,246, 80, 8, 61,136,222, 14, 94,105,165,116, - 52, 25, 28,165, 83, 27,229,158,244,107, 32, 67,154,120, 63,103, 73,203,198, 4, 56,218,152,224,181,101, 37, 64, 35, 82, 49, 58, -151, 58,165, 62, 76,238,255,159, 54, 64,165, 91,154,149,182,164,211, 80, 98, 36,155, 38,205,243,236,132,183, 77,204, 91, 96,242, -105,143,253, 41,121, 23,109,124,204,245,253,249,152, 60, 56,113,161,182,192,219,212,226,254,180,189,246, 18, 6, 6,252, 93,184, -130,158,235,186,244,146, 33,123, 59,114,234, 66,115, 54, 12,196,138,205, 30, 6,191,213,138, 78, 83, 11,113,218,192,157,211,233, -229,187,158, 35,153,110,112, 64, 51,230,179, 2, 79,239,125,142,175,158,175,240,246,155,175,155,129, 70,136, 88,102,194,241,209, -115,212,171, 85, 27,234, 66, 30,122,146, 83,110,157, 29,247,102, 5,118,246,247, 48,219,221, 55,183,184,162, 64,166,136,106,185, - 68, 25, 0,138, 37,150,149, 96, 85,213,120,246, 98,133,147,167,143,192, 90, 57, 11,159,221,161,210, 88,208,112,133,129, 18,252, - 48,182,198,161,140, 1,161,136,168,146,162, 94,154, 46, 61, 9, 80, 85, 9,164,226,120,179,217,138,166,100, 69,131,131, 77,185, -179, 89, 9,226, 2, 2, 70, 74, 9,177,137,135, 45, 11, 52, 6,219, 41, 43,114,206,221,196, 79,112,235, 80,155,190, 88, 93,210, - 70, 70,202,107,188,214, 45, 62, 56,180,174,112, 28,130, 17,242, 66, 68,206,138,128,108,241,174, 20, 33,226,158,243,144, 54, 11, -156, 29,234,237,172, 82,179, 7,113,121, 72,137,203,215, 56, 68,247,246, 16,247, 42, 55, 8,155,156,183,192,228,164, 59, 50, 83, -156,140,128,180,202,160,188,116, 40,218,224,106, 85, 70, 65,130,224,182,203, 59,251, 59, 56,150, 93,172,158, 63, 65,160,186, 93, -131,208, 38, 66,243, 0,115, 95, 23,117, 6,255, 47, 65,196,140,129, 59,203,128,139,143, 79,240,189, 55, 31,225,248,218,191, 1, - 84,187, 8, 88, 88, 72, 77,100, 80, 17,193, 92, 34, 18,129, 10, 66,205, 17, 73, 35, 36, 51,178, 8,234,100,118,171,170, 10, 77, - 2,145,218,248, 11,146, 17, 32, 78, 8,151, 33, 34,237,102, 66,162,102,246, 18,154,100, 51,247,197,135, 75, 27,163,187,212,129, -201,249,241, 38, 85,108,173,149, 73,218,179,162,207,177, 82, 37,143,115,117,162,120,176,245,145, 18,247, 52,243,221, 32,220, 56, -172, 54, 29,193,172, 40,108,167,190, 92, 84, 22,218,174, 24, 57,150,217, 73,197, 61,182,249, 38, 35,140,113, 40, 72,195, 80,214, - 17, 49,174,217, 13, 4, 16, 34, 81, 63, 53,125, 68,206, 67,207, 27,158, 48,166,141,211,232,223,169, 15,209,110,176, 14,237, 19, -241,112,198,164, 78, 19, 53,149,206, 26,175, 6,107, 0,234,106,201, 26,193,202,139,240,218, 72, 77, 3,222,194,144,168, 69,235, -199,254,232,119,181, 41, 72,218,175, 81,212,154,182,140,119,198,127,163,194, 62, 57,209,143,254, 94, 59,222,193,166, 93, 57,109, -152,116, 7,239,148,250,205,128,110, 64,196, 55,163, 12, 52, 73,232,154,126,127,138, 46,250,144, 55,150, 88,154,234,147, 90,100, - 66,183, 17, 55,104,227,171,249,255,113, 82, 31, 75, 56, 55, 20, 97,221,252,126, 91,175,160,115,182, 30, 93, 14,130,153,200, 60, -249,234, 46,190,247,214,171,120,249,214, 77, 60, 63, 93, 96,181, 88, 1,169, 70,189,170,145, 83,237, 44, 94, 70, 45, 70,146,203, - 57, 33,137,226,112,127, 7,215,175, 93,118,194,149, 77, 86, 76, 0,107,182,201, 58, 1,139,197, 18,199, 39, 11, 44, 78,142,128, -250, 20,204,132, 34, 50, 66,195, 30,110,141,174,108, 50, 45, 99,176, 66,171,150,165,174, 48,139, 77,192, 98, 87,115, 22,212, 41, -155,193,140,211,124,197,125,211, 73, 21,179, 72,152,237,236, 98, 89, 59,164, 94, 22,166, 43,150,140,189, 25, 35,204, 74,100, 10, - 88, 36, 66,189, 74, 96,113, 55, 48,184,171,152, 51,154, 67,239,251,207, 33, 64,216,244,233,208,108, 19,115, 22, 47, 42, 1, 34, -182,223,111,194,172, 26,195, 42,179, 31, 53, 70, 62,137,249,198, 55, 74, 15,115,230,100,103, 69, 27, 75, 62,184,143,184, 18,183, - 13,156,136,221,184,153, 2, 72, 76,151,173,238,110,151,209,248,243,195,217,228,130,210,225, 94, 67, 37,172,231, 17,116,210,175, - 76,132,149, 22, 96, 81,196,157, 25,142, 87, 17,114,250, 12, 28,220,205,220,145,199,113,170, 6, 77,226,241,212, 54,199,185, 13, -253, 98, 4, 40, 82, 84,220,123, 92,224, 93,253, 2,151,222,217,197,130,190, 15, 78, 11,143, 50,245,160, 21, 34,132, 72,200,196, -200, 20,161, 18, 32, 41, 35,107, 66,149,205, 87, 64,170, 4,213,140,236, 78,169,150,129, 42, 30,229, 75,237, 53,110, 88,233,112, -185,154,145,211,164, 93, 93, 68,118,115, 36,118, 61, 58,163,211,173,195, 44, 98,205, 99, 64, 91, 9, 52, 55,211,123,191,196, 17, - 90, 31,127, 17,227, 82,152,159,188,187,172,234,232,154,181, 44,117, 49,127, 4,145,206,147,183, 97,170, 15, 24,124,110, 0,163, - 35,201, 79,223,252,179, 11,190,232, 21,114,234,239,198,221, 33,135,186, 66, 44, 0, 42, 85,183, 76, 64,107, 78,211,120,207,247, -147, 45, 91,225,190,118,230,249, 83, 70, 36,173, 63, 55,173, 23,231,109, 69, 92,177, 69,228, 70,103,144,160,250,135,161,174, 55, - 58,131,204,247,254,181,107,130,104,250, 36,186,198, 7, 93,135,212, 0,221, 52, 94,234,196,187,208,225,238,190, 33,126, 12, 33, -241,190,189,236,122,248, 75,255,205,232,153, 64,217,196,223,247, 62, 7,210, 78,254,184,118,205,214,236,105,199, 80,121,227,186, -180,217,191,126,237,174,212,113, 80,140,174,187,158,141, 31, 67,135,255,233, 66,106, 54, 70,225, 13,109,241,251,143, 67,147, 29, -239,250,189,210,187, 6,219,238,195,223, 26,238,222, 39,201,140, 38,160, 54,200,102,242,101, 82,107,127,124,166,221,236, 68, 64, -143,249,148, 7,228,148,112,176, 23,240,198,155,175, 99, 94,148, 40, 29, 75,141,145, 80, 22, 1, 41,103,156,174,106,164,170,106, - 39, 73, 21, 65, 85, 85,136,177,192,225,222,174,177,214, 93,235, 27,102,187, 22, 66,114,250, 2,245,226, 20,213,233, 11, 80,125, -138,232, 38, 46,204, 1, 28,109,178, 44,130,239, 73, 37, 25, 12, 31,108,178,214,108, 78,107, 57,215,168, 83,133,101, 18,131,245, -209,133, 77,105,143,151,195, 42, 32, 38,172,132,112, 90,121,171,160,230,211,157,178,226,160, 84,236, 31,238, 32,241, 12, 57, 19, - 40, 87, 32, 89, 1,200,238, 90, 70, 72, 89, 12,194, 87,117,243,144,232, 4, 60, 65,174,197,237, 78, 13, 98, 53,174,155, 66, 83, -141,208, 76,221,106, 80, 62, 19, 89, 6,124,239,164, 97,103,106, 27, 67,218,237, 70,213,140,188, 11, 38,131,233, 93, 35, 93,176, -127,166,190,179, 77,142, 6,100,111, 30,164, 22, 72,170,144, 4,168,107, 53,205,190, 39,193, 65, 43,148, 51, 70, 57,223,177, 38, - 37, 18, 10, 14,152, 69,130, 6,227, 16,228,170, 70,125,186,196, 97, 62,193,181, 27,135,200, 59,215,161,181, 51,177, 54,220,111, -107, 94, 8,221,201,222, 53,138, 2, 64,106, 40, 4,251, 12,124, 81, 68,252,239,127, 85, 98,231,103,255, 12,135,135,159,160,216, -187,142,178,136,152,207, 10,204,103, 17, 69,100,179,193,141, 1,129,221,146,152, 0, 82, 70,129,134,231,165,230, 25, 15, 91, 47, - 48, 25, 67,190, 50, 98,188, 53,117, 28,144,213,188,253,115,179, 54,209,128, 44, 4,205,201,154, 80, 11, 22, 48, 11,226, 56, 3, - 66,137, 64, 5, 10,142,198,233,112,252,185,201,177,176,244, 66, 75, 90,145,222, 26, 90,201,253,255, 61,231, 61,165,132, 92,213, -144,156,144,147, 32, 37,129, 36,103,236,171,169,225,155,148, 15, 53,137,186, 93, 77,241,255,100,160,147, 66, 52, 5, 88, 27,252, -126,124,110,245,149,236,212,125, 9, 48, 78,169,114, 3,137,222, 23,190, 86,194, 10, 64,101,183,252, 32,149,141,251,177,165,212, -133,171,172, 59,121,172,227,212, 52,113,124,211,224,245,104,111,234,152, 62,153,116,180,198, 62, 63,224,168, 45,231, 96,221, 91, -108, 75,113, 24,240,251,122,197,173, 93,141,105,103, 4,224,228,195,216, 92,207,169,107,161,212,131,189, 71, 71,177, 14,169,124, -218,232,223,117, 74,125,173, 19,233,106,235,255, 54, 69, 17,236,135,198,245, 45,117,117,227, 99, 12,205, 91,250,169,103, 52,248, -187,241,239,234,132,188, 90,135, 1, 38,170, 27,178,105,100, 80,244,181,243,187,235, 2,110,244,172,207,187,215, 76, 52,253, 19, -109,253,196,219, 16, 27, 52,210,200,222,251,210,223,122,161, 31,248, 26, 15,186,197, 46,161,112,189, 61,162, 46,236, 15,116,142, -111, 64,127,197,164,174,161, 29, 44, 92,200,138,235,245,155,175,224,224,194, 5,196,162,196,172,140,152,151, 17, 33, 88, 14,118, -174, 86,144,156, 28,242, 53, 22,121,206, 2,145,132, 98,190,107,236,118,102, 44,107, 69,170, 51,230,179, 2,179, 89, 68, 8,218, - 50,135, 17, 34,152, 3,146,135,102,136, 16,136, 35, 40, 70,176,179,211,171,108, 49,150, 74,221,161, 93,103,193,242,116, 1,169, -151,168, 82,178,196, 50,117,183, 46, 66,231, 11,174, 64,206, 10, 89,157,160,224, 26, 26, 11, 84, 21, 64,185, 6, 7,194,170, 56, -196,162,102, 84,213,210, 38,240, 24,109,242,245,100,182, 72, 0,107, 2, 72,156,216,166,128,147,209, 10,152,191, 60, 81,232,101, - 88,144,179,205,141,168,149,197, 10, 61,147,130, 34, 35,193,210,236,154,148, 46,245,142, 94,149,140, 69, 95, 22, 32, 10, 40, 35, -192,101,132,146, 93,211,164,102,120, 98,150,167, 10, 85,134,166, 12,228,236,249,228,106,166, 91, 89, 17, 53, 35, 34,153, 49, 75, - 48,171, 88,205, 38,101, 19, 46,160, 26,140,185, 31, 24,202, 37, 2, 2, 74,202,152, 21,138,200,130, 27,123, 25,151,111,189,132, - 58, 92, 2,114, 53, 57, 28,208,228,152, 53,212,120, 52, 30,234, 77, 29, 32, 0,251,115,197,191, 60,222,195, 47,254,197, 35, 92, -126,252,191, 98,126,129, 17,231,151,129,162, 64,140, 5,202,249, 28,177,220, 1,135, 2, 28, 8, 28, 3, 98, 8, 40,216,174,107, -102,207,162,135,173, 75,154,192,188, 24, 76, 70, 41, 48, 47, 1,228,212,157, 43, 98, 60,135, 38,168, 39,137, 57,191,193,167,107, - 75,114,203,198,176, 87,115, 46, 44,130,153, 45, 5,247,245,143,198, 93, 28,196,138,183, 82,182, 38,131,196, 93,236,130, 7,140, - 72,206, 16,169, 45,116, 72,196, 50, 13,114, 66, 22,215,216,123,237, 97, 17,160, 22, 55,239,239, 53, 74,226, 41, 92,218,155,226, -214, 99, 66,117, 96, 22,207,189, 9, 91, 90,179, 17,135,203,218,195,213, 32,165,134,117,154,149,144,122, 31,108,155, 12, 55,154, - 82, 91,125, 60,214,214,246,232,178,195,117,109, 56,209,105,164,122,107,177,238,195, 64, 27,157,245,206, 40,236,235,245,150, 54, -160, 1, 58, 8,133, 25,172, 62,125,135, 67,163, 73, 43,247,248, 9, 27,103,104,209, 94,108,234, 25, 83,183,118, 54, 63,180,177, -128,111,254,125, 29, 79,188,189,230,106,240,111,212, 43,196, 58, 21, 4, 51,154, 6,117, 67,124,236,248,218, 74,175,137,208,238, - 62, 91,203,174, 95,107, 82,214,141,216,117,188, 12, 26,189, 94,157, 24,194,117, 0,221,111,106,130,198,128,162, 14,236,140,181, -109,226,104,240,247, 52,110,158,250,182,206,122,222,102,147,122,111,167,223, 8,233, 38,176,125,109,202, 39,197,198,163,119,208, - 56, 43, 6, 77, 34,128,214, 32,229,226,254, 14,226,206, 1,246,246,247,113,184, 55,199,206,222, 46,202,157, 61, 8, 5, 68,178, -176, 20,155,122, 19,178,168,237,122, 67, 64,157,204,188, 38,198,128,192, 1, 5, 50, 2, 50, 68,217, 82,214, 56,154,126,219,119, - 87, 89,185, 77, 69, 35, 8, 82,206,208, 44, 40,138,136,140,128,147, 69,133,147, 69,133,229, 42,129, 52, 65,164, 33,126, 37, 4, - 24,116, 41,117,133, 16, 20,130, 96,100, 55,215,184,219,158,218, 8, 74, 10,135,248, 37,163, 96, 65,230, 2,139,147, 5,184, 62, - 69,206, 53,150,171, 26, 57, 25,139,186, 96, 75, 86,179,125,111,129,164,140,148, 4, 57,217,207, 64,220,111,157, 11,143,110, 37, -115,114,203,198,188,206, 98,196,184,200,150,148,153,178, 32,123, 56,133,230,140, 2, 98,251,110,103,207, 67,225,147,163, 21, 92, - 97, 6, 40,182, 41, 98,156, 21,133,102, 51, 98, 97,147,222, 5, 54, 47,124, 98, 64,136, 1, 42, 80,144,162, 40, 0, 20, 5,192, -133, 71,159, 16,164,225, 9,184, 54, 62, 75,182,215,157,213,139, 63, 65,152,145, 67, 9,166, 2,183, 46,151,216,189,245, 13,212, -186, 7,146,106,128, 6, 55,196, 84, 26, 25, 74,233,224, 32,245,255,231,205, 85,131,237,206, 1,188, 40, 9, 63,190,115, 0,254, -197,143, 81,208,255, 11,218,185,140, 16,118, 17,185,180, 21, 71, 8, 32,127, 29, 68, 12,230, 8,142, 12,113, 62,130,106, 52, 27, - 93,201,166, 31,247, 87, 19,217, 86, 53, 69, 12,136,172,230, 86,215,200,211,224,126, 2, 16,187, 63, 76, 10, 97,106,135,198,160, - 72, 82,155,196,167,238, 12,200,145,161,161,128, 80, 1,144,133,247, 88,174, 1,143, 20,203,218, 30, 79, 1,150,171, 66,193, 24, -239, 54,233, 75,119, 54,136,113, 3, 44, 48, 72,193, 34,186, 54,129, 11,214,227, 63,215,191,200, 58,216, 25,211,160,252, 83, 11, -115,160, 7, 14, 52,255,141,134,245,167,221, 46, 56,181,201,109,138, 2,138,162,183,127,212,193,235,161,206,126,182,157,238,215, -142,226,237,219, 69,157,210,217,235,208, 57,110,235,123, 63, 3,122,156, 76, 43,219,196,244, 30, 66,195, 58,242, 19,149, 1, 74, - 43,189,169, 83,145,183,108, 3,180, 69, 80, 70,147,237, 86,216,220, 49, 23,253, 13,224,120,197, 96, 66,111, 93,150,182,173, 11, -198,207,179, 97,231,161,227,166, 72, 55,161, 53, 58,225, 4, 44, 19,240,255,212,181,104, 38,110,233,200, 39,235,120,242,228,212, -223, 79,235,163, 94,225,157, 66,220,105, 43, 98,173, 3,135, 54,213, 62, 87,197, 31,179, 37, 68,118,241,191,103,213,116,213,126, - 20,173,246, 71,240,173,211,253,186, 91,183,174,179, 85,123,161, 23,220, 28, 70,158,172,213,245, 33,130,200,130,131, 11, 23, 16, -138, 25,102,179, 25,118, 15, 47,161,156,205,193,113, 6,227,162,153,105,139, 21,110,119, 76,203,198,176, 22,207, 57,223,219,153, - 97,103,167, 68,156,239,128, 99, 97, 59,230,148,173, 1,128,133,190, 40,200,163, 49,107,211, 17, 19, 33,176, 17,184, 50, 8,146, - 5,215,202,132,235, 59, 25,151, 75,155,152, 43, 33,164, 58, 65, 36,163, 82, 66, 18, 6,179,231,162,139,189,118,192,134, 31,219, -213, 90,156,106, 93,219,161, 61, 43, 25,153, 24,203,108,123,102,109, 98, 80, 53, 67,114,109,214,191, 76,144, 80,162, 86, 70,157, -156,184,150, 43, 24,143,221, 78,220,148,129,236,205, 5,147, 56,228,174,173,159, 68,132,180,140,235,148, 51,114, 85,129, 52,249, -158, 28, 40,138,104, 72,133, 8,102,133,183,142,185, 54,249, 94, 54, 2, 34,193,166,208,162, 48,103, 56,112, 97,166, 38, 86, 57, - 64, 28,192,108, 70, 50,172,130, 16,129, 28, 34,106,137, 32,241,108,111, 98,155,114, 69, 33,217, 20, 11,150, 60,102, 3, 91,206, -226,196,174,128,156,108,111, 29, 82,198,205,171,187,136, 87, 94, 67, 74, 97,148,230, 54,142,211,158,190, 49,179, 58,178,162,237, - 8, 9, 0, 40,163,226,215,203, 18, 71,159,103, 92, 60,249, 87,136,179, 83,204,194, 30,202, 64, 40,138,128,178, 32, 20, 33, 32, -122, 54,188, 50, 80,105, 35,249, 51, 2,164,223, 29, 45, 66,151,196,242,229,179,136, 89,241,134, 2, 92, 68,135,241,109,202, 15, - 1,136,209, 88,234,112,210, 90,214,236,104, 10,129, 69, 17,212,242, 75,107,111, 86, 37, 39, 4,152, 45,116,150, 0,227, 79,138, - 75,211, 2,132,131, 35, 56,102, 25,171, 32,212,254,149, 13,254,217, 49, 71,179,149,238, 69,163,115, 99, 67, 11,147, 64, 78, 75, - 90, 54, 16,120,250,196,183, 97, 0, 7, 70,246,158,246,165,206, 14, 49,210,196,188,218,143, 0, 23, 16,132, 21,209,117,127,109, - 38,112,239, 16,145,113,110,186,110,183,137,165,141,187,244,254, 4, 71, 61,130,176,142, 76,106,167,119,233,231,131,228,123,254, -248, 52, 85,216,181, 69, 1, 58,243,209, 30,203,184,217,193,244,124,223, 59,242,160,174, 33, 10,253,148, 45, 26, 49,213,180,109, -130, 58, 43,213,105,200,171,155,177, 27, 23,166,181,160,155,137,247, 68,219,174,138,106, 43,249,155,108,184, 26,152,125, 96,125, -187,222, 77,105, 47, 51,160,223, 56,141,255,174,111,127, 75, 27,159,103,244,119,232,195,204,186,241, 59, 48,213, 4,209, 70,190, - 69,119,173,251,247, 27, 77,211,215, 54,148,250,117,222,129,174,177,240,186,235,176,254, 5,238,133,255,174,221,196,147,203,150, -181,149, 81,147,113,208,111, 54,215,166,124,135,219,153,250,247,239,176, 81,141,129, 81,204,118,144, 52,160,210,128, 69,102,172, -114,192,233,210, 14,185,218,221,218,178,218, 29, 94,206, 10,148,141, 12, 76,128,148,107,132,114, 7,194,138,186, 90,129, 73, 81, - 22, 1,203,156,221, 28, 38, 88,130,152,212, 32,103,147, 71, 39,191, 17,128,178, 44, 80, 43, 99, 7, 53,174,222,184, 2,240, 28, -171,156,240,226,193,115, 84, 95,125,133, 50, 90,115, 82,123,240,138,229, 19,152, 17, 76,134, 57,208, 33,103,207, 11,232,120, 41, - 41, 37, 80, 81, 66,136,177, 90, 44, 17,163, 79,175, 34,182,175, 23, 47, 70, 53,160,117,109, 19,159,113,197, 59,200,220, 73,107, -154,179, 75, 7,185, 69, 3,140, 75,148, 49,139, 64,166,128, 42, 5, 0,150, 46,150, 37, 33, 74, 64,116, 34, 24,251,117,102, 55, -169,225, 98, 6,202, 9, 57,103,139,127, 85, 35,112,133,200,200, 20,208, 8,215,236,179,180,223,167,102,164, 11,209, 8,131,217, -172,107, 41, 43, 50,106, 32, 16, 34, 5, 43,100,204, 88,213,110,156, 18,204,235, 62,146, 37,196,229,156,219, 5,130, 66,145, 18, -176,207, 25, 55, 94,218,199, 23,171, 91,160, 23,183, 65, 69, 95,220, 60,132,158,134,183,176,142,234, 69, 30,252,220,140,129, 7, - 2,220,123, 48,195, 31,191,184,141, 23,215,238, 98, 89,189, 3,193, 11,255,137, 2,137, 9, 65, 19,130, 68,164,160, 88,170, 96, - 85, 37,104, 74,176,112, 23, 64,132,219, 4, 66,192,136,227, 42,130,136,218,214, 47,228,124, 13,234, 44, 96, 73, 28, 97, 2,204, - 27,222, 81, 66,246,251,216, 47,170, 33,112,194, 30,151,155, 60,106,149,141,184, 39, 0,147, 73, 15,155,207,164,137,255, 86,247, -143, 39, 53,114, 57,220,184, 73,193,206,191,178, 12,148,134, 97, 45,126, 31, 88, 10,150,194, 35, 81,187, 63, 60,154, 28,117, 3, -212,172, 45,121, 77,219, 73,124,224, 27,167, 61, 77,242, 88,182,160,210, 59,197, 25, 25,192, 10,138,202,159, 63,170,142, 58,185, -225,129, 35,216, 28,207, 59,206,162, 30, 35, 18,208,254, 84, 69,107, 22,127,155, 38,115,218, 12,188,175, 19,186,198, 83,123,159, -128, 68,227,230, 70, 71, 68,145,142,216,166,122, 22, 89,111,164,235,108, 28,137,122,211,101, 99,233, 75,192, 6,152,125,212, 8, -232,102, 66, 90,255, 77,233,212, 52,187,190, 72,222,216,132, 81,111, 42, 29,238,196, 39, 26, 0, 93,207,102,215,222,103,216,103, -174,233,185, 56, 2, 30,131,168, 3,133, 44,250, 24,247, 36,209, 15,221,181, 29,236,147,105, 98, 76, 30,221,163,211,252,130,223, -128,252,182, 6,207,244,255, 35,163, 70,114,140, 18,233,198,181, 64,123,253, 73, 39,187, 88,210,233,197,143,113,111,164,245,177, -110,145, 63,177,180,178, 24, 75,228,156, 81,114, 70,189, 60,134,214, 75, 32, 45,220, 7, 62, 90, 81, 83, 35, 2,173,234, 12,229, - 18, 66, 22,198, 66,170, 88,173,106, 32, 87, 32, 22,228,172, 22,154,161, 68,117,251, 0, 0, 32, 0, 73, 68, 65, 84, 18, 45,250, - 52,195, 92,219, 32, 9,204,100,210, 47,246, 3, 19, 10,225,136,253, 34, 96,118,225, 0, 79,170, 29, 8, 34,158,166,125,156,174, - 2, 74,182,241,175, 8,132, 89, 80, 71, 10, 44,108, 67, 40, 56, 29, 57, 59,234,219,157,117,129, 13, 35, 92, 44, 19,164,206, 96, - 85,179,186,205, 54, 17,139, 40,144,141,249,206, 42,216,225, 26, 76, 25, 66, 62, 83,185,116, 77,115,110,237, 73,205, 33,182,147, -150, 21,172, 40, 11, 2, 21, 1, 21,102, 54, 45,107,246,198, 53,160, 32,177, 41,155,130, 63,175,128, 11,155,248,178,199,123,198, - 64, 78,148,179, 61,177, 53,235,182, 23,103,169, 81, 32,161, 17,193, 22, 76, 6,243,170, 49,175,115,173,160,186, 2,105, 5, 69, - 54, 38, 63, 50,106, 53,216, 61,134, 8, 80, 64, 45, 98, 18,121, 16, 16, 13, 82,182,200,122, 51,170, 9,238, 66,119,121, 86,227, -226,205,107,168,139,107, 64,170, 91,232,125,203, 46,241,204, 63,145,128, 5, 3, 31, 62, 41,192, 95, 30,227, 48,124,138,226, 96, - 15,161, 60,116,125,124, 52,102,122, 81,160, 40, 74,112, 52,239,148,148, 8, 82,213,160,122,233, 73,103,205,222,216, 22,151,145, - 8,129, 44, 51, 32,139,152,126, 93,164, 53, 36,138,100,146,201, 38,168, 94,152,221,104,135,125,189,220,177,204, 24,132, 72,140, -232, 46,125, 41, 11, 36, 37, 8, 50, 18,177,121,236,171, 34,114,182,253,123, 36, 95, 39,117, 43,235, 14, 13, 77,118,128,251, 90, - 69,153, 7,223,226,168,189, 69,250,192,143,125, 11,107, 92,160, 45,161,186,129, 6,169,215, 8, 52,211,144,140, 12, 81,250,154, - 93, 26,228,144,233,160,190, 43,117, 16,187,246,166,232, 33,123,124,187,182,151,182, 20,101, 29,147,226,104, 10, 39,221, 60,143, -111,154,226,250,214,172,227, 9,151,124,194, 29,154,218,116, 26,168,241,188,217,119, 38,211, 65, 50,158,182, 22,162, 52, 65,240, - 27,167,231, 77,237,206,181, 39, 83, 84,156,229,241,164,163,148,184, 41,102, 53,173,167,142,173, 69,168, 78, 79,250,125,246,110, -147, 63,207,125, 72,110, 83,204,107,219,160,244,166, 97,233, 17,188, 7,220,134,169,199,104,134,213,126, 35,209, 57,204, 48, 38, -154,135,145,247, 58, 97,104,212,210, 92,127,218, 66,192,236, 23,246,173,209,125,191, 13, 5,219, 86,153,218, 54,248,137, 90,148, -108, 45, 74,119, 4,147,245,215, 98, 58, 10,244,233,127,207,152, 45, 23,122, 85,215,152,207,119,176, 55, 43, 80, 23, 4,138, 37, -210,201,194, 9,134,110,135,169, 53,144, 21,194, 9, 5, 23, 40,162,253,190,102, 69, 18,113, 34, 89,101, 30,242, 49,154,215,250, -170, 6, 57,164,171, 61,250,174,217,134,218,225, 28,230, 1, 74,187, 56,148, 19, 84,216,195,139,163, 37,228,197, 67,107, 2, 56, - 0, 16, 80, 44,128, 58, 33, 68,133, 34, 34,167,236,118,169,108, 17,167,238,140, 73, 33, 64,153,221, 85,173, 66,193, 10, 13,209, -189,199,109,114,141, 96, 43,214, 46, 85,163, 8,128,103,200,139, 10, 76,238,251,237,201, 95,162, 30, 6,227,218,102,245, 8, 78, - 9, 1, 85, 54,167, 50, 74, 25, 42, 43,128, 9,146,129, 82, 5,179, 2, 88,134, 18,117,101, 76,119,228, 12, 97, 6,115, 48,253, -184,100,211, 91, 7, 6,185,105,138,184,166,154, 2,140, 32, 71,182,185, 37, 17,131,161, 57, 34, 2,238,255,174,208,172, 93,144, - 21,236, 11,154,149, 64,181,130, 56, 89, 49,243,212,183,164, 25, 16, 3,131,137, 9, 68,133, 57,174, 73,134,144, 34, 72,192,245, - 61,194,201,245,151, 81,223, 59, 69,212, 83,128,138,158,109,177,110,192,143, 54,139, 74, 24, 0, 34,240,201, 9,227,228,110,198, -193,242,215, 88,238, 29, 99,185,186, 4, 44, 87,208, 92, 35, 36,119,202, 67, 1, 70, 1, 4, 5,104,229, 18,182, 4,210, 26,193, - 61, 83,148,164, 27,126,200,210,210, 84, 8,212,248,232, 6, 32, 1, 8, 89, 65,172, 16, 98,136, 6, 55,147, 33,159,173, 21, 89, - 45, 26,184,177,215,239,185,137,155, 81,144, 40, 92, 11,105,100, 77, 56, 75,156,109,125, 65,193,154, 44,168, 55, 22, 25, 96,187, -105,124, 72,229, 86, 21,214,100,151, 18,186,136,244,118,197, 70, 19,164,184,221,221, 61,188,251, 7,255,102,199,206,214,225,198, -185,201, 42,151,222,182,111,250,171,221,135, 86,135,150,176,236,212,147,230, 72, 20,181,232, 65, 56,211,155, 39, 38,183,102,182, -110, 29,218,116,250,108,219, 86,154,219,176, 1,221, 78,135,163,173,112,126, 95,151,187,254,111,141,255,239, 96,152,237,163, 14, - 13,244,220,234,210,123, 4, 69,165, 65,161,110,139,143,174,243,245, 21,132,249,206, 46,190,247,131, 63, 0, 81,243,191,255,112, - 8,199,123, 22,112,227,242, 71,122, 78,134,245,214,159,115,118,102,175, 70,170, 98,203,242,162, 55,193,142,218,197, 6, 18,215, -169,149,253, 20, 74, 52, 1,169,172, 35, 55, 58, 98,253, 99,141,128,211,217,200, 78, 35, 10, 58, 34,169, 77, 42,213,166,120, 4, - 19, 80,187, 98, 19,250,245,219, 84,177,209, 22,102,204,244, 11,212,126, 2,221, 25,235, 45,218,108,178,188,246, 47,204,132, 85, - 86, 28, 45, 86, 72,213,210,174, 85,220,193, 82,130, 25,157, 80, 70, 18,105, 61,217, 7,190, 20, 28, 48,159,207, 17, 11,163, 10, - 75,157, 48, 11,130,217,172, 68, 6,163, 22,115,130,179, 72, 75,246,207,209, 72,102, 6,203, 19, 40,148,136, 1, 72, 58,199, 97, - 72,216,187,188,143,147, 52,199,242,228, 57,230,161,106,167, 88, 52,108,116,247,228,102,102, 20,145, 91, 38, 15,179,137,133, 98, - 96,112,140,102,245,153, 51, 24,217,200, 81, 14,215, 38, 0,181, 4, 36, 17, 84, 20, 81, 39,187,182,203,218, 8, 85,166,183,207, - 72, 25, 6,111,139, 73,170, 68,146,169,143,132, 16,212, 98, 61,115, 38, 72,149, 33,203,133, 25,184, 48, 35,103, 32, 66, 48,139, -130, 58, 68,212, 90, 2,181, 34, 72,178,188,237,156, 65, 82, 35,178, 32, 80,240,230, 1, 40, 24,160, 96, 16,188, 50,163, 82, 66, - 37, 1, 85,102, 35,123,121,110,119, 93, 3,117, 6,132, 3, 56, 22, 8,165,249,167,135, 24,189,145,113,153, 23,140,247,160,226, -222,243, 44,157,162, 66, 18, 36, 89,194, 92, 32,129, 4,134,100, 11,139,153, 73,141,107,151, 35,232,194,203,144,204,128,166,222, -217, 77,235,228,184,115, 12,238,243, 0,124, 94, 19,238,124, 17,176,251,236, 14,230,197,125, 20,187, 7,224, 98, 15,145, 75, 80, -136,214, 12, 17, 33,107, 64,150,140,236,164, 74,139,160,183,187, 95,204,115,213, 86, 34, 14,179, 7,246,157,124, 96, 8,137,133, -247,120,106,155,120,142, 45,249,224, 70,238,241,198,238, 23,175, 78, 88, 76,217, 82,218,146, 18, 68, 25,236, 84, 59, 66, 0,139, -173, 48,224,124,132, 84, 39,164, 42,161,170, 5,117,242,159,103, 70, 44, 8, 20, 3,128,208,105,228,165, 33,169, 55,181, 80, 13, -221, 22, 47,140,236,161, 1,210,119,247,162,117, 24,123,124,128, 72, 43, 91,233,147,108,166,225,105, 6, 48,223,221,195,183,223, -121, 23,239,253,248, 95,183, 83,206,193,197,139,120,229,245,183,112,255,238,103,120,242,232, 81,127, 27,232,144,148,167, 19,194, -117,236,132,118,250,237,167,213, 0,192,206,238, 30,222,122,231, 93,252,204, 31,127,234,102,248,254,239,254, 97,111,240,176,160, -135,156,187, 93,205,207,127,250,163,175,133, 6,233,228,216,227, 76,217, 41,226, 85,111, 98, 37,237, 81,218, 6, 16,131,246,125, - 98, 49,246,243, 82,172, 79,187,231,194,172,180,107, 2, 64,125, 97,226,118,169, 95, 63,175,125,156,248,214,230,203,235,148,137, -128, 14,188,223,105, 52, 69, 42, 97, 32, 37,235,231,145,143,209,128,193,176, 56,224, 71,120, 67,216, 62, 38,109,140,137, 93, 55, -185, 16,183, 47,166, 17, 1,141, 38,248,141, 46,137,220, 54,101, 79,236,239,199, 44,241,254,148, 63,108,238,126,155,147,250, 56, -102,246, 28,191,170,125,219,230, 45, 56,142,142, 82,180, 28,228,208,113, 34, 29,236, 80, 60, 89, 37,220,255,234, 41,222,146,100, -233, 94,193, 24,230,204,138, 28, 10,104,174,189,225, 52,211, 15,179,222, 52,226, 79, 81, 20,160, 80, 2,186, 66, 8,132, 42, 7, - 71,171,106, 11,128,169, 86,182,255, 14,140, 76, 2,201, 22, 21, 74, 49, 2, 28, 17,192,224, 34,162,196, 10, 60,223,195,179,116, -128,227,227,103,192,234,212,156,223, 56,162, 41, 83, 49,103, 36, 97,228, 36,102, 49, 90, 4,144,152,172, 73,189,216,130, 0,161, - 96, 4, 62, 40,212, 97,126, 73,181,241, 10,146,165,142, 90,124,186,237,196,225, 9,107,164,149,177,212, 19, 1,217,174,133,153, -194, 80,187,139, 7, 41,168, 96,100, 68,104,202, 8,156, 92, 6,105,254,246, 32, 65,105, 12, 49,156,202, 12,168,107, 20, 92,249, -167, 17,108, 50,132, 21,111,161,104,121,216,200,102, 87, 74, 5,234, 76,110,129, 10,103,162, 43,122,171,117, 0,158,217,174,138, -130, 9,226, 19,189,237,108,201,252,222, 53,249,247,128,173, 65,129, 73,243,160, 13, 89,139,160, 12, 36, 85, 4, 8, 34,151, 78, - 72,171, 32, 34,184, 24, 8,139,107,135,120,188,184,142, 98,117, 15, 26, 24,152,168, 28, 52,129,190, 78,253,153, 17,240, 8,192, -251,247, 11,252,224,139, 39, 40,190,241, 17,184,124, 23, 92,238, 58, 65, 77,140,247, 64,138, 36,132,224, 30,246, 89,224,255,158, -141,224,215, 68, 38, 43,141,184,164,138,204,118,125,181, 13,122,177, 90,196,162, 32,202,222, 12, 52, 42, 46,143, 24,151,206, 34, -189,137, 66, 13,189, 44, 17,241, 97,110,124,116, 26, 88,224, 25,238,217, 54,237, 33,144,221,211,161,240, 90,221, 41, 29, 26,159, -130,192,110,167,107,133,149,214, 76, 52,212, 25,135, 50,146, 41, 13, 36, 75,107,187, 88, 7, 2,180,255, 55,118, 10,243,232,124, -201,254,175,215,174,221,192,205, 91,175,226,246,167, 31,226,197,179,231, 93,118,182,246,204,112, 28, 50,110,247,223,212, 61,110, -243,131,227,245,204,148,169, 87,243,255,127,254,147, 31,181,255,123,103,119, 15,111,191,243, 46,222,251,201,143, 70,156,182,166, -184,172, 31, 84, 27,201,120,189, 80,156,110,234,158,250,197, 81,252, 23,209,160,144,147, 98,130,117,220,223,120, 43,160,220,225, - 13,164,107, 72,197,185,246,178,106,215,114,154, 24,183, 29,110,239, 55,213,221,160,171,216,100, 24,219,170, 11,104,244,110,180, - 43,236, 99, 13, 61,209,134,182,201,229, 95,173, 71, 34,141,154,158, 41, 98, 92,115,159, 16, 13,225, 41, 69,143,156, 56, 77,136, -235, 55, 18, 68,125, 72,122, 83,244,107, 15,138, 62,151, 45,188, 14,152,254,160,245,251, 87,207,101,241,219,187,214,107,108, 82, -218,216,126,174, 53, 78,210, 92,143, 9,140, 68,117, 20,109,140,161, 50, 97, 60,169, 19,161,206,192,199,159,222,198,159,200, 10, -137, 34,150, 82,184,159, 58,217,244, 74,130,192, 22,129,154, 92, 70,150,179, 96, 94, 48,118,231,165,205, 63,217,152,200, 41,101, -168, 36,159,198,179, 77,225,181, 37,134,217,206,217,136,100,196, 70, 58, 42, 67, 2,241, 14,118,231,132, 21,118, 80, 29,191, 64, -181, 56, 1,201, 10, 57, 22,109, 83, 29,152, 64,101,244, 22, 58, 89,174, 58,200, 44, 93, 69, 81,104, 66, 44, 3, 42,141, 64, 50, -159,243,165, 2, 84, 11, 10,143, 67, 19, 73, 8, 20, 16, 72,145, 16, 64,200, 96,178,157,108, 86, 69,201,140,178, 8,230,229,174, - 25, 76,190, 19,117,150, 62,152, 76, 7,175,138,228,200, 5,171,103,190,187, 81, 76, 96, 43, 30,149, 22, 64, 13,112, 90, 34, 71, - 1, 81, 97, 48, 49,188, 41,208,208,126,183,178, 18,114,118,151, 58, 19, 95,155,159,123,240,233, 84,123,252, 36, 82, 20, 12, 4, - 21,100, 50, 2, 89, 84,103,136,251,234, 52, 58, 4, 15,215, 81,107, 86, 32, 37, 59,231, 27, 71,181,192,168, 37, 64,170,140,178, - 72,200, 49,128,197, 76, 92, 88, 20,151,119, 51, 78,174, 94,195,234,222, 49,162, 28, 1, 92,158,123,145, 62,254, 41, 6, 32, 17, -248,249,179,136,227,207, 94, 96,246,131,247,160,187,127, 10,208, 46, 64, 75, 40, 76,221,144, 4, 88, 38, 66,189, 50, 52, 65, 73, -236,251, 45, 22,168, 2, 73, 30,101, 43, 45, 82, 32,125, 78, 87, 63,241, 76,213,241, 73,203,139, 16,106,246,127,174,255,135, 66, - 24,109, 28, 46,181, 48,109,246, 65,210,252, 15,114, 99, 23,227,223, 29, 86, 64,168, 31, 65, 43,142, 62, 9,180,182, 52, 63, 80, - 19, 69,215,120,246,119, 17, 98,177,185, 32,185,157,184, 77,130,175,218,159,212,237,201, 46, 92,185,134, 27, 47,127, 3, 33, 70, - 60,127,250, 24,119, 63,251, 24, 89,129,171,215,110,224,234,245, 27,248,229,251,239,181, 95,246, 98, 54,195,119,223,253, 61,188, -255,179, 31,163,174,171,206, 64,132, 58, 14,143, 40,112,243,230, 55,112,237,218,117,124,242,225, 7, 56, 61, 57,110, 15,141,192, -140, 87, 94,253, 38, 14, 47, 94, 2, 17,240,252,217, 83,220,187,253, 41,160,130,189,221,125,188,241,206,247,241,217,199, 31,226, -165, 91,223, 64, 89,206,176, 92, 46,112,247,211,143,176,170, 42,124,235,237,239, 1, 0,190,247,131, 63,128, 2,120,240,197,109, - 60,126,248,229,192,183,126, 27,187,121,199,145,132,219,159,125,132, 27, 47,189,130,162, 44,241,222, 79,126,132, 43, 87,175,227, -234,245,151, 80, 20,118,243, 29,191, 56,194, 23,183, 63, 67, 74,181,253,206,119,190,143,207, 62,249, 53, 94,186,121, 11,229,108, -134,229,114,137,187,159,127,130,114, 54,195, 75, 55, 95, 65, 57,155, 99,181, 92,224,246,231,159, 96,181, 92, 96,103,103, 23,111, -125,231,123,248,252,211,143,112,227,230, 45,148,101,137,213,114,137,187,183, 63, 69, 89,150,184,209,251,157, 59,183,237,119,224, -114,136,151,111,189,134,131, 11,118,109,142,158, 63,195, 23,119,110,183,126,194,231,250, 74, 40, 13,136, 14, 45,193,241,204,194, - 62,236,250, 6,158,245,125,205,245,198,233, 83,123,201, 80,141,197, 6,245, 8,103, 27, 38,102,234, 55, 11, 77, 51,208,103,251, -247,220,244, 48,177,195, 71,207, 76,173, 93,190,143, 88,224,125, 54,252,120, 58,111,246,229, 52,229,101, 72, 91,215, 60,253,169, -127, 42, 44,110,107, 67,208,188, 87,234, 17, 10,221,246,119,250,181, 98,248,217, 14,224,116,221,186,126, 39,215,177, 55,238,134, -125, 73,157, 98,141,233,217, 3,125,206, 96,113, 18, 97, 86,150,248,228,163,143,241,213,147,103,168,115,129,163,103, 47,176, 88, -101,164,236,186,107,135, 64,133, 2,146,203,194, 36, 17,202,192, 56, 56,216,199,194, 11,100, 99, 6,146,235,202, 60, 27, 68, 1, -142, 16, 84,128, 24,225,142, 10, 99, 41, 87, 89,177, 11, 1,239,236,153,188,168,156,161,146, 8,193, 2,185,174, 13, 45,144,220, -237,224,213, 8,103, 49,194, 96,238,170,134,230,228, 58,110, 0,222,112,152,115,104,134, 6, 70, 1,130,212, 75, 0,182,223,207, -201, 15,111, 47,210, 57, 39, 64,156,137,159, 4, 57, 85,144, 96,126,241, 96,113,187, 81,110,173, 67,137,130,191, 47, 51, 48, 33, - 53,242, 96, 43,147, 34, 55, 35, 9, 86,228,163,214, 8, 81,177, 82, 70, 16, 11,166, 81,181,120, 86, 1, 60,210,211,144, 40,235, - 10,196,227, 85,197, 34, 86,185,177,253,106,178,215, 77, 3, 29,156,108,152, 65, 64,178, 5, 67, 12, 38, 1,147,100,171, 82, 9, - 70, 54, 11, 32, 80,104, 10,156,186, 72,143, 65,194,152, 19, 33, 19,161,174, 87, 64, 81, 64,180, 0,180,182,228, 52, 85, 92,190, - 16,240,224,197, 75,208,103,167, 0, 39, 64,195,228,106,234, 60, 8,214, 78, 0, 62, 92, 16, 62,254, 52,224, 59, 79, 62, 70,177, -247, 57, 82,248,157, 86,243,205, 0, 88, 50,178,102,172,146,162, 94,173,128, 84,181,196, 88,210,220, 78,101, 10, 12, 88,230,182, -194,232,156, 6,201,186, 0, 4,237,204,215, 26,119,246, 38,102, 92, 61,221,212, 86,118,118,253,173, 97,112,186, 91,195, 23,106, -210,219,196, 28, 3, 27,193,158,244, 52,227,210, 91,122,169, 72,247,140,212, 56, 7,160, 13,118,225,129, 15,155,191,241,136,113, -236,167,253, 57,184,112, 17, 31,189,255,215,248,248,103, 63,198,238,238, 30,110,190,242, 26, 24,138,167,143, 31,162,156,153,153, - 68,211,196, 92,185,122, 29, 47,142,158,163,174, 42,239, 66,164,199,140,183,151,248,250,235,223,196,229, 43, 87,240,225, 7, 63, -199,201,241,139,246, 32,103, 40, 94,251,230,155, 8, 49,224,131,247,126,130,247,127,250,215, 40,138, 18, 55,110,189,218,130,165, - 0,112,241,210,101,124,252,203,159,227,253,159,252, 8,203,197, 41,110,189,246, 6, 68, 50, 62,254,213,251, 0,128,247,127,250, -151,248,249, 79,126,132,199, 15,191,156,112, 62, 59,251,102, 57, 56,188,136, 15,127,249,115,252,252,167,127, 9, 0,168,171, 10, -159,126,244, 43,188,247,211,191,196, 7,239,255, 20,204, 1,175,188,250,205,193,227, 93,184,120, 25, 31,253,250, 23,120,255,103, - 63,198,114,113,138,215,223,252, 54, 46, 92,188,140,143,127,253, 1,222,255,217, 95, 97,177, 56,197, 43,223,120,125,240, 60, 23, - 46, 94,194, 39,191,254, 0, 31,188,247,215, 88, 46, 23,120,237,141,183,112,225,226,101,124,242,209, 7,248,224,189,191,194,114, -121,138, 91,175,188,222,190,250, 87, 94,125, 3, 28, 34, 62,252,197, 79,241,171,247,127,130,162, 40,240,210,203,183, 58, 55,216, -115, 22,246, 41, 36,160, 79,250,210, 51,126, 91,251, 4,111,221,162,127,159,156,246, 59, 15,183,129,182, 65,117,218,210,117,109, - 87,222,155,252,251,235,138, 13,246,179, 10,247, 80,118,104,185,115, 85, 24,107,189,135,251,250, 33,113, 84, 59, 55,184,241, 66, - 93,113, 6,163,189,179, 65, 86,156,215, 41, 78,135,172,253, 30, 52,162,125,189,250,248,121, 7, 44,203,115,142, 61, 58,216,168, - 15,114,232, 85,167,165, 69, 64,163, 75, 63,251,205,236,236,236,224,206,157,123,248,229, 47, 63, 65,132, 32, 45,143,145,150,167, -168,170, 26,172, 25, 37,121,246,183,138, 79,176, 64,170, 51, 14,102,192,108,255,208,172, 71,253,117, 4, 22, 36,177,124,114,117, - 7,175, 34, 6,168,219,192, 42,219, 49, 23, 64,136, 51, 64,105, 23, 7, 51, 96, 73, 37, 56, 45,177,146,128,106,181,132,122, 28, - 39,181,126,252,217, 11,159, 23,119,102,148, 5,155,105, 12, 71,204,202, 2, 5, 51, 2,137,153,177,104,192, 60, 50,118,230, 37, - 66, 32, 68, 86,139,133,101,143,101, 21,216, 46,151, 12, 73,155,149, 1, 28, 3,170,156, 1,201,221, 38, 84, 59,201,153, 41, 0, - 82,107, 75, 27,157,147, 96,251, 89,123,125,236, 33, 34, 76,228, 97, 43, 1, 49, 22,173,151, 60,135, 96, 30,242, 57, 65, 53,129, -196, 7, 55,191, 87,109, 66, 55, 73,154, 34,182,247, 79,176,135,117,237,179, 34, 19, 65, 16, 92,131, 13,104,242, 46,158,139, 14, - 61, 37, 54,243, 19,195, 58, 64, 20, 12, 94, 22, 49,230,191,212,136, 37,160,177, 52,183, 92, 77,110, 93,106,239,247, 98,204,184, -120,109, 23,105,126,221,225,233,117, 30, 19,157,115, 13, 58, 39,224, 9, 1, 63,190, 63, 3,223,126,136, 50,255, 12, 84,102,196, - 88, 56, 25,146, 81, 4,251, 60,213,211,240, 76,173, 80, 25,185,205,181,235, 45,237, 76,217,137,175,140,224, 70,238, 22,182,226, - 9,142,190,182, 5, 49,132,128,164, 61,146, 38,117,126,238, 77, 76,170,182,140, 57,247,132,111,226, 84,165, 85, 74, 58,187,204, - 53,244,173, 52,148,123,138,164,241, 25,152, 33,110,160,164,110, 24,199,138,190,202, 76,187,195,171, 15,132,250, 11,121,112,255, - 46, 68, 21,117,174,241,240,254, 93, 92,188,114,213,165, 27,130,167, 79, 30,225,234,213,235,131,162,254,232,225,131,193, 99,141, -255, 92,184,120, 9, 71,207,159, 97,181, 90,182,144, 53,193, 34, 19, 15, 47, 94,198,253, 59,159,155,109,164, 8,190,250,242, 62, - 46, 93,190,226,110, 63,182,127,121,248,197,109,203, 44, 22,193,147,135, 95, 97,119,111, 31,107,105, 45, 19,207,191,141, 58,212, -255,201, 7,247,239,184,203,144,253,237,209,209, 51, 84,213,202, 86, 7, 41,225,203, 7,247,176,127,120, 97,240,251,247,191,184, -141,156, 51, 68, 5, 79, 30, 63, 68, 89,206,112,239,139, 59,173, 86,244,201, 99,127,157,189,103,187,127,239, 14, 82, 54, 15,233, -230,119, 30,220,187, 11,241, 29,207,211,199, 15,219,223, 9, 33,226,240,194, 37, 60,184,127,199, 32, 61, 81, 60,250,234, 1, 46, - 94,186,252,181,118,167,152,148,223,161,155,128,199,103,245, 20, 9,177, 87,101,101,219,254, 94,167, 11, 59, 77,146,206,116, 44, - 89, 93, 43, 60, 3,206,129,202, 4,111, 98, 40, 93,107, 11,179,234,208, 7,127,244, 62, 55, 73,247,134,245,123,147,149,155, 78, - 62,239,186, 33,146,174,203,229,244,235,130,142,163, 34,223,119,157,107,190,208,125,139,189, 51, 50, 88,198,246,206,208,225,223, - 97,148,243, 48, 70, 20,214,215, 62,235,223,172,178,136,120,242,252, 24, 31,252,248, 39, 32, 73, 40,130,162,100, 49, 47,113, 2, - 98, 89,130, 67,132,154,187,137,193,230,200,120,233,202, 30,234,184,143,106, 85,155, 55,121, 22, 8,204, 65, 78, 53,251,199,152, - 61, 70, 52, 66, 68, 80, 6, 66, 8,132,195, 25,163,226, 61,204,100, 5,218,221, 1, 82, 9,142, 25,203, 90, 64,185,130,102, 35, -141,114,104,156,214,204,149,142,152, 12,126, 14, 4,225,210, 96, 97, 98, 16, 69, 20,179, 57, 66, 44, 81,114, 64,201,182, 59,159, -205,230, 40,103,115,128, 45,237,109,190, 51, 3, 17, 33,165,100,207, 1,139, 54,205, 10, 40, 23, 16, 33,228, 92,183, 12,248,198, -211,163,246,124,247, 44,206,178,119, 7,186, 68,108,100, 41, 79, 95,107,136,120, 44,230, 0, 39,173,245,152, 91,217,168,241, 24, - 34,187,156,138, 45, 54, 84,149, 90, 18,174, 16,155,189,171,239, 98, 27,162, 46, 49, 16, 66, 48,135, 51, 54,198,124,208,220,134, -184,100, 15, 36,161, 38,205,141, 21, 28,205, 93,141, 85, 92, 70, 7,243, 92,143,182,131, 87, 8, 66, 48,187,218,198, 84,199, 50, - 60, 4, 1,192,229, 61, 69,121,237, 42, 18, 93, 4,180,158, 60,149,206,108,130,155,253,119, 9,252,232, 73,196,151, 31, 40,102, -207,222, 67, 40, 30, 35,132, 3,112, 8, 88, 49, 99,169,102, 5,203, 69, 1,166,210, 72,240,106, 77, 22,169,152,100,207,221,218, -200,211, 26, 11, 40, 74,119, 60, 36,118,253,151,163, 39, 89,125,162, 38,251,124,204, 93,207, 62, 67, 21, 27,144, 35,219,125,197, - 62, 77, 39,101,136,152,158, 60,248,116,157,213,238, 99,162,220,152,213, 90, 3,214,100, 4,244, 76,215,154,115, 85, 92, 46,166, -158,161, 34,238, 39, 31, 27,214,122, 23,173,218, 9, 5,200,161, 77,114,146,196,106,181,106,243,214, 87,213, 10, 49, 22,254,147, -138,167, 15,191,196, 27,111,127, 23,119,238,124,142,195,131, 11, 0, 17,158, 61,125,186,213,169,229,163, 95,125,128, 55,222,250, - 14,160,192,157, 59,159,117,186,195,162, 4, 17,225,173,119,222, 29,156, 19, 68,220, 69,178, 2, 72, 14,235, 55,144,132,197,108, - 14,161, 81,110,119,162,125, 51,144,117, 2,223,212,209, 89,175,170, 1, 13,235,226,197, 75,184,118,227,101,204,102,243,150, 20, -200, 3,141, 32,144, 82,221,173,111,189,235, 79,169,118,190,155, 37, 30,141, 33,220, 84,215, 29,121,173,247, 59,205, 27, 23,233, -178,172, 11,191, 54,223,250,246,119,135, 92,228, 38,137, 77,167,209, 8, 61, 83,198, 52, 33, 8,236, 19,227,104,157,240,213,144, - 19, 91,239,127,218,162, 52, 24, 64,238, 61,169, 95,239,115,161,181, 9,159,134, 92,193, 73,130,224, 54,217,221,208, 37,176, 33, -167,168,244,183, 3,195,192, 19,157,220,101,235,228,188, 48,206,131,167, 73,186,254,121,150,224, 29,220, 78,244,155,181,100,235, -232, 11, 13,225,248,141,226,206,222,171,150,225, 52,190,201, 83,160, 91,115,216, 4,186,110,136,179,254, 10, 23, 25,184, 64, 25, -127,235,240, 83, 60, 61, 57, 6,115, 68,156,237, 0,180, 68, 85,155, 15,121,157, 97, 17,163, 80,172,132,241,237, 11,130, 87, 94, -185,129, 37,230,152,233, 83, 36,181,244,180, 84,213, 38, 47,131,101,149, 19,153,197,103,140,193, 28,192, 56, 98, 55, 16,202,157, -128, 80, 71, 28,238, 10, 86,124,136, 18, 47,240,101, 54,214,251, 78,148,214,203,173, 33,160, 89,249, 49,168, 51,146,216, 68,154, - 18,136,141,216,215,192,184,101,140,136, 65,145, 53, 34,137, 66,148,205, 47,156, 50,234,148, 16, 99, 68, 89, 6, 96,181, 66,237, -108,119, 98, 56,252,106,175,187, 74,138,153,243, 8, 82,157,219, 36,181,160, 6,235,231,156,141, 19,192,193, 43, 71,178, 25, 46, - 24, 10, 64,146,172,176,176,177,163,141, 29,104, 95,202,156, 45,229,141, 35,155,215,187, 55,128,133, 42,148, 4,181, 48, 88,204, -181, 47,120,170,155, 10, 59, 71, 1,173,238, 58, 80,180,221,114, 48, 20,165,166, 0,100,159,194, 41, 35, 48,163,178,138,134, 16, -162, 77,187, 94,208, 34, 0, 42, 2, 68, 3, 68,146, 83, 81,189, 56, 49, 67,216,238,249, 44,192, 14, 8, 87, 46, 2,247,142,111, - 64,159, 30,131, 98, 66, 67,247,218, 36, 99,219,244,103, 47, 0, 31,175,128,159,253,170,196,159,124,246, 17,240,253,247,160,225, -223,129,112, 68,133, 26,171, 28,145, 86, 12,212,157,214,155,155, 34,194,226, 70, 75, 58, 16,204, 53,206,109,228, 18,195,156, 3, - 40,155, 94, 60, 75, 23,182, 28,124,250,206,208,214,195, 34,251,153, 18,136, 17, 34, 65,132,145, 36,119,222, 24,172, 46,163,115, - 51, 43,233,136,194,218,151,151,250,142,189, 49, 31, 19, 47,250,141, 90,164, 1,224,161, 64, 76, 61,211, 25,157, 16,193,168,118, - 15, 31,139, 25,150,171,133, 65,244,197,220,138,149,127,151, 23, 39,199, 88, 45,151,184,116,233, 50, 46, 94,186,130,199,143,190, -106,161,220, 77,127, 78, 79, 79,240,225, 47,127,142,183,222,254, 30, 56, 4,220,254,244, 35, 40,128,170,182,130,246,193,251, 63, - 65,174,235,118, 99, 41,189,248, 87,248,206, 65, 71, 81,209,195,169,176,217, 39,246, 34, 76, 21,107,153,236,116, 6, 27,216,252, - 20, 10,188,246,205,183,112,251,179,143,240,236,217, 83,168, 42,246,247, 15,241,173,111,191,243, 53,138,229,246,103,213, 9,223, -248,241, 79, 53,197,254,195, 95,252,204,255, 55, 77, 22,142,254,244, 23, 54, 78,210,211,154,250,181, 86, 64,215,141,114, 90,178, - 90,187,242,214, 86,103,190,241,221,233, 80,194,167,152,214,175,175,177,227,155,182,138,104,251,149,236,135,192,208, 20, 22, 65, -147,132, 63,162,169, 93,118,143, 24,215, 49,243, 38,144,139,109,122,120, 12,180,219,116,142,226,222, 18, 0,127, 99, 45,219,186, - 59,215,198,227,176,117,251,235,174, 53,157,121,120,246, 61,187,155, 47,223,248,249,134,223, 64, 1,240,240, 73,141,255,226,119, - 9,255,193,127,252,231,248,159,255, 53,225,197,243,231,208, 88, 32,139,229,130,167,186, 50,242, 22, 50, 78, 17,176, 35, 21,254, -173,223,185,138,217,173,183,113,124,162,152,205,102,168, 83,198,233, 98, 5,166, 12,214,140, 58, 11,250,170,244, 12, 70, 40,140, - 25, 92,148, 10, 42, 15,113,101,190,194,114,118, 8, 74, 25, 71,161,192,147,135, 75,232,241, 67, 80,105,144,106, 74, 13, 20, 14, - 4, 14,168, 26, 47,210,128,150,124, 25, 26,117,140,154,117, 39, 5, 70,102, 11, 83,169,115,237, 58,103,211,163, 71,102,164, 84, -129,185, 64, 40, 10,100,169, 77,163,221,172, 52,196, 38,112, 5,144,170, 26,179, 89, 9,141, 1, 41, 37,131,119,217,215, 52,206, -126, 38,135, 97,153,108, 50,180,152, 53,182, 85, 67, 80,136, 4, 35,169,169, 97,236,145, 21, 26,108, 16,176,134,194, 12,189,130, - 8, 56, 8, 86, 32,104, 29,144, 36, 89, 54,185,103,169,147,123,216, 67, 5,194, 25,148, 3, 40, 40, 50, 1, 1, 17,194,234,219, -120, 99, 54, 36, 97, 20,176,104, 83, 17,155, 50,179,239,160, 3,105,155, 38, 71,158,110, 70,238, 97,111,125,135, 56, 83, 60,130, - 88, 32, 89,112, 41, 40,142,175,238,225,232,244, 58,138,234,174,233,200, 71,148,219,141,190, 36,189,191, 40, 1, 60, 47,128,127, -126,175,196,239,255,226, 5,118,222,248,151, 88, 20,191,143, 90,231,168,101,137,148, 9, 85,157, 81, 85, 75,212,105,225,219, 22, - 91, 25,136, 75,208, 26, 25, 0,245, 76,211,196,199, 93, 51,132, 97,115, 74,205,112,101, 2,155, 41,141, 8,154, 88,109,109,132, -218, 42, 93, 38,187,155,213,148, 76, 72, 34,158, 89, 33,173, 29,172,249,222,180,243,124, 91,128, 85,155, 85, 7,252,231,154,186, - 70, 62,122,171, 91,205,250,179,250, 94,190,199,162,238,155,251, 25,194, 31,252, 95,111,190,252, 10,152, 24, 28, 10, 92,127,249, - 22,158, 62,126,228,201, 48,166,113,124,252,240, 75,220,120,233,101, 92,184,112, 17,143, 31,126,217, 13, 9, 91,164, 95,171,229, - 18, 31,126,240,115,236, 31, 28,224,245, 55,191,109,241,132,169,198,243,103, 79,112,235,149,215, 16,131,145, 56, 66, 40,176,127, -112, 56,248, 80,165, 79,130,234, 77, 24,169, 54, 19,138,114, 54, 31, 6, 7,156,115,222,153,250, 19, 92, 3,155,179,193, 79,101, - 81,226,165,155,183,206, 57, 68, 77, 44,157,245,140,254,115,195,170, 50,167,132,163,231, 79,113,243,149, 87, 17,130,145, 74, 98, -140,216,223, 63, 24, 29,184,221, 59,206,219,128,209,115,153,217, 79,184,199,117,117,177,215, 64,140,245,231, 19, 83, 94,179,151, -158,132,255,117,235,107, 81,237,139,252, 71,197,116,109,135,142, 33,204, 62, 17,237, 58,118,252, 27, 63,223,120,255,173,218, 79, -101,219,206, 96, 95,135,222,245,252, 62, 48,231,245, 14,152, 42,184,250,117,238,112, 26, 52, 44,107,150, 13, 91,250, 81, 82, 5, - 38, 69, 72, 99,230, 59,240,240, 4,248,189,189,135,248, 39,255,228,239,224,225,203,127,129,183,175, 6,236,201, 49,142, 23, 53, -114, 78,224, 16, 80, 20,246,253,226,192, 72, 43,193, 31,221, 92,225,214,239,255, 17,158,211, 45, 44,151,167,182,255, 46, 75,196, -232,110, 22,209,124,197, 77,122,102,137,110,129,108, 2, 62,152, 1,179,249, 14, 14, 67, 6,237, 31, 32,213,115,188,168, 78,241, -240,137, 32,156,124,133, 24,236,112, 87,144,177,208,217, 80, 46,241,184, 18,168, 21,121,118,227, 15,130, 21,114, 98, 11, 85, 73, - 10,172, 18,144,171, 4, 77,117, 27,228,145,221,163,126, 22, 35, 72,141, 4,200, 33,128,189,240, 73, 6,178,154, 6, 62,248,242, - 90, 36,129, 56,128, 40, 90,233, 80, 69, 78,102, 52,162, 57,155, 3, 29,139, 35, 97, 38,181, 67, 78, 80,216,207,144, 42,136, 76, - 6,152,125,167, 42, 48, 55, 61, 38,178,134, 67,146,105,233, 73, 33, 82,218,174,158,178,187,198, 37,228,218,116,237, 33, 24, 84, - 31, 8,238,225,158,218, 27, 34,171,250, 78,220, 79,123, 81,139,107,149,100, 65, 52,104,121,120, 32, 49,100, 66,148, 90,227, 26, -227,106,229, 54,194, 87,169, 75, 6, 85, 0, 49, 3,215,246, 4,197,149,171,200, 56, 52,239,126,172,165, 34,159,249,157, 80, 0, - 23, 11,224,175, 42,194, 63,251, 81,137,195,143,127, 6,240, 47, 80,209, 46, 36, 41,146,123,209,215,110, 17,171, 57, 65,125, 93, -218,144,219, 20,205, 46,189,255,157,240, 32, 28, 37,115,154, 11,240, 38, 32, 56,225,189,137,188, 85,119, 4, 52,117, 64, 99,229, - 10, 53,233,155, 58, 81,143,217, 18, 5,205,145,200, 81,101,242,117, 70,235,215,209,125, 47,219,245,161,219, 11, 19,184,147,221, - 57,129, 87, 92, 34, 23,155,162, 76, 61,159,203, 38, 63,185,137, 65,109, 46,229,201,243,231,248,222,247,127, 23, 33, 70, 60,123, -250, 4, 95,124,113,103, 80, 40,158, 60,122,136,151,191,241, 58,142,143, 95,160, 90, 46, 59, 83,152,230,128,220, 32,253,169, 42, - 43,236,111,189,253, 93,188,241,173,183,241,233, 71,191,194,103,159,124,140, 87,190,241, 42,222,254,254,239,129,152, 81,215, 21, - 30, 63,252, 18, 39, 71,207, 7, 78,170, 77, 8, 73,243,216, 12,139,112,124,244,213, 3,124,235, 59,223,107,247,220, 79, 30,126, -233,122, 64,234, 35,203,231,211, 5, 43,176,170, 86,184,247,197,109,188,250,218,155, 32,102,172,150, 11, 60,121,252, 16,251, 7, -135,231,159,161,206, 8,208, 88,223, 45, 79, 67,183,119, 63,255, 24, 47,189,252, 42,190,253,221, 31,128,136,145,234, 10,143, 31, -125,133,227, 23, 71,163, 9,113,125,223,173,103,145,225,207,195,120, 63,171, 94,104,199,216,238, 55, 92,195, 2,183, 1,174,239, -121, 27, 13, 38,246,158,103,253,144,221, 62, 64,207, 71, 83,123, 47,163, 64, 59,147, 30,162,237,242, 51,234,115,218, 39,210,201, - 90, 99, 12, 93,127, 44,109, 60,253,137, 38,121, 11,155,245,239, 83, 23, 97,205,245,122,228,117,191,233,163, 58,123,222,110,100, -149, 10, 12, 77, 30,206,232, 25,214, 46,137,110,222,241, 16,128,147, 76, 40, 94, 60,199,127,245, 79,111,226,226,223,254,207,241, -139,143, 30,227,198,107, 55,241,135,233, 91,248, 63,255,159, 15,240,112, 81, 97, 30, 44, 87, 92, 41,225, 89, 21,240,238,193,115, -252,209,191,253, 14,158,238,253, 0,171,199, 71,144,213, 41, 22, 68, 56,173, 8, 73,163, 77,185,201, 63,223,108, 18, 50,179, 38, -101, 28,166, 5, 46,236,205, 81,236, 31, 2, 5,227,184,218,195, 50, 61,199,253,103,138,112,252, 0,140, 5, 52,204, 76,174,149, - 45,138,213, 60,101,212,207, 65,193, 60, 6,100, 50,201,104, 89, 52,166, 50, 12, 86, 35,143,165, 4, 72, 78,136,148, 16,153, 92, -126,172,160,108, 80, 42,135,128,130, 3,168,174,177,170,141, 61, 95,184, 9,137,168,201,191,152, 8,129, 3,148,196,125,210,205, - 83, 92,122,156, 11,133,162, 86, 35, 98,169,235,189,193, 64,146,140,130, 8, 37, 17,148,196, 39,232, 96,231, 96,110, 38, 97,131, -139, 57,152,230, 90, 32,230,171, 47, 22,159,197,209, 99, 93,157,181, 45,162,110,103, 23,144,124,156,139,202,136, 16,247, 30,111, - 62,236,220, 58, 90,170,164,214, 12, 28,109,106,153,137,184,137,109, 16,210, 12, 79, 55,115, 13,119, 32, 36, 55,230,129, 24,220, - 12, 8, 42, 2,118, 53,227,194,165, 2,143,142,111, 34, 28,157, 2,156,209, 11,236, 62,247, 57, 27, 1, 20,115,224,127,185, 59, -195, 91,255,252, 41, 94,185,249,191,225,238,206,155, 56, 77,251, 88, 84, 15,176, 74,201,100,145,117, 2, 82, 5,209, 10, 44, 53, -114, 43, 89,237,212, 8, 77, 72, 81,107,110,230,186,236,146, 20,177, 32, 84, 20,125,208, 75,238, 9,207, 29,226,237, 72,139,170, -186,220,141,205,226,216,245,131,140, 38,149,177, 48, 84, 3,104, 87, 53,226, 70, 72,162, 98, 72, 81, 19,146,214,112,196, 90, 55, - 77,234,134, 13,114,215,203,223,253,254,119,244,248,248,197,218,201,216, 16,233,185, 55,245,177, 31,146,149, 67,223,125,179,147, -198, 13,238,157,223,249,125, 60,184,123, 27,207,158, 60, 6,122,113,174,147,134,109,195, 84, 72, 63, 23,184, 71,187,239, 14,115, -234, 7,158,244,133,220, 52,220,159,115,107,132,223,113,134,154,215,215,159,102,148, 54,215,165, 73,182,229, 68, 40,201,249,179, -214,187,221,200,118, 68,147, 54, 60,191, 31,228,164,232,214,241, 61,135,186, 77,175,130,122,143,120,102, 19, 67,103,230,128,119, -206,185,244, 53,190,100,253, 92,128, 30,163,186,255,126,105,203,139,215,205,107,127, 58,227, 61,232,228, 39,182,254, 0,147,118, - 23, 61,122, 70,107, 39, 75, 91,252, 6, 55, 24,205,108,223,169,127,205, 98, 61,186,151, 90,150,186,158, 23,111, 26,173, 93,180, -187,187,116, 91,117,158, 90, 17,209,184,121,152,248, 61, 6,110,127,149,241,159,189,243, 16,255,245,255,244,223,225,179, 11,255, - 17, 22, 95,252, 20, 97,190,143,195,221,128,199,191,248, 23,248,191,254,239,159,224,163,199, 9,251,251,115, 60, 58, 90,225,210, -234, 9,254,195, 63,189,132,249, 31,252, 99, 60,124,182,135,234,244, 49,242,106,129, 69,149,112,116, 90,161, 94, 46, 80,215, 53, -234,106, 9,164, 26, 34,201,100,102, 28,113,101,206,184,126,133,145,119,175,226,180, 46,161, 26,176,172, 87,248,252,209, 18,167, - 15, 30, 96,135,159,163, 40, 75, 84, 73,236, 99,113, 39, 52, 33, 66,157,173,184, 68,177,100,178, 83,141,168, 22, 53, 98,176,131, - 89,196,130, 90,146, 18, 52, 53, 73,108,130, 16,162,163,164,130,212,236,147,217,108,100, 73,129,156, 19,170,170,178,240, 22, 37, - 72,206,158, 4,136,150,145,109, 22,180,217,165, 72, 6,191,138, 42, 2,128,228,159,111,112,185, 97, 82,160,206,138, 40, 9,123, -115, 70,142, 17, 85,205,160,156,123,206, 37,246,121,132,102,237,232,239,113,149, 20,154, 4,140, 26,228, 14,122,193,199,104, 1, -192,106,251, 99, 6, 80, 59,201,107, 22,129, 58,152,139,156,177,197,165,109,178, 73,140,236,135,182, 50,160,157, 22, 25,150,144, - 6,138, 80,143,210, 21,205,110, 64, 19,161,217, 98,101, 25,217,252,207, 65, 40, 5, 88, 49,112,231, 40,162,190,247, 5, 66,126, -208, 49,237,113, 54, 8, 53,112, 71, 37,224, 89,165,120,165,174,241,159,254,187, 11,208,191,255, 23,120,239,232,207,241,244,147, -207,177,122,116, 15,249,197, 99,200,242, 41, 80,159, 64,116, 97,164,203, 38,212,203,191, 23,217, 27,116, 75, 85,235, 94, 44, 49, -153, 0, 0, 13,167, 73, 68, 65, 84,177,217,137,219,147,172, 6, 80, 37, 65,170,205,162,151, 72, 93,138,214,219,252,146,244, 98, -205, 13, 89, 34, 14,230,169,224,210,184,110,250,106,242, 76, 13,132, 39,105,164,116, 54,184, 10, 53,200,171,161, 6,102,130,229, - 89,238,106,114,236,112,243,250,149, 31,174, 86,171,150, 54,223,137,121, 27,151, 26,251,171,216,219,112,104, 47,104,181, 57,137, -152, 8,151, 46, 95,193,225,197,203,184,251,249, 39, 78, 64,153, 8, 81,161,117,180,176,201, 74,199, 38,191,180, 86,118, 75,189, - 67,108, 56,152, 80, 47, 19,136,250,208, 98,251, 60,235,243, 34, 77,153,159,109,186,121, 8,107, 59,158,223,100,243,185,253,124, -167,117,194, 21,122,182,200,212,151, 26,209,168, 1,219,240,232,231, 46,236,211, 69,171,111, 70, 68,163,215,122,158,166,166,251, - 29, 66, 95,121,125,190,102,162,211,105,211,184,112,208,166,119, 60, 76,124,107, 91,169,141,239,125,253,186,108,178,207, 57,187, -241,161, 77, 31,193, 6,239,252,137,247, 73, 95,243, 78, 26,135,173,156, 11,222,167, 30, 15,133,190, 86,163,214, 54,214, 46,211, - 2, 81,151,253, 78, 35,216,253,148,240,237,240, 37,254,199,255,246, 79,176,252,206,127,137, 71,119,191, 4,180, 66,189, 90, 33, -243, 12, 7, 47,221,194,203,151, 9,207,238,221,197,189,231,130,189,148,241, 15,126, 63,227,198,159,252, 61, 60,173,191,137,188, -120, 10, 72,141,228,228,161,170, 90, 33,173, 86,102,194, 33, 22, 57, 26, 67, 64, 41,130, 27, 59, 9,179,139, 37,142,230, 47, 1, -124,128, 34, 39,172,210, 2, 95,156, 2,139,175,158, 98, 46, 15,161, 4, 20,177, 48, 47,239,100,190,233,228,100, 50, 21,155, 40, - 57, 50,106, 42,160,153, 77, 83,158, 5, 33,152,143,121,115,200, 22,148,221, 57,143, 92, 66, 70, 78,184, 50,196, 35,123, 3, 32, -106, 6, 56,129, 27,117, 51,183,114, 39, 81,115,117, 99, 34, 48,147,171,188,122,103,151, 18,152,196, 77,103, 60,195,219,205,105, - 84,196, 10, 34, 43, 52,204,144, 51,131, 36,245, 44,179,187,111, 75, 8,150,224,214, 64,180, 42,217,135, 45, 99,103,177, 23, 44, - 40, 35,194, 28,201, 56,192,236, 72,197,136, 92, 41, 68,100, 9,230,117, 14,219,129,147,102,123, 55,100,191,175,196, 72,205, 26, - 71, 45, 76, 6, 30,186,163, 46,249, 82,144, 33, 9,234,242, 61,181, 61,116,203,138, 16, 96,142,140,186, 0, 78,234, 57,120,113, - 10,226,170, 85, 59,125,221,243,118, 30,129, 47, 37,226,215, 31, 37, 92, 95,252, 26, 7,223,184,138,147,234, 53, 84,143,238, 3, -171, 39,224,124, 2,210, 21, 84,147, 69,218, 52,235, 0,159,204, 3,161, 91,195, 53,254, 13, 48,150,123,112,199,188, 38,218, 23, - 20,160, 26, 92,154, 40, 3, 62,142, 54,168, 9,217,231,170,173, 10,167, 25,109,204,134,205,108,108,185,157, 40,184,217,155,147, -145,249,148, 26, 55, 67, 63,127,181,113,225, 19, 8, 41,148, 24, 69, 89, 34,188,116,245,218, 15,171,170, 26,100,151,179,223, 24, -220, 10,219,173,128,103,162,222,126,150, 58, 61, 30, 8,239,254,238, 31,226,224,194, 69,220,254,236, 19, 44, 78, 79, 7, 97, 15, -155,234,151,162, 99, 67,247,109,100,167,139,252,104,158,162,225, 73, 61,206,183, 30,151, 96,154, 58,154, 54, 28,134,116, 70,209, - 61,251, 0,221, 76,134,163,179,171,223,250, 1, 58, 96,247,141, 11, 75,191, 40,157, 99, 98,223, 54,229,142,254,173, 93,181,210, -250,203,235,199,125,210,118,202, 86,143,161,191,173,120, 15,167,227,150,213,168, 95,239, 53,175, 23,215,241,183,107,251,107, 24, -166,214,210,246, 79,145,166,108, 44,105,235,154,229,236,162,253,117, 25,240,253,151,212, 57, 70,209, 89, 63,219,176, 28,155, 38, -153,206,180,195,233, 93,210,126,151,169,131, 70,171,249,153,149, 18, 86, 79, 78,240,223,255, 89,129,111,255,163,255, 1,247,159, -221, 2, 45,110, 35, 9, 65,165,134,230, 26,181, 20,160,195,111,224,218, 33,176,122,112, 23,127,120,245, 8,239,254,217,159,226, -217,236,143,145, 79,158, 99, 85, 85,168,179,162, 78, 25,139,100,123,208, 92,215,168,106,203,168,174, 50,176, 91, 70, 92,190, 72, -168, 47, 94,192,253,124, 3,143,190, 74,168,150, 39,200,101,137,135, 75,198,139, 47,143, 48, 95,221, 5,202, 96,154,108, 6, 2, - 71,168, 38,100,102,135, 62, 29,106, 37, 64,219, 84, 54,207,251,206,181, 35,127,193,134, 27, 22, 80, 32, 40, 66,199, 62, 38,131, - 75, 9,150,174,149,179,171,113,216, 10,183, 18, 0, 14,254, 93, 50,191,240,236,141, 74,163,200, 8, 28, 90,115,146,214,125,147, -169,133,130,217,247,176,205,235, 80,152,124,137,156, 56, 85,144,216, 62,150, 59,163,146,198, 2, 60,195,201,116, 54,143,183,146, -173,224,208, 59, 17,129, 41,128, 89,188,176,184,118,139, 34,178, 42, 72,172,129, 9, 98,200, 5,216, 53,244,238, 35, 15,143,144, - 21, 95,148, 51, 20, 5,251,243,105,234, 53, 49,205,173,151, 91,151, 8, 51,197,177,251,145, 21, 40, 32,208,168, 56,193, 12,122, -170, 64,126, 49, 24, 52,207, 51,165,247,255,199,110,161,120,162, 37,126,253,235, 99,200,227,247,113,225,250, 5,204,203,235,144, -147, 71,208,250, 4, 74,217, 96,119, 53,148,151, 84, 33, 57, 67,218,203, 69, 78,200, 54,174, 69, 31,125, 12,204,109,222, 64,211, -216,216, 96, 46,142,114,187,211, 39,105,187, 26, 14,212, 64,230, 86,252,205, 39,190,183, 80,116, 84, 69,149, 7,180,112,234, 33, - 46,150,196, 99,207,213,198,179,250,142,181, 44, 10,132,151,174, 93,249, 97, 93, 85,189,131,144, 90,157,104,255,128, 19,227, 73, -244,104,246, 67,191,173, 47, 31,220,195, 87, 15,190,232, 92,207, 54,102,128,233,168,112,141,206, 73, 58,227, 0, 7, 38,139, 3, - 77,129,220, 27, 30,107,236,196,181, 41,227,154,206, 81,216, 55,188,194,115,254,220,182,162,174,235,182,221, 19, 93, 8,157, 85, -216,105,234,181, 97, 51,244, 60,174,135,122, 86,118,253,182,199,155,248,172,233, 92,213,169,221, 23, 13,138,200, 57,145, 6, 58, -243,162,211,198,123,172,255,138,137,206, 42,238,235,255, 70,152,102,193,159,213, 16,124,253,159, 57,139, 12, 55,221, 28,104,111, -172,182, 0, 10,157,108, 65,117,226,123,209, 36, 58,174,125,103, 70,215,150, 24,184,255, 76,240,103, 47, 63,194,127,242,223,252, - 5,110,239,252,125,172, 30,223, 70, 40, 24,117,109, 69,146,221, 99,224,116,177, 2,118,174,226,123, 55, 20,111,190,123, 13, 71, -215,255, 46,100,145,112,154,150, 88, 44, 86,208,106,133, 42,101,156,158, 46,161,171, 21,178,102, 44, 87,181,217,157,230, 26, 66, -130,103,229, 53,220,123,182,143,244,232, 25,248,244, 11, 44, 79, 95,224,100, 33,168,142, 22,224,211, 7,136,101,134,240, 12, 16, -139, 71, 37,159,136,164,246,244,106, 50, 2, 19,147, 5,157,168,100, 47,166,240,132, 45,117,104,221,172,173, 19,162,187, 32,202, -192,183, 32,139, 34,134, 0, 10, 1, 41,231,182, 96,138,116, 54,214,205, 14,159, 36, 27, 75,217,239,237,192, 64,136,236,133,216, -173,155,137, 60,163,222, 65,121, 38, 36,113,182,185, 23,195, 6,159, 12, 80,196, 72,208, 16,109, 50, 55, 59, 57,164,150,149,214, - 8,248,224,132, 44,180, 5,153,217, 38, 79,227,135,185,189,108,110, 34, 91,156,209, 70,185,211,202,132, 8,229,136, 12, 69,102, - 6, 83, 68,244,102, 66,115,215,152, 80,227,119,239,245,145, 84, 93,231,222, 65,172, 13, 1,140,161, 96, 82, 48,219,107, 91, 48, - 99,181, 44, 64,213, 49, 64,117, 59,230,109,231,242,108,158,216,171, 56,199,157, 59,199,120,124,231, 23,160, 34, 98,247,224, 42, -118,203,140, 82, 87, 38, 21, 84, 70,104,160,118,178,138, 78, 62,117,183,187, 36,103, 5, 51,105,219, 4, 68,119,222,163, 70, 30, -233,138,114,234,237,184,133,154,144,180,134,255, 69,174,119,231,102, 70,111,139,121,179,187,111,226,139,225, 25,247, 74,157, 36, -216,175, 86,183,126,109,136,120,170, 40,139, 2,177, 79, 99,106,206, 78,241,221, 66,147, 92,195, 58,117,237,100,141,109,166, 91, -103, 77,157,218,106, 14,138,172, 17,234,244,156, 16, 98,247,162,199,123,211, 62, 65,138,177,221, 26, 83,167,185,222,191,193,206, -124,109,241,252,245,254, 40, 70,214,158,221,206,115, 0, 71, 80, 47, 89,142,166, 87, 27, 3,147, 47, 29, 12,248,195,191,192,152, - 32,215,211, 32,107,215, 96,169,158,163,152,172, 17,223,116, 84, 42, 59,221,249,246, 98,213,253,236, 48,107,121,168,155,159,108, - 32,122, 18, 53, 85, 93,139, 22,154,140,111, 69,103,187, 79, 45,196, 54,218,203,244,164,117, 52, 38,235,141,194,106, 54, 17,239, - 38,175,215,232,169,214,174,221,218, 99,244, 37,107,189,104, 66,157, 10, 75,214,214,179,126,176,104,164, 94, 86,252, 40,173, 73, - 71,122,197, 33,234,208, 89,205,234,218, 59,234,127,147, 21,199, 53,225,122,122,142,127,244,247,222,194,233, 27,255, 16,167,183, -159, 65,242, 9, 64, 37, 10, 38, 44,171, 4, 9, 1, 51,202, 80,169, 81,212, 9, 87,222,250, 62,170,253,155, 72, 71,132, 85, 62, -198,139,133,249, 68, 16, 50, 22,181,128,115, 13, 80,141, 74, 20,146, 5, 17, 25, 33, 2, 39,171,132,197, 23, 79,160,171, 83, 68, - 62,133,204, 74,104, 82, 20, 11, 83,223,172, 56,161,206, 37, 2, 1,165, 15, 57, 73,164,133,183,197,225, 77,226,224,242, 35,119, -232,112,146, 89, 86,139, 49,101,205,168, 83,134, 38,181, 16,150, 96, 50, 53, 33, 43,174,141,133,104,157,106, 32,148, 96, 46,144, -165,106, 53,206, 10,241,203,174, 32, 14, 40, 74,178,166,196,159,211,172,114, 35,152, 11, 80, 22,223,225, 43, 56, 24, 50, 32, 98, -146, 58, 79,137,105, 77, 99, 68, 58, 83, 20,115, 45, 15, 62, 17,215,214, 60,100, 2,229,132,192, 10,167,171, 25, 33,143, 12,244, -101, 16, 10, 39,112, 41,113, 87,144, 26, 54,184,159,160,236, 95,172, 44,228, 27, 95,115, 88,211, 4, 36,168,175, 2, 8,200, 17, -208,218,222,167, 24, 43,188, 89,193,154, 99,155,161, 23, 81, 45, 58, 46,187,172,178, 73, 25,203,222, 4,204, 35,240, 98,119, 6, -156, 30,130,242, 18,202,231,111,103,167,172,140,231, 65, 81, 94, 56,192,243,231, 11, 60,253, 87,255, 7,246,175,191,134, 75, 55, - 94,197,193,225, 1,202,121, 13,206, 43,112,157, 64, 41, 97,166, 0,212, 66,122,200,210,129,252,181,217,234,131, 85,221,215,192, -120, 25,230,234, 23, 81,146,189,139,228,239,177,145,154, 57, 87,221,223,191,182,205,158,186, 79,124, 82,147, 70, 24, 82,196, 29, - 78, 77, 93, 3,145,155,251,199,104,141,222, 92,135,174,241,242,236, 15,130, 34,158, 30, 31,217, 19,162, 31,121,217,201,142, 24, -100,230,242, 61, 3, 11,106,237, 46,125, 15,184,129,120, 70, 24, 74,205, 20, 67, 63,235,241, 70, 81, 39,119,174, 91,201,193, 3, -182,115, 55, 37, 81,159,132, 61, 36, 61,141,206,234,241,238, 99,235, 68,189,173, 94,107,223, 5,124,187, 2,126,227,195,232, 8, - 70,237,225, 29,131,131,158,186,235,222,213, 73, 90, 91,209,158, 69,121, 26,248,183,227,140, 78,103,195,131,245, 37,133,212,211, -169,247,127,105,205,206,100,171,158,125, 64,201, 26,225, 47,211, 70, 49,227,102, 64,135,174,233,131,102, 98,234, 83,104,238,147, -129, 29,190, 78,223, 0, 83, 6, 70,180, 81, 62,176, 65,127, 63,209, 12,109,190, 47, 70, 13,200,100,255,168,231, 58,238,198, 97, - 59,170,253,216, 89, 29, 4,198, 52,141,145,246,201,145, 77,147, 39,195,126,160,223, 61, 42, 1,207,143, 18,254,233, 59, 25,223, -255,247,254, 1, 62,126,241, 18,168,250, 37, 34, 17, 88,106,132, 50, 98,167, 94, 33,167,132,196,115,204,192,184,118,152,145,246, - 94,198, 98, 53, 71,157,158,226,197, 2, 88,157,156, 64,171, 5,132, 25,105,181,194, 42,213,168,181,128,164, 37, 72, 18, 18, 25, -207, 89,115, 5,172, 30,131,164, 70,230,128,144, 92, 58, 21, 2,160,133,153,161, 84, 43,132,130, 33, 5,131, 97,196,182, 36, 22, - 62,162,217,164,223, 45,210,162, 98,250,111, 16,130, 50,148,205, 37, 45, 48, 67, 56,123, 50, 91, 70,134, 21, 89,115,125,244, 9, -152,205, 81, 12, 41,249,245, 35,104, 45, 8,133,145,171,224,103,106,206, 48, 7,178, 88, 26, 42,160, 86,112,115,114, 93, 58,119, - 97, 58,129,129,204,198,108, 71, 54,127,114, 91,209,119,187,104, 17, 69,136,193, 24,211, 73, 16,124,154,180, 29,183,193,195, 77, - 78,186, 37, 47,139, 65,249,158, 86, 70, 33, 27,195, 30,236,170, 20,241,111,156, 39,230,145,177,212,133, 1, 13, 77,194, 91,110, -139, 14,137, 37,227,105, 38,168,154,125, 46, 40,185,174,223, 33,125,113, 15,116,233,216,253,228,102, 58,236,250,251, 6,148, 15, - 66, 40, 1,196, 25,144,139,125, 32, 63,105, 87, 7, 95,127, 82, 26,158, 14,179,157, 29, 64, 51, 86,143,110,227,238,163, 7,224, -253, 27, 40, 14,175, 33,238,238, 33,150, 59,136, 92, 32, 80,133, 8,215,213,179,229,212, 71,223,137,131, 2, 2, 4, 59, 0,246, -189, 41,204, 78,109, 11,161,176, 44, 0,207, 50,208,156,123, 48,188, 15,173,212, 44,238,173,176, 55,200, 64, 99, 23,107,146,181, -108, 46,115,182, 28, 66,240,181, 75,114,200,156,180,161,148,187,143, 60, 53, 5, 95,113,114,122,130,248,210, 75, 47,225,248,248, -196,161,117, 26,144,207,122, 36,214, 65, 79,174,189, 73,185, 63, 13,245,127,167, 97, 81, 82,175,224,201,196, 94,123, 19,137,110, -147,223, 47,141, 38,212, 53, 68, 90,135,214,182, 4, 29,189,135,126, 86,252,111, 16,119, 73,219,183,227,180, 17,143, 56, 31, 12, - 63, 32,152,235,246,215, 49,197,174,166, 65,241, 28,221,218,132, 54,144, 96, 51, 62, 79, 95,139,148,194,189,151, 42,235,139,241, - 45,184,216, 54,136,121,186, 72,210, 70,168,190,185,247,134, 77, 38,157,177, 42, 56,251, 51,162, 45,171,160,142,177,190,246,105, - 79,134,226,208, 25,239, 67,207,127, 63,142,134,108, 58,243, 90,247, 17, 7, 26,166, 39,110, 33,167,110,138, 45,222,246, 28,167, - 9,248,238,197, 35,252,253, 63,255, 99, 44,110,254, 93,240,189,167,216,157, 7, 4, 42, 28, 98, 44,177,207,140,186, 94,161,202, - 1, 23,119, 8,179, 43, 47,227, 56, 31, 32, 85,199,168, 4,208,106,137,168, 21,168, 96,172,132, 81, 6, 66,102, 70, 94, 38,148, -129, 64,243,153,219, 55, 51, 80, 42, 32,115, 72,142, 8,129, 17,162,249,160, 71,142, 40, 96, 86,174,169,180, 9, 48,112, 64, 17, - 24,202, 1,203, 42, 33,186,223,124,118,195, 31,114,253,189,128,157, 84, 38, 72, 82,162, 78,166, 99, 46,102, 51,115,152,115, 8, -181, 74, 10,145,100,187,112, 6,152, 13,134,237,252,240,103,144, 92,155, 38, 57, 70,247,135,177,199, 21,145,246,188,148, 44,200, - 0,230, 89, 77,159,237,210,178, 2, 22,217, 90, 83, 68,204,190,139,206, 25,129,157,160, 40,141,127,131,128, 3,129,185,240,221, -170, 77,249, 51, 16,114,118,163, 26, 82, 79,246,130,229,151,155,129, 60,130,102, 16, 11, 40,148, 72,106, 50, 42,242,166,192,108, -120,221,112,198, 17,133, 54, 23,168,225, 28,180, 8,156,231,139, 39, 69,148, 0, 14, 37,196,167, 89,101,194, 12, 1, 57, 41, 84, -106,219,187,171,192,178,107, 76,235,157, 52,155,156,207,165, 94, 12, 96,197,132,101,125, 17,124,124, 2,224,180,211,116,235,121, -166,116, 61,227,142,189, 96,141, 81,125, 4, 28,157, 64,143,119,161,197, 62,114,220, 65,142, 17,171, 16,109, 61, 17,187, 51,141, -160,110,159, 11, 20,100, 69,253,229, 25,225, 96, 22, 33, 28,145, 41, 32,105, 68,149, 9, 85,149,144,234, 57,144, 42, 16, 58, 14, - 65,243,189, 85,209,150,104, 40,232,165,191,137, 66,145, 91,152,116, 48, 48,252,127, 99,130, 92, 25, 3, 89,227, 0, 91, 8, 12, - 57,109,238, 63,116,213, 62, 23, 23, 55, 3, 0, 74, 93, 38,154, 21, 95, 60,149, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130, +137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 1,245, 0, 0, 1, + 26, 8, 6, 0, 0, 0, 8, 90,206, 70, 0, 0, 10, 79,105, 67, 67, 80, 80,104,111,116,111,115,104,111,112, 32, 73, 67, 67, 32, +112,114,111,102,105,108,101, 0, 0,120,218,157, 83,103, 84, 83,233, 22, 61,247,222,244, 66, 75,136,128,148, 75,111, 82, 21, 8, + 32, 82, 66,139,128, 20,145, 38, 42, 33, 9, 16, 74,136, 33,161,217, 21, 81,193, 17, 69, 69, 4, 27,200,160,136, 3,142,142,128, +140, 21, 81, 44, 12,138, 10,216, 7,228, 33,162,142,131,163,136,138,202,251,225,123,163,107,214,188,247,230,205,254,181,215, 62, +231,172,243,157,179,207, 7,192, 8, 12,150, 72, 51, 81, 53,128, 12,169, 66, 30, 17,224,131,199,196,198,225,228, 46, 64,129, 10, + 36,112, 0, 16, 8,179,100, 33,115,253, 35, 1, 0,248,126, 60, 60, 43, 34,192, 7,190, 0, 1,120,211, 11, 8, 0,192, 77,155, +192, 48, 28,135,255, 15,234, 66,153, 92, 1,128,132, 1,192,116,145, 56, 75, 8,128, 20, 0, 64,122,142, 66,166, 0, 64, 70, 1, +128,157,152, 38, 83, 0,160, 4, 0, 96,203, 99, 98,227, 0, 80, 45, 0, 96, 39,127,230,211, 0,128,157,248,153,123, 1, 0, 91, +148, 33, 21, 1,160,145, 0, 32, 19,101,136, 68, 0,104, 59, 0,172,207, 86,138, 69, 0, 88, 48, 0, 20,102, 75,196, 57, 0,216, + 45, 0, 48, 73, 87,102, 72, 0,176,183, 0,192,206, 16, 11,178, 0, 8, 12, 0, 48, 81,136,133, 41, 0, 4,123, 0, 96,200, 35, + 35,120, 0,132,153, 0, 20, 70,242, 87, 60,241, 43,174, 16,231, 42, 0, 0,120,153,178, 60,185, 36, 57, 69,129, 91, 8, 45,113, + 7, 87, 87, 46, 30, 40,206, 73, 23, 43, 20, 54, 97, 2, 97,154, 64, 46,194,121,153, 25, 50,129, 52, 15,224,243,204, 0, 0,160, +145, 21, 17,224,131,243,253,120,206, 14,174,206,206, 54,142,182, 14, 95, 45,234,191, 6,255, 34, 98, 98,227,254,229,207,171,112, + 64, 0, 0,225,116,126,209,254, 44, 47,179, 26,128, 59, 6,128,109,254,162, 37,238, 4,104, 94, 11,160,117,247,139,102,178, 15, + 64,181, 0,160,233,218, 87,243,112,248,126, 60, 60, 69,161,144,185,217,217,229,228,228,216, 74,196, 66, 91, 97,202, 87,125,254, +103,194, 95,192, 87,253,108,249,126, 60,252,247,245,224,190,226, 36,129, 50, 93,129, 71, 4,248,224,194,204,244, 76,165, 28,207, +146, 9,132, 98,220,230,143, 71,252,183, 11,255,252, 29,211, 34,196, 73, 98,185, 88, 42, 20,227, 81, 18,113,142, 68,154,140,243, + 50,165, 34,137, 66,146, 41,197, 37,210,255,100,226,223, 44,251, 3, 62,223, 53, 0,176,106, 62, 1,123,145, 45,168, 93, 99, 3, +246, 75, 39, 16, 88,116,192,226,247, 0, 0,242,187,111,193,212, 40, 8, 3,128,104,131,225,207,119,255,239, 63,253, 71,160, 37, + 0,128,102, 73,146,113, 0, 0, 94, 68, 36, 46, 84,202,179, 63,199, 8, 0, 0, 68,160,129, 42,176, 65, 27,244,193, 24, 44,192, + 6, 28,193, 5,220,193, 11,252, 96, 54,132, 66, 36,196,194, 66, 16, 66, 10,100,128, 28,114, 96, 41,172,130, 66, 40,134,205,176, + 29, 42, 96, 47,212, 64, 29, 52,192, 81,104,134,147,112, 14, 46,194, 85,184, 14, 61,112, 15,250, 97, 8,158,193, 40,188,129, 9, + 4, 65,200, 8, 19, 97, 33,218,136, 1, 98,138, 88, 35,142, 8, 23,153,133,248, 33,193, 72, 4, 18,139, 36, 32,201,136, 20, 81, + 34, 75,145, 53, 72, 49, 82,138, 84, 32, 85, 72, 29,242, 61,114, 2, 57,135, 92, 70,186,145, 59,200, 0, 50,130,252,134,188, 71, + 49,148,129,178, 81, 61,212, 12,181, 67,185,168, 55, 26,132, 70,162, 11,208,100,116, 49,154,143, 22,160,155,208,114,180, 26, 61, +140, 54,161,231,208,171,104, 15,218,143, 62, 67,199, 48,192,232, 24, 7, 51,196,108, 48, 46,198,195, 66,177, 56, 44, 9,147, 99, +203,177, 34,172, 12,171,198, 26,176, 86,172, 3,187,137,245, 99,207,177,119, 4, 18,129, 69,192, 9, 54, 4,119, 66, 32, 97, 30, + 65, 72, 88, 76, 88, 78,216, 72,168, 32, 28, 36, 52, 17,218, 9, 55, 9, 3,132, 81,194, 39, 34,147,168, 75,180, 38,186, 17,249, +196, 24, 98, 50, 49,135, 88, 72, 44, 35,214, 18,143, 19, 47, 16,123,136, 67,196, 55, 36, 18,137, 67, 50, 39,185,144, 2, 73,177, +164, 84,210, 18,210, 70,210,110, 82, 35,233, 44,169,155, 52, 72, 26, 35,147,201,218,100,107,178, 7, 57,148, 44, 32, 43,200,133, +228,157,228,195,228, 51,228, 27,228, 33,242, 91, 10,157, 98, 64,113,164,248, 83,226, 40, 82,202,106, 74, 25,229, 16,229, 52,229, + 6,101,152, 50, 65, 85,163,154, 82,221,168,161, 84, 17, 53,143, 90, 66,173,161,182, 82,175, 81,135,168, 19, 52,117,154, 57,205, +131, 22, 73, 75,165,173,162,149,211, 26,104, 23,104,247,105,175,232,116,186, 17,221,149, 30, 78,151,208, 87,210,203,233, 71,232, +151,232, 3,244,119, 12, 13,134, 21,131,199,136,103, 40, 25,155, 24, 7, 24,103, 25,119, 24,175,152, 76,166, 25,211,139, 25,199, + 84, 48, 55, 49,235,152,231,153, 15,153,111, 85, 88, 42,182, 42,124, 21,145,202, 10,149, 74,149, 38,149, 27, 42, 47, 84,169,170, +166,170,222,170, 11, 85,243, 85,203, 84,143,169, 94, 83,125,174, 70, 85, 51, 83,227,169, 9,212,150,171, 85,170,157, 80,235, 83, + 27, 83,103,169, 59,168,135,170,103,168,111, 84, 63,164,126, 89,253,137, 6, 89,195, 76,195, 79, 67,164, 81,160,177, 95,227,188, +198, 32, 11, 99, 25,179,120, 44, 33,107, 13,171,134,117,129, 53,196, 38,177,205,217,124,118, 42,187,152,253, 29,187,139, 61,170, +169,161, 57, 67, 51, 74, 51, 87,179, 82,243,148,102, 63, 7,227,152,113,248,156,116, 78, 9,231, 40,167,151,243,126,138,222, 20, +239, 41,226, 41, 27,166, 52, 76,185, 49,101, 92,107,170,150,151,150, 88,171, 72,171, 81,171, 71,235,189, 54,174,237,167,157,166, +189, 69,187, 89,251,129, 14, 65,199, 74, 39, 92, 39, 71,103,143,206, 5,157,231, 83,217, 83,221,167, 10,167, 22, 77, 61, 58,245, +174, 46,170,107,165, 27,161,187, 68,119,191,110,167,238,152,158,190, 94,128,158, 76,111,167,222,121,189,231,250, 28,125, 47,253, + 84,253,109,250,167,245, 71, 12, 88, 6,179, 12, 36, 6,219, 12,206, 24, 60,197, 53,113,111, 60, 29, 47,199,219,241, 81, 67, 93, +195, 64, 67,165, 97,149, 97,151,225,132,145,185,209, 60,163,213, 70,141, 70, 15,140,105,198, 92,227, 36,227,109,198,109,198,163, + 38, 6, 38, 33, 38, 75, 77,234, 77,238,154, 82, 77,185,166, 41,166, 59, 76, 59, 76,199,205,204,205,162,205,214,153, 53,155, 61, + 49,215, 50,231,155,231,155,215,155,223,183, 96, 90,120, 90, 44,182,168,182,184,101, 73,178,228, 90,166, 89,238,182,188,110,133, + 90, 57, 89,165, 88, 85, 90, 93,179, 70,173,157,173, 37,214,187,173,187,167, 17,167,185, 78,147, 78,171,158,214,103,195,176,241, +182,201,182,169,183, 25,176,229,216, 6,219,174,182,109,182,125, 97,103, 98, 23,103,183,197,174,195,238,147,189,147,125,186,125, +141,253, 61, 7, 13,135,217, 14,171, 29, 90, 29,126,115,180,114, 20, 58, 86, 58,222,154,206,156,238, 63,125,197,244,150,233, 47, +103, 88,207, 16,207,216, 51,227,182, 19,203, 41,196,105,157, 83,155,211, 71,103, 23,103,185,115,131,243,136,139,137, 75,130,203, + 46,151, 62, 46,155, 27,198,221,200,189,228, 74,116,245,113, 93,225,122,210,245,157,155,179,155,194,237,168,219,175,238, 54,238, +105,238,135,220,159,204, 52,159, 41,158, 89, 51,115,208,195,200, 67,224, 81,229,209, 63, 11,159,149, 48,107,223,172,126, 79, 67, + 79,129,103,181,231, 35, 47, 99, 47,145, 87,173,215,176,183,165,119,170,247, 97,239, 23, 62,246, 62,114,159,227, 62,227, 60, 55, +222, 50,222, 89, 95,204, 55,192,183,200,183,203, 79,195,111,158, 95,133,223, 67,127, 35,255,100,255,122,255,209, 0,167,128, 37, + 1,103, 3,137,129, 65,129, 91, 2,251,248,122,124, 33,191,142, 63, 58,219,101,246,178,217,237, 65,140,160,185, 65, 21, 65,143, +130,173,130,229,193,173, 33,104,200,236,144,173, 33,247,231,152,206,145,206,105, 14,133, 80,126,232,214,208, 7, 97,230, 97,139, +195,126, 12, 39,133,135,133, 87,134, 63,142,112,136, 88, 26,209, 49,151, 53,119,209,220, 67,115,223, 68,250, 68,150, 68,222,155, +103, 49, 79, 57,175, 45, 74, 53, 42, 62,170, 46,106, 60,218, 55,186, 52,186, 63,198, 46,102, 89,204,213, 88,157, 88, 73,108, 75, + 28, 57, 46, 42,174, 54,110,108,190,223,252,237,243,135,226,157,226, 11,227,123, 23,152, 47,200, 93,112,121,161,206,194,244,133, +167, 22,169, 46, 18, 44, 58,150, 64, 76,136, 78, 56,148,240, 65, 16, 42,168, 22,140, 37,242, 19,119, 37,142, 10,121,194, 29,194, +103, 34, 47,209, 54,209,136,216, 67, 92, 42, 30, 78,242, 72, 42, 77,122,146,236,145,188, 53,121, 36,197, 51,165, 44,229,185,132, + 39,169,144,188, 76, 13, 76,221,155, 58,158, 22,154,118, 32,109, 50, 61, 58,189, 49,131,146,145,144,113, 66,170, 33, 77,147,182, +103,234,103,230,102,118,203,172,101,133,178,254,197,110,139,183, 47, 30,149, 7,201,107,179,144,172, 5, 89, 45, 10,182, 66,166, +232, 84, 90, 40,215, 42, 7,178,103,101, 87,102,191,205,137,202, 57,150,171,158, 43,205,237,204,179,202,219,144, 55,156,239,159, +255,237, 18,194, 18,225,146,182,165,134, 75, 87, 45, 29, 88,230,189,172,106, 57,178, 60,113,121,219, 10,227, 21, 5, 43,134, 86, + 6,172, 60,184,138,182, 42,109,213, 79,171,237, 87,151,174,126,189, 38,122, 77,107,129, 94,193,202,130,193,181, 1,107,235, 11, + 85, 10,229,133,125,235,220,215,237, 93, 79, 88, 47, 89,223,181, 97,250,134,157, 27, 62, 21,137,138,174, 20,219, 23,151, 21,127, +216, 40,220,120,229, 27,135,111,202,191,153,220,148,180,169,171,196,185,100,207,102,210,102,233,230,222, 45,158, 91, 14,150,170, +151,230,151, 14,110, 13,217,218,180, 13,223, 86,180,237,245,246, 69,219, 47,151,205, 40,219,187,131,182, 67,185,163,191, 60,184, +188,101,167,201,206,205, 59, 63, 84,164, 84,244, 84,250, 84, 54,238,210,221,181, 97,215,248,110,209,238, 27,123,188,246, 52,236, +213,219, 91,188,247,253, 62,201,190,219, 85, 1, 85, 77,213,102,213,101,251, 73,251,179,247, 63,174,137,170,233,248,150,251,109, + 93,173, 78,109,113,237,199, 3,210, 3,253, 7, 35, 14,182,215,185,212,213, 29,210, 61, 84, 82,143,214, 43,235, 71, 14,199, 31, +190,254,157,239,119, 45, 13, 54, 13, 85,141,156,198,226, 35,112, 68,121,228,233,247, 9,223,247, 30, 13, 58,218,118,140,123,172, +225, 7,211, 31,118, 29,103, 29, 47,106, 66,154,242,154, 70,155, 83,154,251, 91, 98, 91,186, 79,204, 62,209,214,234,222,122,252, + 71,219, 31, 15,156, 52, 60, 89,121, 74,243, 84,201,105,218,233,130,211,147,103,242,207,140,157,149,157,125,126, 46,249,220, 96, +219,162,182,123,231, 99,206,223,106, 15,111,239,186, 16,116,225,210, 69,255,139,231, 59,188, 59,206, 92,242,184,116,242,178,219, +229, 19, 87,184, 87,154,175, 58, 95,109,234,116,234, 60,254,147,211, 79,199,187,156,187,154,174,185, 92,107,185,238,122,189,181, +123,102,247,233, 27,158, 55,206,221,244,189,121,241, 22,255,214,213,158, 57, 61,221,189,243,122,111,247,197,247,245,223, 22,221, +126,114, 39,253,206,203,187,217,119, 39,238,173,188, 79,188, 95,244, 64,237, 65,217, 67,221,135,213, 63, 91,254,220,216,239,220, +127,106,192,119,160,243,209,220, 71,247, 6,133,131,207,254,145,245,143, 15, 67, 5,143,153,143,203,134, 13,134,235,158, 56, 62, + 57, 57,226, 63,114,253,233,252,167, 67,207,100,207, 38,158, 23,254,162,254,203,174, 23, 22, 47,126,248,213,235,215,206,209,152, +209,161,151,242,151,147,191,109,124,165,253,234,192,235, 25,175,219,198,194,198, 30,190,201,120, 51, 49, 94,244, 86,251,237,193, +119,220,119, 29,239,163,223, 15, 79,228,124, 32,127, 40,255,104,249,177,245, 83,208,167,251,147, 25,147,147,255, 4, 3,152,243, +252, 99, 51, 45,219, 0, 0, 0, 6, 98, 75, 71, 68, 0,255, 0,255, 0,255,160,189,167,147, 0, 0, 0, 9,112, 72, 89,115, 0, + 0, 11, 19, 0, 0, 11, 19, 1, 0,154,156, 24, 0, 0, 0, 7,116, 73, 77, 69, 7,219, 12, 13, 17, 26, 29, 77,120, 44,213, 0, + 0, 32, 0, 73, 68, 65, 84,120,218,236,189,121,188,109, 89, 85,223,251, 29,115,206,213,236,230,180,183,173, 14,170,138, 70, 16, +165,171, 2, 84, 8, 2, 94, 94,130,109, 52, 84,229, 35, 79, 77, 66,158, 85, 81,223, 67,226, 83, 11, 19, 99, 72,158,137,162,143, + 72, 64,125, 84,105,162,190,232,203,123, 20, 24,141,138, 13, 85, 98, 20,108,128,139, 2, 82,101, 81,197,173,134,186,213,220,123, + 79,115,207, 57,187, 91,107,205, 57,223, 31,115,174,181,215, 57,220,170,219, 80, 13,133,107,240, 41,238, 57,251,236,189,246,106, +230, 26,191, 49,126,227, 55,198,130,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235, +172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179, +206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58, 59,119,147, 39,227, 75,253,111,188,241, + 91, 41,253,155, 80,164, 40,255,110,254,254, 47,255,170, 8,190,187, 28,157,117,214, 89,103,157,117,246, 20, 2,117,255,155,223, +245,106,182, 70,127,200,230,200,179,176, 4,251, 87,133,170,248,127, 40,182,174,151,107,111,222,233, 46, 73,103,157,117,214, 89, +103,157, 93,152,169, 39,252, 27, 31, 56, 54,224,193,123,224,228,241, 9,247,222, 49,230,158, 99, 99,188,126, 3,249,202, 39,253, +239,124,247,179,187, 75,210, 89,103,157,117,214, 89,103, 79, 21, 80,255,103, 31,250, 29,122,234, 71, 24,166,125, 4,195,201, 7, + 28,199,110, 31, 51, 45, 47,199, 37,183,251,223,249,238,127,208, 93,150,206, 58,235,172,179,206, 58, 59,127,147, 39,235,139,253, +187,190,234,117, 76,171,247, 50,243, 25,182,154,144,230,138,167, 61,211,176,186, 47,197,206,222,129, 74,223, 34, 95,255,174, 89, +119,137, 58,235,172,179,206, 58,235,236,139, 28,212, 1,252,141, 87, 61,131,145,126, 63, 83,251,108, 74, 59, 70,107,184,248, 10, +197,225,139,115, 92,249, 9,180,255,251,242,186,119,223,243, 84, 57,153,222,251,171,128,149,248,235, 49, 17, 57,246,165,188,120, +254,182, 29,111,103,157,117,214, 89, 7,234,103, 3,134,159,126,254,128, 36,249, 85,198,254,155, 41,253, 20, 28, 28,186, 76,184, +232,105, 61,180, 20, 36,213, 55,202,223,189,241, 3,143, 49, 24, 93, 9, 92,121,142,111,223, 16,145,163,231,184,221, 15, 0, 71, +226,175,111, 17,145,183,125,137,131,250,223,170,227,125,140,206,153,136, 72,215,233,209, 89,103,157, 61, 46,102,190, 96, 39,245, +193, 87, 25, 62,151,102,103,252,227,118, 33, 44,164, 30, 14,193, 33,224,244,116, 30, 68,100, 11, 66, 50, 19, 88, 5,191,246,102, +238,187, 47, 99,199,253, 79, 56, 10, 54, 78, 65,127, 56,101,249, 64,130, 77,255,192,255,222,255,250, 99,100,127,253, 19,242,234, + 63,170, 30,163,227,190, 6,248,201,243,112,196, 0, 55, 3,183,136,200, 77,221,178,249,146, 0, 87, 37, 34,174,245,251, 37,192, +203,128, 23, 1,207, 3,174, 0, 46, 1, 22, 9,218,147, 77,224, 94,224,207,129,255, 42, 34,127,122, 65, 81,244, 89, 0,221,123, +255,194,184, 62,143,196,239, 63, 8, 20,192, 3,192,167,129, 15, 1,191, 45, 34,119, 60,194,231, 15, 2, 95, 1,124,101,235,223, +231, 1,195,214, 62, 72,183, 2, 58,235,172,203,212,119, 59,143,183,190, 85,177,120,235,117, 88,249,151,136,236, 71,107,135, 8, + 40, 21,254, 19, 1,173, 5,165, 64,199,223,149, 2, 21, 95, 19, 1,169,223,171, 44, 90,207,240, 50, 64, 90,239,213, 26, 28,138, + 60, 77, 16,251, 63,232,113,141,188,242, 93, 39, 31, 3,135,126,195,249,128,250, 30,187, 5,184, 86, 68, 54,186, 76,253, 75,231, +120,125,140,220,206,195,254, 24,120,163,136,124,246, 49,250,254,139,129,159, 1,174, 61,199,224, 64, 46,244, 56, 58, 80,239,172, +179, 46, 83,255,124, 91,190,245,251,113,234, 63, 80,249, 2, 45, 30,208,136,128, 39,252, 23,126, 22,148, 7,231, 65, 73,248,131, +114,160, 37,188, 65,121, 80, 30,196,107,156, 77,208,218, 71,175, 19,183,227, 65, 41, 71,105,103,104,245,181,140,253,223,248, 91, +191,239,181,242,117, 63,247,241,199,248, 60,220,242, 40,127, 59,114,134,223, 63,224,189,127,237,153,128,189,179,191, 53,246, 74, +224,163,222,251,215,136,200, 95,125,129,128,254, 60,224, 15, 99, 86,222, 89,103,157,117,246,196,130,186,127, 43, 10,231,191,135, +113,233,177,101,137,117, 32, 34, 33,239,151,144,255, 71,220, 6, 97, 92,218, 62, 90,161,246, 29, 4, 99,192,122, 36,100,232, 1, +228, 69,129, 85, 1,224,149,155,103,234,162,200,242,100,134, 0,150, 2,203, 10, 36, 71,253,173,111,250, 30, 94,243, 31,111,124, +172,106,147, 34,242,218,179, 56,221,154,174,175,235,240, 87, 1,215, 1, 93, 13,249, 75,207, 70,192,239, 1, 31, 0,142, 18, 40, +247, 77, 2,125,253, 34,224,159, 2,111,136,239, 93, 1,254,187,247,254,185, 34, 50,186, 64, 64,127, 6,240, 65,224, 64,124,169, + 0,126, 17,248,117, 2,221,126, 10,200, 9, 84,252,151, 3, 47, 7,190,241, 81, 54,121, 42,126,238,211,192,109,173,159, 79,116, +151,182,179,206,190,244,237,194,233,247,119,190,252,122,182,167,239,166,178, 17,188, 91, 91, 19,153,255, 92, 89, 55, 46, 80,178, +176,130, 44, 44,204,105,119,173, 17,165, 67, 6, 47,177, 84,174, 36, 80,238, 74,133,141, 41, 67,150,245,102,212,239, 67, 11, 34, +138,220, 24,112,239,101,188,244,143,228,155,223, 58,190, 0, 71,186,139,126, 63, 23, 58, 50,138,235, 62,198, 92,237,125, 84, 68, +174,222,243,158,142,126,127,234,236,123, 42, 34, 69,235,247,143, 0, 63, 7,188, 71, 68, 38,103,249,236, 63, 0,254,223, 86, 80, +124,131,136,252,212, 5,236,131, 0,127, 20,179,126,128,187,128,175, 23,145, 59, 31,135,227,245,231,179,222, 59,235,172,179,191, + 69,153, 58,128,188,233,195, 55,250,255,240,226, 91,209,234,153, 56, 37,136,115,243,191,170,248,179,157,145, 14,190,122, 54,205, +127,178,159,244,112,206, 5,208, 22,192, 57,124,177,131,104, 65, 93,246, 2,212,129,103, 34,139,135,145,124, 17,170, 25,110,116, + 18,191,253, 32,179,147,159,201,152,237,128,238,129, 88, 80, 26,217,113,164,131,236,245, 12,183,174,240,191,255,131, 95, 43,127, +247,255, 28, 61,222, 39, 74, 68,142,121,239,111,142, 25,122,157,173, 63, 22,206,118,101,207,182,142, 62, 22,180,254, 30,133,255, + 5,181,155, 61, 22,219,120, 34,142,119,207,126,158,211,246,218,128, 30,127,127,233,121,172,133,247,121,239,127, 26,248,145,248, +210,183, 2, 63,117, 1,187,254,143, 91,128,190, 14,188, 90, 68,238,239,220, 82,103,157,117,246,132,131, 58,128,252,192,199,239, +138,217,197,153,157,237,175,124,243,243,153, 86,223, 49,212,158,170,174,171, 79,167,248,217, 8,236, 8,253,236,191,131,185,250, + 13,232, 43,190,234,243, 62, 91,143,186,243,235,247, 80,125,246, 86,236,189, 31, 70,116, 10,222,227, 5,138,113, 65,218, 79,175, + 66,251,247,251,143, 93,119, 68,174,190,169,124, 2,206,215, 99,210,135, 29,129,237, 58,130,202,249,170, 51,252,253, 24,112, 19, +112,211, 35, 1,148,247,254, 39, 91,159,189, 89, 68,110,106,109,247, 58,246,180,236,197,109,190,237, 92,212,251,222,251,235,128, + 27, 30, 97, 27,143,186, 95,143,199,241, 62,202,177,222, 16,183,187,210,122,251, 45,192,107,159,128,181,240, 75, 45, 80,191,208, +241,198,111,106,253,124, 67, 7,232,157,117,214,217,147, 10,234,143,234,200,255,243,107,175,103,103,250,110, 42,177,149,245,248, +114,134,159,142,161,154,129,241,100, 95,255, 35,152,171,191,253,236,129,195,234,229, 36,171,255, 20,117,248,249, 84, 31,253, 69, + 80, 54, 64,190, 8, 20,174,160,159,188,146,141,254,191, 6,126,244, 9, 56, 95,109,240,184,160,236,210,123,127, 4,120,207,158, +109,237,181, 43, 9,229,129,235,188,247,215, 62, 66,159,252, 85,204,169,239, 91,226, 32,152, 27, 31,133, 65,184, 18,184,209,123, +127,149,136, 92,255, 40,224,123, 99, 4,223, 71,219,175,107,188,247,175,125, 2,143,247, 76,199,250,129,179,108,243,241,182,251, + 90, 63, 15, 47, 96, 29, 92, 13,188, 48,254,186, 6,252,151,206, 29,117,214, 89,103, 95,116,160,238,111,252,198, 62,110,242, 46, + 70,254,141, 88,153,225, 75,235,119,118,250, 84, 37,136, 71, 18,200,190,245, 39,208, 95,241, 13,205,103,182, 38, 51,126,255,175, +238,225,247, 63,113, 15,235, 59, 19, 18, 45, 60,247,226, 85,190,249,234,103,242,226,103, 92, 4,128,190,236, 37, 72,186, 64,249, +161,183, 67,106, 8, 74,122, 96, 82, 86, 36,230, 95,250, 15,254,243, 95,150, 87,255,204, 93,143, 91,144, 18, 0,239,154, 61, 25, +225,249,110,227,154, 8,112,109, 59, 26,183, 85, 7, 9,237,108,246, 74,230, 74,251,163,103, 9, 54,222,211,202,172,111,142,219, +173, 1,177,189,223,215,121,239,143, 61, 66,253,251, 39,207, 0,232,237,109,213,251,118,213, 25,142,227,137, 58,222,149, 61,128, +190,209,218,191, 43,159,192,123,231,146,214,207, 23,210,102,249,154,214,207,255, 77, 68,186,145,200,157,117,214,217, 23, 23,168, +251,119,191,242, 89,204,118,222, 79,165,158,137,103,130, 29,123,202, 25, 56, 7, 70, 35,213,136,228,229,255,203, 46, 64,255,243, + 59, 31,228,135,126,237, 79, 56,118,106,155, 60, 75, 72,140, 66,121,248,196,231,214,121,239,159,253, 13,223,116,245, 51,248, 87, +215,252, 29,250, 89,130, 58,244, 28,204, 87, 92, 75,245,151,191, 4, 11,135,106,133,189,195, 11, 84,250, 63, 2,223,240, 56, 2, +250,141,123, 64,227,166,243,220,198,149,113, 27,181, 29, 3,174, 23,145,189,193,193,219,246,100,183,245,119, 95,253, 40,155,191, +161, 5,192,215,239,165,176,227,119,191,167, 5,158, 55,120,239,119, 81,221,145,114,191,110, 15,248, 94,187,167,142,222,222,183, + 35, 79,210,241,222,208,218,222, 91, 68,228,230, 51, 92,171, 39,194,190,173,245,243,199, 46,224,243,237, 26,254,159,196,125,223, + 79,168,179,191, 62,174,181, 69, 66,173,253,179, 4, 65,221, 47,117,163,120, 59,235,172,179, 39, 4,212,253,207,189,226,239, 49, +241,191, 65,133, 65,217, 49, 85, 1,182,138,138,118, 1,111,145,253,151, 97, 94,250, 93,205,103,238,124,104,131,239,250,185,223, +231,196,164,162, 63,232, 81,106, 77,146,104, 82, 45,104,159, 34,182,226,125,127,113, 23, 90, 41,126,252, 13,175, 10, 25,251, 51, + 95,141,189,227,247,192,238, 64, 50, 12,192,110,109,133,150, 35,254,143,223,124,145,188,242, 29, 15, 94, 0,104,223,240, 40,127, + 62,114, 6, 0, 59, 19, 56,157,205,110,220,147, 93, 94,253, 72,117,105, 17,185, 37,210,219,117, 70,122,149,247,254,186,179,212, +195,111, 17,145,107, 31, 97,123,199,188,247,111,137,219,171,179,221, 35, 49, 8,216, 11,150, 53, 96,158,177, 15,191,181,111, 31, +123, 18,143,247,216, 35,109,239,137,152, 29,224,189, 31, 2,111,110,189,244,155, 23,176,153, 47,111,253,252, 73,239,253,183, 16, + 90,217,246,239,121,223, 69,241,191, 87, 0, 63,226,189,127, 55,240,191,119,153,125,103,157,117,246,184,128,186,191,241,170,132, +105,239,199,153,249, 31,166,146, 25,186,154, 97, 3,213, 78, 82,203,221, 4, 95, 22,152,103,191, 18, 25,206,125,214, 91,126,237, +195,220,121,255,105, 88, 26,114,122,167, 2,177,104,129,190, 22,246, 15, 12, 43, 61,195,210,210,144,223,248,200,157,188,234,121, + 79,231,200, 11,174, 0,109,208, 87,190,146,234,175,126, 5, 6,139,224, 29, 40,113, 36, 58,165,116,223, 2,188,251, 2, 14,227, + 92,167,203,221, 68, 16,106,157, 23,160,199, 26,112, 59, 48,120,203,217,192, 71, 68,142,122,239,111,106,129,237,145,179,176, 3, +215,159,101,123,183,120,239,143,178,155,234,174,247,239,154, 61, 44,196,219, 30,109,255, 90,251,118,221,147,116,188,111,123,146, + 7,255,252, 28,115,250,253,179,192,175, 93,192, 54, 86,247,100,237,239,230,236, 45,166, 26,248, 62,224,133,222,251, 35, 34, 50, +237, 92, 88,103,157,117,214,182, 47,232,121,234,254,157, 47,187,148,237,228,195, 76,237, 15, 83,250, 49, 98, 45,182, 12,174,199, + 8,104, 17,140,136,104,133, 24, 65, 93,252, 21,205,103,239,126,120,147,223,253,171,251,160,223,155,247,166,107,141, 69,177, 61, +179,220,125,114,204,177, 19, 99, 74, 47, 56,173,185,245, 83,247,206, 1, 96,255, 51,241,147, 45,160,138, 20,188,135,202,129,227, +165,143,243,249,186, 38,102,145,231, 75,241,182, 1,110,227, 60,230,199,223,178,231,187, 31,201,142,158, 35, 45,123,244, 17,246, +233,200, 30,128, 61,151,253,187,249, 73, 58,222, 99, 79,230,252,125,239,253, 63, 7,106,186,201, 3,215,237,109,143, 59, 71, 91, +110,253,252,142, 22,160,223, 10,124, 11,225,105, 9,105,252,247, 91, 8, 19,231,106,123, 57,240,179,157,251,234,172,179,206, 30, +179, 76,221,191,235,171, 94,206,216,222, 74,169, 18,140,140,209, 46,100,205, 30,161, 18,193,136, 71, 75,156, 14,103, 17,147,162, + 86,158,214,124,254,158,147, 91, 76,198, 37, 44,102, 52, 35,232,234,241, 24, 74,129,247,108,238,148,148, 69,197,165, 75,134,237, +233,188, 99, 77, 22, 14,133,164,101, 54,130,222, 66,152, 63, 91, 86, 96,120,129,247,111, 85, 34,111,117,231,121, 56,111,121,148, +191, 93, 25, 65,234, 74, 2, 53,220,168,191,207, 35, 91, 60,242, 8,192,202, 57,100,215,187, 50,224, 71, 16,144,157, 43,115,112, +236, 81,142,241,188,182,181,119,223,158,192,227, 61,250,100,221, 44,222,251,255, 25,120,123,235,165,127, 43, 34,127,248, 24, 4, +212,189,214,246,254,245,158,247,157, 0,254, 59, 97,114,221,191, 5,254, 85,124,253,159,120,239,223, 33, 34,127,221,185,177,206, + 58,235,236,130, 65,221,191,231, 26,205,189,119,255, 0,219,213, 79, 97,165, 32, 99,138,114,130,245,158,210, 9, 90, 82, 18, 54, +176,126,128,209, 33,107,119, 49, 13,241,243,135,172, 29, 92,234,163,211, 4,235, 0, 47, 97,206,187,143,201,143,143,175,105,197, +104, 92,114,239,116, 74,246,130,214,174,122, 11,190,132,106, 10,106, 17,188, 21,176, 30,235, 47,230,119,215, 18,224,188,234,141, +231, 50, 9, 45,214,221,111,136,192, 94,183, 84, 93,125,142, 95,209,110, 51,187, 50, 78, 98,187, 16,123, 36,134,224, 11,165,162, + 47, 8,132,227,123,175,122,130,143,247, 73, 1,117,239,253, 63, 4,126,165,149, 81,223, 40, 34,111,253, 2, 54,185,205,110, 10, +254, 3,103, 0,244,189,235,244,199,188,247, 95, 29,175,151, 34,136,234,126,176,115, 99,157,117,214,217, 5,129,186,191,241,170, + 37,238,249,236,123, 41,228, 8, 34, 19,122, 26, 20, 66,233, 60, 51,107, 72, 85, 74, 38,223, 13,254, 74, 44,111,193, 51, 69, 5, +250,157,178,196,157,186, 11,117,217, 75, 0,120,238, 37,251,120,217,179, 14,242,167,183,159, 12,243,224,189,132,217,239, 62, 4, + 1, 0,184,144,233, 79,215, 71, 60,235,240,220,191,251,173, 7, 96,182, 5,197,216,199,136, 0, 28, 30, 5,244,182, 31,151, 17, +152, 34,242,182,152, 69,214,245,247,115, 17,175,157, 9,156,206,231, 89,238, 79,134,109, 60, 6,239,125, 42, 29,239,185, 0,250, +183, 19,250,200,117,124,233, 87,129,239,253, 2, 55,187, 23,212,223,121,142,159,123,103, 43, 8,123,117,231,194, 58,235,172,179, + 11, 2,117,255,246,151,190,128, 53,251, 91, 84,114, 25,137, 30,147,171, 0,158,133,243, 20, 54, 39,151, 41, 61,249,102,249,223, + 62,242,251,254,237, 87,255, 56, 78, 4, 65,130,242, 93,192, 40,252,195,115,166, 80, 41,225, 71,191,245,106,190,254,182,223,134, +105, 9, 89, 26,222, 71, 4,117, 71,160,243,119,198,188,232,203, 47,225, 59,191,246,121,205,103,221,137,219,241,190, 4, 91,132, + 55,122, 15, 56, 5,242, 32,175,186,188,120,188, 78, 86, 4,246,182,168,238, 26,206,179,181,141, 64,129, 95,104, 91,210, 83,241, +169,112, 79,233,227,245,222,127, 7,240,203, 45, 64,127, 31,240,143,219,207, 98,191, 64,187, 31,120,122,235,247, 63, 63,199,207, +181,223,247,180,206,133,117,214, 89,103,231, 5,234, 30,132,159,126,209, 27,153,218, 95,192, 73, 69, 79,143,201,148,224,189,103, + 98, 61,206, 15, 24,234, 59,232,201, 55,201, 63,251,139,248, 32, 10,185, 11,241,224,241, 40, 17,148, 64,222,199,222,243, 33,204, +198, 61,200,202,229, 0,188,238, 69,151,115,211,247,188,154, 55,255,167, 63, 97,188, 57,131, 60, 11,207, 94,247, 30,138, 18,198, + 19, 94,252,156, 67,188,247,135,190,129, 65,158,132, 77,151, 19,236,109,239, 67,210, 44,204,130,247, 14,156, 11, 89,186,241,127, +121, 1,245,244,243,181, 91, 90,153,210,145, 11,248,252, 77, 95,234, 15,122,249, 82, 57, 94,239,253, 27,129, 95, 96, 94,255,254, +109,224,219, 69,196, 62, 6,155,255,107,130,224,173,182,205,115,252, 92,251,125, 75,157, 11,235,172,179,206,218,118,118,245,251, +219,175,190,142, 82,253, 34,168, 41, 11, 73, 73, 79, 11, 30,207,200,130,146, 1,125,253,235, 28,144,151,206, 1, 29,200,249, 52, + 42,148,185,129, 0,212,198, 64,181, 67,249,161,159,217,181,249,239,254,186,231,241,103, 63,241,122,222,252,141, 95,201, 21,171, + 25,185, 47, 25, 42,203,215, 60,107, 63, 63,251,189,175,225,143,255,221, 53, 92,113,104,238,187,170,143,254, 34,126,243, 30, 72, + 50,144, 16, 57, 80,197,126,120,241, 71,191, 72,207,243, 35,169,206,159,234,251,119,228, 41,122,188,231, 2,232,223, 67,232, 27, +175,239,145,223, 5, 94, 47, 34,143,213, 51, 6,246, 62,131,125,249, 28, 63,183,124, 1,129, 64,103,157,117,214,101,234,224,111, +188,170,207, 9,251,239,113, 82,176,168, 33, 17,161,244,158,113,169, 73, 85, 70,162,126,138,188,252, 81,249,142,163,187, 29,157, +113,159, 70,212,231,176,238, 48,222,219, 60,213, 83, 4,200,134, 76,239,251,227,188,250,240, 59, 48, 47,159,207,238,120,254,211, +247,243, 51,111,124, 37, 63,241,157, 21, 15,173,143, 72, 19,195,197,171,131,207,219, 31,123,219,111, 82,125,242,191, 64,222,143, + 33,137, 14, 2, 61,235, 4, 95,150, 40,255,219, 79,192, 57,187,144,250,112, 91, 80,118,196,123,191,242, 36,247, 89,239,181, 99, +173,253, 59,167,167,207,197, 94,244,167,234,241,158,237,216,190,159,208,102, 86,219, 31, 0,223,246, 24, 15,124,249, 45,224,231, +153, 11,239,190, 58,190,118, 54,251,234,214,207,247,118, 46,172,179,206, 58, 59,247, 76,125,194,126, 60, 43, 32, 21,206,123,198, +214, 51,174, 82, 82, 17, 22,184, 86,190,255,207,111,144,235,143,126, 94,230, 34,215, 31, 29,147,201,187, 16,159, 48,181, 62,146, +248,130, 82, 34,253, 5,236, 39,255,111,202, 91,126, 20, 63, 62,181,235,115,121, 98,184,252,208,210,231, 3,122, 57,193,254,197, +207, 83,253,201,191, 67,178, 20,209, 58, 60,194, 61,201,160, 44,193,185, 4,236,251,229,181, 55,221,247, 56, 59,251,189,162,175, +115,101, 6,246,182,137, 93,247, 69,182, 14,218,251,183, 18,199,182, 94,104,150,254, 84, 56,222, 71,187,198, 63,180, 7,208, 63, + 0,124,203, 99, 61,232, 69, 68,142, 3, 31,106,189,244,166,115,252,104,251,125,183,118, 46,172,179,206, 58, 59,119, 80,191,120, +242, 16, 61,125, 15,137,244, 25,149,125,156,235,211,151,109, 22,244, 43,229,250,143,220,252,232, 28, 64,250,139,104, 78, 51,171, + 12,165, 11,253,234,154, 48, 50,118,176,128,251,236,239, 82,188,239,187,176,159,126, 31,126,235,248,153, 29,236,232, 36,238,179, +183, 80,252,183, 55, 82,253,229, 47, 64,158,131, 54, 97,216,140, 8, 72, 34, 76, 74, 65,123,240,205, 99, 48, 31, 47,103, 95, 63, + 52,165,109, 55,159,163, 3,191,153,221, 98,177, 27,206,146,233, 62,209,118, 51,187, 69,105, 55,156,195,185,184,225, 41,124,188, +143,116, 92,255,130,221,207, 69,127, 92, 0,189,101, 63,222, 14,146,188,247,255,230, 44,251,247,111,128,175,139,191, 90,224, 63, +117, 46,172,179,206, 58,219, 5,189,143, 10, 70,215,222, 86,248, 27, 95,241, 42,166,229, 15,224,212, 37,164,234,163,244,146, 95, +146, 55,254,201, 89,159, 74, 37,223,251,161, 13,255,243, 95,253,221,204,220,123,216,169, 42,140, 2,173, 37,164,216, 64,127, 17, +170,211,148, 31,250,247, 72, 58, 68,246, 61, 7,181,250, 12, 48, 57,184, 18,183,121, 31,254,228,167, 97,186, 9, 73, 2,131,150, + 38,168, 22,187, 23,202,147,145,226,171,159,144,111,250,149,219, 31,199,236,252, 8,159,255,124,241, 13,206, 79,249,126, 61,187, +103,175,127, 32, 62,102,244,150,115,248,254,107, 34, 88, 62, 46,130, 51, 17,217,240,222,191,141,121,187,222, 17,239,253,141,103, +122, 68,107, 4,244,115,121,236,233, 23,237,241, 62,194,247,254,107,224,173,103, 0,244,201, 23,176, 77,223, 58,199,114,134,243, +254, 7,222,251,223, 36, 76,140, 3,248, 49,239,253,215, 16,218,214,254,140, 80, 51, 95, 38, 80,238,111,218,195,142,252,172,136, +220,217,185,176,206, 58,235,236,156, 65, 29, 64,174,255,208,125,236,126,120,197,185,219,247,254,217,123,249,217,151,189,131,202, +191,153,173, 98,194, 66, 42,104,130,168, 13, 15, 73,130, 36, 9,120,135, 95,251, 4,213,137,163,212, 99,229, 68, 25, 48, 41, 12, +246, 60,170,218, 3,133,197,187, 30, 40,157, 65,245, 65, 38,147,183,126,129, 14,221, 95,192,199,174, 63,159, 58,113,156,150,118, + 61,243, 39,151,213, 64,119, 11,129,174,110, 83,249, 53,205,127,132,121,109,250, 45,143,243, 90,184,137,221,143, 65,189, 46,210, +240, 55,181,246,237, 8,129, 74, 95,137,153,248, 6,143, 80,131,127, 10, 28,239, 94,219,187,134, 94, 11,140,207, 99,105, 60, 75, + 68, 46,228,209,191,223, 73,120, 2,219,139, 91,231,248,108,229,143, 63, 0,126,232, 66,215,242, 35,189,231, 76,129, 71,103,157, +117,246, 37, 6,234, 95, 80, 6, 8,222, 39,213, 15,163,146,131, 20,254, 13,108, 21, 83,159,107, 36,215,129,134,175, 93,136, 40, + 72,243, 71,127,154,133, 7,156,135,153,197,109, 21,244, 46, 58, 4,218, 30,165, 50,223, 38,215,222, 92, 60,129,231,236,104, 4, +244,243, 86,218,139,200, 77,173, 1, 54, 43,231,225,196, 31,119,139,217,250,181, 49, 67,189,178, 5,182,103,122,216,205, 6,112, + 45,103,121, 16,206, 23,243,241,126,177,152,136,108,199,224,233,157,192,119,156,229,237,101,124,223, 91, 68,164,234,206, 94,103, +157,117,182,215,212,227,253, 5,114,253,209,146, 19,249, 63, 34,145,159, 66,200,147,173, 18,119,186,132,169,131,138, 70, 67, 39, +114,134,255,226,255,176, 64,225,240, 91, 21,178, 49,163,183,178, 12,253,252,215, 97,235,213,242,173,191,252, 68,180,245,220, 18, + 51,214,107, 69,228,234, 11, 1,244, 54,208, 17,198,203,222,196,185, 13, 87,185,153, 64,101, 63,238, 15, 49,137, 15,133,185,250, + 44,223,117, 11,225,177,167, 71,159,234,199,251, 69, 4,236, 27, 34,242,157,192, 87, 69,208,254, 20,176, 22, 65,252, 4,240,167, +192,255, 17,217,128, 31,236, 0,189,179,206, 58,123,148,100,250,137, 51,255,127,125,205,107,238, 61, 49,190,245,233, 43, 25,213, +204, 83, 25,129, 92, 35, 70,133,204, 93,181,118,199,123,176,224, 43, 7, 83,139, 46, 29, 73, 34,108, 89, 88,124,250, 69,111,224, +175, 95,248,255,201, 91, 31,247, 65, 51,143,255, 57, 9, 89,218, 94, 10,251, 24,225,233,102,183, 60,137,251, 85,211,225,237,103, +162,223,114,142, 79,131,123,202, 29,111,103,157,117,214, 89, 7,234, 23,226,212,223,249,178, 69,114,249,135, 76,252,191,192,249, +203,195,104, 88,239, 81,202,161,152,131,180, 67,225,156, 34, 36,242,160,213, 73, 12,239,160,151,255,103,249, 39,127,244, 80,119, +233, 58,235,172,179,206, 58,235,236, 73, 6,245, 6,220,223,255,186,140,207,109, 62,155,210,189, 30,228,229, 88,127, 17,206, 45, +227, 73, 65, 74,140,156, 70,203,195, 56,255, 87,164,242, 95,169,242, 79,203,247,253,209, 78,119,201, 58,235,172,179,206, 58,235, +236,139, 12,212, 63, 15,228, 63,248, 42,195, 61, 24,244,186, 38, 31, 56, 54,138,234, 76,131,109, 58,235,172,179,206, 58,235,172, +179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, + 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235, +172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,139, 38,111,191,238,245,222, 36, + 6, 17, 1,239,177,206,147,101, 41, 74, 4,147, 24,172,117,100, 89,138,136, 48,155, 21, 40,165,240,222, 81, 76, 11,172,117,224, + 61,101, 89, 98, 43,139, 7, 68,132,170, 40, 80, 90, 35, 34,164, 89,138, 49, 9,251, 15, 29, 64, 27,195,104,235, 52,219, 91, 59, +148,101,133, 82, 66, 81, 84, 40,165,209, 90,112, 14,242,193, 2,139, 75,139,244, 7, 25,101, 49, 99,235,244, 22, 85, 81, 97,210, + 4, 17, 33, 73, 52,222, 67, 89,150,120,231, 41,171, 10,103, 29,218, 36,228,189, 28, 81, 10, 17,161, 44, 43,138, 89,217, 60,241, + 77, 27,131,247,158, 98, 86,197,239,242, 88,235,176,214,209, 31,228, 36,105,130, 82, 66, 85, 88,172,173, 40,102, 5,206,121,146, + 36,193,123,135, 82, 10,147, 36,104,163, 72,211,140, 94, 63, 69, 41, 69,154,165, 12,134, 57, 74,107,140,209,100,121,134,136,167, + 42, 45,182, 42,217,218, 28,177,177,182, 69, 85, 57,188,119,128,167, 42, 43,148, 82, 32, 96, 43,135,210,130,224,113,206,225, 28, + 40,173, 1, 88, 90, 93, 33, 77, 83, 78,175,175,161,180, 33,239,247, 88,123,248, 33,202,178,162,126, 34,182,136, 71,107,131,247, + 14, 17,193, 24,133,247, 96, 18,131,115,142,170, 12,199,235,189,199, 86,142,162, 40,177,214, 81, 22,225,220, 40,109, 48, 70, 49, +155,206, 40,203, 2, 17, 72,179, 12, 91,121, 76,162,153, 78, 42, 94,242,138,151,114,223,177,251,240,174,100, 58,153,177,176,188, +200,131,247,221, 71,175,151,147,247,123, 0, 20, 69,137,214, 97, 64,225,108, 50, 97,180,179, 67, 85, 89,190,226,170,171,185,239, +174,187, 88,221,191, 2,162,184,237, 83,119,146,247,122, 88,235, 24,109,111, 50, 43, 42,178, 52, 35, 73, 83,188, 87,164, 89,194, +120,103,135,157,157, 45,202,114,198,171,255,222,235,184,245,119,126, 27,235,194,241, 93,114,233,165, 60,253,138,167,145,229, 25, + 85, 89,114,226,161,147, 60,112,252, 65,202,162,192,186,112,237,156,181, 56,103, 89, 88, 60,200,161,139, 46,226,115,119,223,193, +100,178,131,224, 17,132,231, 62,255,165,140,182, 78,241,224,253,119,179,239,224, 37, 92,250,180, 75,185,228,138, 43,168,138,146, +187, 63,115, 7, 15,221,119, 7, 87,191,226,235, 56,117,114,141, 83, 15,220,203,129,139,175, 96,115,237, 97, 38, 91, 15,162, 84, + 56,151,120, 7,222,225,177,241,209, 5, 10,188, 67, 36, 92, 19, 17, 65,148,230,210, 47,123, 5, 27, 15,220,193,108,188,206, 11, + 95,249,141, 96,134, 60,112,236, 51,172, 29,191,157, 23,188,252, 8, 58, 25,112,199,199, 63,204,246,233,181,120,221,114,150, 87, + 87, 73,210, 20,147, 24, 60, 30, 91,121,188,247,244,134,203,160, 50,238,250,212,135, 41,139, 49,206, 78, 17,226,190, 64, 60, 62, +143, 8, 40,165, 73,178, 37, 22, 14, 62,143,201,169, 79,225,189, 69, 41, 65, 43, 5,184,248, 62, 3, 34, 40,165,113,241,252,106, +229,240,174, 2, 28, 72, 6,122, 9, 17,135,216, 83, 8, 21, 34, 26, 68, 35, 42, 69,233,112, 47,122,239,241,104,130, 11,177,120, +231,176,182, 8,127, 3,156,243,104,147,211, 27,174,144,102, 57,158,176,127,147,105,193,108, 50,101, 50,222,164, 44, 11,156,115, +120, 52, 94,194,218,141, 11, 28,239,108, 56,231,241,105,142,222,251,248, 93, 62, 30, 79,248, 93,240, 40, 37,205,207, 32, 40, 21, +238,123,173, 21, 90, 9,222, 91,164, 57,126, 1,194, 78, 42,109,208, 58, 65, 68, 97, 76, 26,183, 25,182,225,124, 60,183, 18,238, + 95,239,226,121, 86,225,115,225,154,179,107,223,136, 62,195,227,113,182,194,123,139,179, 22, 31,191,215, 57, 11, 8,214,133,123, + 57, 28,174,224,227,126, 55, 79,188,143,143,184,247, 46,248,143,224,139,192,199, 99, 83,218,128, 15,107, 45,156,111,143,136, 2, +234,107, 26, 30,159,225, 92,120, 93,107,131,179, 21, 74, 25, 36,110, 62, 28,143, 67,107,141, 45,103, 97,141,187, 18,163, 21, 96, +209, 90, 35,128, 82, 30,188,141,254,202, 69,204,136,255, 66,196, 6, 31,190, 75, 9, 62, 60,215, 35,172, 51,194, 51,186,240,196, +107,171,112,206, 34, 74,225,157,199,121,135,243,210,236,171,247,225, 73,219,206,131,143,127,115,206,134,223,145,224, 43,189,196, + 53,163,112, 94, 16,209,225,111, 62,252,231, 81, 32, 26, 36, 1, 20,196,115, 84, 89, 11,162, 16, 73,240,120,170,202,198,245, 68, + 92,155, 42,158,127, 1, 28,222,131, 82,130,138, 15, 28,243,184,230, 56,172, 45, 27, 63,236, 93,240, 59,205,121,245, 14,188,109, +214,167,119, 54,248, 12, 31,222, 67,196, 3,239,125,248, 93,234,147, 20,205, 55,255, 23,215,126,251,245,250,213,221, 63, 8,160, +180,209,241, 36,122,172,245, 24,173,113,214, 99, 93, 0, 60,128,170,178, 84,165, 69,226, 98,243, 14,146, 52, 9, 78,199,123,140, +209, 36,169, 33, 49, 26,173, 2,144,215, 55,146,173,108,115, 48, 90,107, 76,154,226,156, 67,137, 32,162, 72, 18, 19, 22,172,243, +104, 5,174, 28,179,126,234, 20,227,209, 20,147,164, 28,186,232, 16,139, 43,139,164,105, 18,222,235,195,129,167,105, 0,216, 0, + 36,225,187, 2,112, 89,128,230, 95,173, 53, 89,150, 53,159, 55, 70,199, 27, 47, 0,160, 49, 26,165, 20,206,186,112,220,214, 98, +173, 67,233, 26,160,131, 35, 81, 74,145,166, 9,198, 24,146, 84,211,235,247, 88, 92, 26, 50, 24,246, 48,198,160, 36, 44, 6,165, +192,217,112,177, 70, 59, 83, 54,215,183,176,214, 81, 85,101,235,230,244,225,198, 16,193,249, 16, 92, 20, 69, 25,157,159,161, 44, + 74,156,179,140,118, 70,152, 36,220,184,163,157, 29,108,229,232, 13, 23,154,155,222, 86, 22, 99, 12,218,104, 76, 18,175, 7, 10, + 81, 10,231, 28,179,105, 65,146,104,108,229, 40,203,138,233,116,198,120, 60,102, 50,153,134,235,150,152,112,243, 33, 40, 29,110, +174,170,172,152,140,103, 88,107,153,140,103,193, 73,227,169,202,146, 36,203, 80, 74, 72,146,148,229,213,101,108,116, 52, 85, 21, +174,167, 82,130, 45, 43,180, 86,205,162, 61,249,240, 26, 73,154, 98,157, 67,107, 69,158,103,209,113, 26,148, 40,210,196,160,148, +194, 90, 27,207, 69,248,215, 57, 63, 7,208,104,198, 36, 44, 46, 45,144,164,225, 51,179, 89,193,104,103,132, 86,154,188,151,147, +166, 41, 90,233, 38,192,233,245, 7,128,167, 44,103,120,231,234,187,134,125, 7,246,177,177,118, 18,165, 12,121,158,147,247,122, +136,132,243,182,254,240,253, 44, 44,237,167,183,176,200,137,251,143, 49, 88, 88,194,122,176,229, 52, 56, 2, 20, 74,169,230,253, +120,162,147,118, 1,128, 34, 72,120,239, 89,220,119, 5,182,156, 49, 29,157,228,203, 94,252, 42,210,172,199,104,107,155, 83,247, +125,138,149,253,151,208, 95, 88,229,196,253,247,178,181,254, 32,196,251,101,176,176, 64,214,203, 26,112,114, 54,120,194,172,183, +136,201,134,220,125,219, 71,130, 99, 85, 26,165,146,230,220,204,215,159,198,152,140, 44, 95, 96,233,208,115, 81,213, 58, 73,214, + 39, 73,251, 1,172,234, 71, 26,171,250, 56,194,218,214, 74,161,181,154,251, 12, 73,144,100, 9,165, 5,229,183,193, 77,119,221, + 11, 34,126,238,128, 68, 53,206,169,118,112, 53, 96,138, 40, 4,135,179, 5,197,108, 28,215,143,137,251,170, 80, 70,163,148,158, +123,170, 8,136, 18,144, 25,226,189, 26, 2, 21,105,112, 78, 68,208, 90,163,180, 66,226,235, 74,235,230,103, 81, 58, 0,158, 72, + 56, 46,145,176, 46, 98, 64, 81,175, 5,169, 3, 7, 31,128, 5, 81, 32, 62,252, 71, 29,192, 5,144, 18, 9, 62,166, 70,241,240, +187,155,127,222,218, 38,184,210,198, 68, 71, 27,142, 37, 4, 74,190, 73,138,234,115, 95, 39, 83,193, 31,250, 93,143,161,174,145, + 80, 90,248, 46, 82,131,128,195,251, 10,103, 11,194,179,169, 29, 80,131, 69, 12,236,132, 38,248, 17, 9,231,199, 55, 64, 31,207, +107,235,124, 58, 91, 54,201,152,138,231, 91,199,223, 67,128, 67, 56,191,113,159,194,182,104, 2, 13, 36,252, 93,105,133, 18, 21, +175,153, 10,215,168, 14,160, 36,156,117, 81, 58, 6, 34, 49, 32, 65,135,251,169, 62,131,162, 98, 64,232,162, 63,176,115,160,175, + 65, 63,222,211, 62, 62,190, 27, 81, 13,232,123, 31,130, 49,235,194,253,227,145, 24,251, 10,160,168,170, 24,124,196,245,172,148, +158,195,167,196,251, 59, 6,199, 90, 43,180, 14,127,247, 4,255, 46, 66, 19, 8,135,251,191, 62, 63,170, 57, 14,145,122,109, 69, +128,111,225,113, 8,132,227, 45, 36, 18,127,158,191, 86,239,117,253,183,112,127,213,239, 9,107,160,249, 57,254,141,120, 75, 42, + 16,146, 52,193,123, 2, 48,226,241,222, 97,173,165,170,108, 4,123, 75, 89, 85,232, 8,218,245, 13,105, 98,118,170,181, 38, 73, + 18,210, 44, 0,139, 54,134, 36, 73,154,136, 21,160, 42, 75,170,178,100, 48, 28,176,184,188,136,210,170, 57,129,117,134, 39, 34, + 84,149,197,150, 5,235, 39, 79,176,126,106,131,233,180, 98,117,255,126, 86,246,173,146, 70,198, 64,148,132,108,204, 90,240,144, + 36, 9, 85, 85, 81,149,182, 1,187,144, 89, 7, 16,215, 38, 44, 44, 99,194,239,243,136, 63, 28,115,146,104,148,146, 24, 57, 6, +112,202,210, 0,212,206,185,176,157,196,160,180, 34, 77, 83, 86, 86, 23,227,118, 53,105,150, 96,173,107,246,171,152, 85, 84,149, +101, 58, 41, 40,139,200, 96,196,133,232,156,195, 58, 23, 89, 7,197,120, 60,139,129, 79, 21,111, 52, 69, 81,148,136, 10, 17,117, + 57, 43,216,218,220,166, 63,236,131,247,108,174,175,211, 31, 12, 73,146, 20,173, 21, 89,158,133, 27, 68,194, 53, 20, 21,174,133, +179, 33, 67, 79, 82, 19,162, 80,173,176,149, 99, 54,155, 49, 25, 79, 3, 83, 16,207, 63, 30,202,162,106, 22,229,108, 86, 50, 25, +143,153, 76, 38,205,113,149,179, 50, 6, 64,134,193, 66, 31,109, 20,131,133, 33, 74, 96,180, 61,106, 28,155,173, 28, 85, 85, 49, +157,204, 40,138,146,201,120,194,198,169,117,250,131, 62,179, 73,129, 73, 12,105,150,160, 84, 56,239, 53,152, 7,144, 15,153, 69, + 85, 89,242, 44,195,196, 32, 3, 31,110, 20, 37,225,220, 15, 6,125,180, 54, 8,158,241,104, 18,217, 35, 1, 15, 70, 71,128,240, + 30, 91, 85,164,105, 74, 85,149, 56,107,227, 77,104, 81,162, 81, 90, 51, 25,111,163, 77,130, 49,154,254,112, 72,222,239,115,234, +193, 7, 41,102, 99, 46,127,214,115,121,232,254,227,204, 38, 59, 36,105,143,178, 40,169,170, 41, 34, 10,231, 3, 80, 37,105, 30, +178,157,232,232,165,229,128, 61,158, 36,233,177,124,232,114, 78,221,127, 27,151, 63,247,101, 44,174,172,176,189, 93,240,192,157, + 71, 1,207, 37,207,120, 14,224,121,224,179,159,136, 32, 8,253,225, 34,121,158, 7, 96, 78, 18,170,202,197,215,151,201,135,203, +220,115,251,199,230,206, 53,130, 74, 56,119, 25, 73, 58, 36,203,151, 24, 44, 30,100, 97,229, 98, 22, 15, 92,201,210,190,125,104, +147,144, 13,246, 49, 88, 58, 64,111,184,143,222,112,149,124,184, 74,154, 45, 96,146, 28, 99,146,224,156,149,224,157, 11, 25,137, + 40,148, 89, 64, 41,131,102, 10,110,212,164, 8, 1,132,234, 71, 39,198, 87,157,111, 64, 40, 56,175,112, 78, 66,176, 92, 65,157, +153,198,172,197, 89,135, 7,180, 49, 40,165,227,218,167, 1, 56, 23, 25,143, 6, 76,149, 52,204,199,220,111, 4, 63, 20,182, 27, +153,146,232,213, 84,235, 17,206, 77, 32,128,111, 28,174,111,101, 64,115, 71, 46, 17, 88,153,103,184, 34, 17,228,163,167, 21,105, +152, 64,234, 76, 12, 31, 0, 91, 84,124,171,219, 21, 64,132, 68,200, 5,240,146, 16, 4,170,246, 62,248, 0, 28,210, 4,138,154, + 6, 61, 98,112, 66, 3,244,115,176,105,167,190,129, 29,169,226,126,249, 38,163,167, 1,220, 24,192, 69,164,145,232,195,235, 75, + 88, 7, 85, 74,155,248, 62,143,104, 19, 89,131, 57,184,171, 38, 99, 87, 49,136,154, 95,103,239,133, 26,145, 68, 4, 79, 88, 75, + 77,192, 23,143,165, 14,182, 66, 16,172, 64, 84, 8,173, 36,128,174,117, 33,209, 9,151, 50,114, 79, 94,199,123, 47, 70, 14, 17, +176, 27, 22, 69,233,248, 62, 98, 6, 94, 3,116,100,106, 80,129,253,148, 58,243,247,225,120,148, 4, 6, 53, 6,166, 66, 96,139, +235,184,205, 53,235, 79, 71,254, 36,220, 35,218, 24,230, 68,146,154,199,162,245,177,251, 57,208,214,247, 86,125,178,155,100, 60, + 6, 45, 53,147, 21, 64,186,195,206, 76, 7, 0, 0, 32, 0, 73, 68, 65, 84, 5,232, 17,224,235, 0,166,121,173,245, 30,118, 37, +246,243,160, 90,137, 8, 11,139, 11, 44, 45, 47,198,104,205, 69, 10,161,190,201,117, 4,240,176, 40,172,117,209,137,133,157,204, +251,189,221, 17, 60,160,149,132,140,216,249,102,193, 76,198, 19,132,176,192,250,131, 1,121, 47,143, 55,156,111,168,113,107, 45, + 73,162, 73,211,224,152,203,233,132,211,235,235,108,110,110,147,102, 57,171,251,247, 49, 92, 28,144,231,105, 3, 66,170, 1,225, + 4,239, 61,105, 22,162,243, 36, 53, 36, 17, 68,146, 52,105,178, 16,147,232, 38, 91, 15,191,155,184, 80,194, 5,170, 74, 27, 35, +123,213,156,236,196,104,210, 44, 69,107,205,226,210,128, 52, 75, 73,179, 16,180,212, 89,173,247,176,179, 53, 10,217,240,206,148, +237,211, 59,140,118, 38,113,251, 45,170, 15,193, 24, 67, 81, 84, 24,163,169,170, 0,168, 38, 73,176, 46, 48, 16,245, 62,149,101, +201,198,218, 58,222, 43,134,139, 11, 20,179,130,233,100,202,210,234, 82,188, 97, 32,203, 83,178, 60,141,231,191, 14, 76, 2, 67, + 81,211,252,227,209,152,209,206,136,201,100,134, 8,100, 89, 18,168,191, 24,113,214,217,250,108, 86, 96,227,254,104, 37,104, 29, + 28,192,116, 58, 35,239,165, 40,165, 73,179,140,217,100,134, 73, 18,138,162,108,168,232,170, 44,155, 32, 48,252,235, 24,143, 71, +156,222, 88,103,176,176,192,108, 58, 13,215,190,223,195, 90, 31, 89, 20, 5, 53, 99, 32, 66, 76,168,112,222,199,232, 62,236, 91, + 77,177, 46, 45, 46,134,136, 57, 6, 71,211,241,164,185,249,141, 49,209,225, 73,204, 86, 19,210, 52,141,212,109, 96,130, 20,144, +245, 22,169,138, 25,120,200,178, 30,131, 97,159, 44, 31,224,189,231,196,241,123, 25, 12, 87, 88, 62,176,159,227,119,223,137, 82, + 9, 73,154, 51,155,140,241, 54,128, 85,160, 91,235,181,148, 97,146,180,137,196,219, 20,241,202,225, 47, 99,180,121,146, 3, 23, + 61,157, 75,159,241, 76, 30, 62,254, 48, 91,235, 15, 49,217,122,144,149,131,151,113,240,178,167,115,207,109,127,137,171,102, 8, +208,235, 15,232,245,135, 36, 89,218,148, 98,188,115,244,134,203,244, 22, 86,249,220, 29, 31, 15,153,148, 82,104,147,160,117, 74, +150, 15,233,245,150,201,251,203, 44,172, 28,102,105,255,101, 44,172, 94, 66,127,241, 32, 43,135,174,164, 26,111,144,102, 41,121, + 44,129,153, 36,139, 1, 64, 78,214, 95, 34,237, 45,146,100, 3,146, 52,139, 14, 48, 56, 31,157, 45,163, 76, 31, 45, 21,190,218, +110,104, 66,162,147, 21, 21, 28, 82,200,234, 90, 89,182,119,141, 95, 8,217, 75,164,164,157,101,158,120,134,181, 30, 0, 46,128, + 69,160, 48,125,227,168, 84, 4,207, 58, 72, 8,142, 81, 53,215,178, 14, 32, 92,244, 79, 18, 65,180, 73,143,124, 43, 27,106, 74, + 34,210,162, 49,165,201,232,219,160,230,226, 53, 12, 89,183,139, 14,216,181,178, 56, 31, 0, 35, 6,118, 53,149,238,125,200,108, +125,204, 18,109, 85, 6,226,214,187,120, 29, 3,229, 79, 3, 53,177, 68, 80,179, 61,141,123,151, 24,248,212, 37,132,176, 81, 31, + 51,249, 38,187,143,255, 83,210,226,180,227,127, 82,179, 1,174,138,193,108, 93, 98,136, 64, 95,151,106,164,197,110, 8, 40,157, + 52,199, 37, 49,115,141, 41, 48,222, 91,144,249,117, 9,247,165,106,125, 87,100, 10,124,213,176, 31,117, 16, 18,216,137, 36, 6, + 46,177,116, 35, 42,150,110, 66,182, 28, 63, 17, 83,219,240,187,173,193,204,215, 84,123, 67,174, 4, 70,197,215, 44,158,110,178, +221,152, 26,199, 64, 99, 30, 12, 5,166,212, 70, 70, 82, 35, 42,248,215, 16,228, 69,198,197, 5,112, 79,146, 36, 38, 27, 14,163, + 13,222,205,207,127, 83,218,240, 49, 30,169,215,157,119, 45, 58,124,158, 48,214,126,213,123, 2, 3,236,108,120,182,184, 8,206, +219, 22, 43, 86,255, 43,173, 12,188,117, 91,181,193,190,157,237,195, 60,179,111, 1,191, 26, 46, 12, 88, 94, 89,164,215,239,163, +180, 66,199, 76, 54,100,187, 33, 35,174, 35, 60, 27, 51, 30, 99,116,164,181, 12,222, 65,154,134, 26,188,214,115,240, 51, 70, 99, + 18, 67,146,134,236,216, 89,139,173, 42,108, 89,146,230, 57,203,171,203,225,239,137,193,104,213,128,112,213,212,194,125,160,116, +188, 99,186,179,205,198,250, 38,214,193,226,242, 50,105,150, 97,140,106,168,161, 64,157,133, 5,104,173, 39, 73,116,100, 0, 52, + 58,214,140, 27,186, 79,207,233,247, 58,234,175, 3, 4,231, 28, 89,150,196,155, 39,156,184, 36, 9, 81,180, 49,138,213,253, 75, +244,135,189,230, 68, 59,231,201,123, 1, 80,203,162,164, 42, 43,198, 59, 19, 38,227, 41,179,105, 25,162, 57, 81, 49,250,171,107, + 77, 33,112,168,121,175,217,180, 68, 27, 19, 40,108, 21,162, 84,165,132,217,116, 26,153, 8,139,181, 37,189,193, 16,173, 21,219, +155,155, 36,105,206,112,113,129, 94,191, 23, 74, 4, 77,116, 31, 46,115,205,146,104,163,217,217, 25, 51,157, 22,204,138,178, 97, + 47,172,181, 77,144, 83,150, 21,147,241,148,201, 56,208,171,225,102,114,120,132, 52, 77,201,243,140, 98, 54,101,184,184,128,247, + 22,173, 13, 85, 85,162,117, 66,150,101,120,103, 41,203,170,169,223,135,227, 12,212,191,119,142,217,100, 20,178,206, 50, 4, 0, + 89,150,161,117,200,204,147, 36,105,162, 87, 99,116,116, 85,225,247,196, 24,240,160, 99,157, 46, 73, 18, 22,151, 23, 72,211, 20, +107, 45,211,241,148,217,172,192,123, 79,158,167, 49,160,148,150,147,139,245,249,209, 40,158,234,224,128,246,237, 63,200,230,218, + 26,120, 79,127, 48, 36,207,123, 44,239, 91,101,227,196, 9,118,182, 54,185,236, 25,207,230,212, 67, 39, 24,111,175,145,245,134, +120, 81,216,114, 26, 28,157,214, 24,147,162, 77, 8,138,194, 58,207, 48, 38,105,130,170,160, 73, 88, 98,184,114, 16,113, 19,158, +253,162,171,185,227,227, 71, 49,189,101, 78, 28,251, 24, 74, 25,174,252,202,151,176,189,113,138, 19,159,187, 19,240,244,135, 75, +244,250, 11,228,189,140, 36,209, 32,129,189,201, 7,139,100,131, 85,238,185,237,163,120, 95, 6,118, 67, 20,105,154,135,236,189, +191,204,112,229, 48, 75,251, 46,102,184,180,159,188,215, 39, 73, 12,249, 96, 5, 69, 1,222, 70,240,169,179, 74,139,146,232,248, + 9,247, 87, 8, 18, 76,115,158, 69,247, 16,221, 71,107,143, 43, 55,241,174,108,101, 8,174,185, 66, 66, 72, 0,172,173, 34,181, +233, 26,176, 15,181,207, 80,191,110,192, 10,133, 73,178, 57,165, 29,247,201, 86,101, 4,133,144, 41,207,125,187,223, 69, 67,207, +147,134,154,198,149, 38, 51,175, 51, 88, 98, 86,140, 82,145,181, 10, 76, 0, 77, 41, 64,106,191, 63,207,156, 34, 56,207, 19, 30, + 55,175, 40,196,213, 89,215, 73,125,235,187,130, 51, 15,201,141, 82,210,232,139,106,122,223,121, 7,206, 33,196,115, 32,106, 87, +240,215, 80,249, 49,153, 16,116,195, 12,132,253,172,233,232,152,197, 74, 60,199,245,235, 17, 8,234, 42, 5, 77,253, 22, 16, 31, +147,177,121, 96, 67, 4,210, 80, 50,242,243,224,168,198,211,150, 30, 65,105,141, 18,223,148,106, 2,192, 7,253, 72,205, 42, 52, + 1, 74,227, 71, 93,195, 54,212,231,215,123,135,214, 73, 96, 83,154,215,252,252, 56,163, 38,192,199,100,209,186,122,101,214, 58, +143,121,169,195,123,105,232,247, 58, 67, 15,153,124,157,173,170,200, 90,234, 80,155,151,154, 82, 87,145,141,242, 77,153,108,174, +177, 2, 37, 58, 18, 38,130,214,193, 31,133,242,171,106,216, 4,165, 2,173,175, 36, 4, 1,206,185, 72,193,135,128,192, 58, 27, +180, 41, 17, 91,106,124,113,182,205,150,212, 76,205, 60,128,219,157,109,207,207, 77,139,196,137,199,203,156,122,247,187,107,234, + 53,184, 55,235, 0, 48,189, 65, 31,231, 96, 50,154, 4,154, 53,214,187, 68, 5, 26, 91, 18, 69, 85, 85, 49,123,164, 1, 60,145, +144,105, 57,231,209, 89,168,205, 54,236,191,115,205,142, 6, 70, 45,220, 84, 59, 91,219, 44,174,104,242, 52, 37, 93, 92, 96, 54, + 9, 66, 56,165, 85,168, 35,123, 23,178, 53, 64,235, 36,128,143, 49,136,120,102,227, 17,107,101,193,226,242, 50,131,133, 69,210, + 44, 99, 99,109,157,201,104,210, 0,123, 40, 5,168, 72,159, 8,121, 47,141, 34, 50,143, 82,158,138, 16,125,155, 36,208,210,222, +121,146,152, 37, 86,101, 96, 9,132, 80,131,155, 76,102, 36,137,161,215,207,201,251, 57,189,126,222,232, 8,170,178,138, 96, 47, + 56, 27,182, 49, 30, 77,168,202,138,178, 44,153,140, 2, 37, 44, 49,232, 48,137, 6,130, 70, 65, 16,108,172, 5,133, 26, 92, 88, + 96,182, 10,223,111,140, 97, 50,158,236, 10, 60, 78,175,111,114,224,240, 33,134,139, 11,140, 71,129,238,190,232,210,195, 60,252, +224,137,168, 29, 8, 87,218,185,224,196,173,173,168,172,101, 54,157, 81, 85, 21,182,170, 34,149, 9,130,162, 44, 43,144, 34, 44, +250,186,142,237, 28,214,121,242, 94, 22,106,212,253,156, 44, 15,231,111, 60, 26,177,186,111,137,147, 15,157, 98,176, 48, 36, 49, +193,105,166, 89,202,100, 60, 66,170, 50,126,111,200, 70,106,145, 97,168,237, 87,148,165,163, 44,203,152,145,230, 49, 67,159,215, +250,156,115,228, 73,134,247, 80, 20, 85,172,127,131, 54,129,158,207,210, 4,231, 97, 48, 24,196,117, 6, 59, 91, 59, 84,101, 25, +106,243, 42,148, 23,154,192, 9,137, 64,171,168,138,105,200, 22, 36,100, 22, 75,171,251, 56,249,192,189,136, 50,100,121,200, 90, + 77,170, 57,121,252, 62,210, 52,231,192, 69, 23,241,241, 15,253, 15,196,123, 6,195, 69,156, 11,245,116,239, 64,180,180, 50,148, +184,190, 85, 29,220, 70,113, 25,194,129,203,190,156, 98,188,206,243, 94,250, 53,220,254,145, 15,179,124,241,115,120,248,238,191, +164, 42,199, 92,116,229, 75,200,122, 3,238,187,253, 40,222,149,100,249,128,222, 96,129, 44,207, 81, 2,211,113, 96, 52,146, 52, +103,184,114,136,251,110, 63,138,171,166,161,228, 32, 6, 68,163,141, 33,239, 13, 49,105, 70,146, 36,204, 38,163, 70,163,130, 8, +217, 96,145,141, 7,239, 4, 23,106,174,182,152, 96,109, 17,152, 23,162,224, 51, 2,158, 18, 79,229,125,160, 75, 77,134, 36,203, + 40,177, 72,181,131,183,179,230,126, 70, 90, 25, 21,210,202, 50, 36, 36,105, 66, 84,123,213,206,171,154,131, 55, 66, 98, 82,146, + 52, 11, 66, 45, 23,216, 24,239, 29, 85, 89,204,105,108, 95, 75,147,230, 34,162, 26, 36,234, 53, 49, 7,240,154,154,118,248,152, + 49,170, 58,187,165,166,230, 29, 58, 82,250,210,232, 51,230, 2, 56, 26, 97, 91, 40, 57, 52, 96, 19,193,202, 58, 55,167,202,101, + 78,181,250,128,155, 17, 52, 92,212, 40, 72,100, 50,124,204,160, 67,166, 22, 88, 41,105,125,111, 60,158,154, 42, 85,181,144, 13, + 84,244,160,117, 62, 31,246,173, 22, 63, 42,188,154, 7,172, 68,122,157, 58,183,109,216,138,200, 26,196,114,131,179, 22, 37, 38, +178, 15, 37, 74, 37, 13,184,105, 5,222,201, 92,255,160,116, 4,135, 0,102, 90,116, 8, 74, 68, 80, 58, 1,111,131,200,171, 62, + 23,222, 70,102, 68, 34, 99, 19,179, 84,234,250,125, 4, 56, 53,167,196,189,183,177,142,174, 32, 10,203,156,115, 49, 49,241, 17, + 43,162,143, 20,193, 86, 85,147,237,214, 92,132,141, 66,187, 16, 40, 73, 19, 24, 8, 10, 27,191,207, 90,135,212,154, 19, 17, 68, +199, 96,204,213, 1, 21,141,208,211,197,200,192, 19,104,121, 98, 57,140, 88, 63,167, 14,168,116, 0,234,250,152,156,173,176,182, +154, 7,147,109,160,141,219, 19, 36, 48, 64, 17,153,125, 35,106,157,215,192, 27,150,170, 93, 22,218,171,151,195,239,122, 78,122, +179, 38, 91,191,215, 92,176, 89, 88, 24, 82,204, 10,118,182,183,231,130, 19,145, 64, 11,219,144, 33, 41, 81, 77,148, 82,223, 4, + 58, 82,188,218, 4, 33,157,142,145,161,115,150, 44,207, 40,203,146,158, 81, 20,211, 18,148, 3, 66,109,123,188,179,141, 82,194, + 48, 91, 98,184,180, 72, 89, 22,204,166,161,182,236, 35,125,139,247, 49,163,239, 53,244,186, 40,133,194,179,189,185,193,104, 39, + 99,101,117,145,131,135, 15,178,126,106,157,157,237, 81, 20,204,132,122,178,210, 42, 82,209,208,235, 39,204,102, 37, 68,134,161, + 44,162, 3, 80, 30,147,134,133,231,112, 49, 2, 11, 89,126,157, 45,247,122, 57,131,133,126, 0,186, 24,133, 77, 39, 97, 95, 37, +214,128,148, 10, 74,251, 90, 44, 49,155,150, 49, 75, 54, 17,212,124,172,219, 72, 20, 22,130,142,234,125,240, 12, 22,250, 56,235, +130, 8,144,121,176,228,241, 24, 29, 0,184, 44,166,156,222,220, 98,101,117, 5,239, 29,211,201, 4,115,104,149,133,197, 33,147, + 81, 16,190, 41, 45,248,194,199,154, 90, 16, 12, 78,167, 5,197,108, 70, 21, 89, 23,239,160,116,129, 94, 47, 70,227,112,205,180, +142,130, 69, 77,158,167, 77,205,182,102, 65,148, 22,202, 89, 65,150,231, 76, 39, 19, 6, 11, 67, 68,107,202,162,160, 55, 28,176, +126,234, 20, 85, 85,145,102, 57, 85,101,153,140, 39,148, 69, 25, 51, 89, 67, 89, 20,161, 59, 65,107,202,178, 34,203, 83,188, 3, +167,124,140,240,231, 74,102, 16,140, 86,204,170, 50,100, 8,209, 73, 56,235, 24, 46, 44,132,204,222,131,181, 21,155, 27,155,140, +118, 38, 77,233, 6,124,168,175, 71, 53,175,206,210,160,202,159, 5,122,219, 57,139, 19, 97,255,193, 85,142,221,246,113,178,172, + 71, 98, 12, 11, 75,139,108,173,175,113,122,125,157, 75, 46,127, 38,107, 39, 79, 49, 58,125, 34,148, 26,242,126, 0, 29, 27,130, +150, 16,213, 75,204,226, 84, 44, 49,129,215, 26,188,193, 86, 5,131,197, 67,244, 23,150, 56,124,233, 1,238,185,237,147, 72, 50, +164,156,108,179,179,126, 55,195,165,139,217,127,233,149, 84,211,211,172, 29, 63,134, 54, 41,139, 43,251, 72,243, 60,172,175, 8, +204,202,100, 44, 31,122, 26,247,124,250,163,148,197, 56,208,133, 98,200,242, 30,214,194, 96,105,137,188,215,111,238,252, 36,205, +152, 77,199, 76, 71,219, 12, 87, 47,225,228,125,183,177,179,126, 95, 84, 40,215, 37, 42, 5, 46, 64,158,171, 66,208,172,116,237, +224,195,189,158, 14, 87, 72, 18,131, 43, 38,204,102, 91, 33,131,117,118, 87,237,183,201, 56, 27, 10,183, 86, 8,123, 98,106, 24, + 0,187,201,208, 67, 78,146,245,130, 22, 36,220, 19, 18, 50,124,231,168,202,105, 3,222,245, 26,192,123,148, 14,247,161,119, 54, + 2,165,154,103, 64,141,120,172, 86,174, 71,186, 89, 84, 44,213, 4,231, 93, 51,132, 90,107,136, 0, 93, 43,255,131,215,214,141, + 48,207,225, 80, 62,214,191,197,180,202, 17,109,229,177,111, 50,189, 58,107, 18, 84, 44, 3,196, 12, 56, 72,216,226, 58,116,173, +186,119, 60, 83,222,198,192, 80,230, 12, 65, 64, 24, 20,117,201,207,134,123, 35,130, 34,145, 25,144, 70,144,104,119,169,157, 27, + 0,105, 68,134, 33, 1,115,126, 94,255, 22, 31,124,176, 80,151,180,130,175, 76,106,241,156,154,171,171,165, 6,106, 21,217, 51, +241, 17,192, 67,182, 10,110, 14,236,248,134,150,174,131,131,186,227,128, 22, 51,226,252, 92,167, 32, 74,135,164, 42,208, 2, 49, +193,241, 49,235,173, 34,248, 75, 12, 38, 2,179, 40, 42,136,174, 3, 13,111,230,107,176, 14,186, 84,232,212,106,128, 94, 25,108, + 76, 44, 66,252, 83, 3,189,198,232,132,202,186,166, 94,173, 35,184, 71, 9, 95,131, 57,243, 12, 58,126,127, 20, 66, 6, 22, 33, +176,147,117, 2,169,164,102, 99,231, 73,150,119, 14, 47, 45,178, 92,194,126,248,184,142,106, 86,168,206,190, 27,189, 76, 43,251, +158,103,229,145,254,159, 43, 20,144,189,192,222,112, 98,192,104,103,135,233,100, 18,197,102,101,163,112, 55,137,222, 37,150,171, +105,234,154,102,181,214, 54,130,185, 44, 79,209, 70, 55, 66, 14, 99, 76, 84,115,135,236, 57, 73, 19,138, 89,104, 67,171,138,130, +201,206, 14,121, 47,103,105,117, 31,105,154, 54, 7, 19,232, 43,154, 90, 69, 83, 15,243, 30,235,108, 0,169, 98,196,218,137, 83, + 76,103,142,125,135, 14,178,239,224,190, 93,116, 77,154,154, 80,107,206,146, 0,184,145,218, 19, 32,205, 18,178, 44,137,226, 56, +133, 54, 42,182,202, 37,145,182, 14,206, 35,239,101,228,189,156, 44,207, 72,123,121,227, 88, 84,108,211, 83, 53,165, 32, 66, 85, + 86,161,110, 83,148, 49, 58, 37, 10, 56,164,105,153,203,242, 44, 42,253,231,229, 35, 99,146,152,129, 73,115,158,138,162, 12, 34, + 34,165,163, 40, 43, 44,152,201,104, 7,157, 24,246, 31,218,135, 86,194,214,198, 22,131,133, 97,160,126,240,148, 69,133, 68,225, +135,181,129, 18, 47,203,114, 46,118, 43, 99,246, 62, 43,152, 78,167,148,179, 34, 30,119,100, 35,122, 57,189,126, 80,242,167,105, +216, 47, 68, 40, 11, 75, 85, 85,232,196,132,172,187,152,133,182,144,178, 36,203,115, 68, 66,128, 50,155, 78, 25,143, 38,187,168, +253,218,209,141, 71, 35,146, 36,193, 86, 65, 71,144,102, 73,163, 40, 53, 90,135,104,220,209, 8, 25,117, 84, 52,187, 24,224, 5, + 45,195, 34, 73,106,154,146,193,246,233, 45,108,140,148,171,178,196,150,101, 12,228, 2,213,149, 38, 25, 90, 41,108, 85,204, 21, +204, 18, 90, 16,103,179,113,168, 97,247,114,146,124,192,201, 7, 30,196, 86,150,195,151, 93,202,189,119,220, 30,110, 94,209, 40, +157, 48,222,217,198, 86, 5, 58,214, 51,141, 73, 34,160,135,122,155, 54, 73, 40, 61, 69,145,226,254,203,158,203,129,195,251,216, + 94, 59,193,218, 67,159,227,240,229,207,226,248,103,254,148, 36,237,113,209, 51, 94, 64,158,105, 54, 31,190, 31,239, 75,134,139, + 43, 36,105,218,100,149,182,178,152, 52,101,249,208,211,184,239,246,143, 51,155,108,135, 96, 88,167,104,147, 98,146,156,225,210, + 10,189, 94, 15,173,194, 61,133, 8,197,108,194,233,147,247, 83,149, 21,174,154,177,249,240,109,184,106, 20, 85,209,190, 1, 40, +129, 64,191,139,135,168, 72,247, 62,180, 55,165,131,125,228,189, 1,226, 75,170,217,102, 83,211,103,238,182, 35, 88,186, 6,208, +156,155,215,157,137, 20,124,253,243,156, 62,116,152,164, 71,154,247, 16,101,168,236,156,234, 46,139, 89, 0,245,154,102,111,105, +115, 92,236,152,105,106,228,241,239,193, 25,198, 54,167,150,250,184,214,254, 32,115, 38,177,166, 92,189,155, 43,212,231,220,186, +236, 18,195, 53,199, 33,210,116, 93,212, 76, 68, 29,188,132, 86,211,118,251,150,139,170,108,191, 27,196, 26,134,194, 69, 48,214, +243, 58,107,147,237,215,244,118,108,139,107, 94, 11,107,202,199, 54,187, 58,145, 82, 53,104,198,253,169, 25, 9,223,114,249,237, +214,170, 90,199, 80,127, 31, 50, 47,111,212,106,241, 58, 81, 81, 90,163,148, 1, 84,147,105,215,181,102, 21,197,167, 97, 31,104, +213,212, 5,223,252,190, 87, 27,208, 42,111,214,129,106, 44,137,212, 34,185, 70,216, 24,207,139,170,253,157,142,181,247,250,254, +143,138,246,154, 82,119,117,224,133,196,224,165,181, 46,162, 14,170,190,174, 38, 73, 27,113, 99,125,205, 65, 26, 49,114, 19,168, + 54,224,163, 26, 65,115,205,250,213,250,170, 42,118, 83,249,136, 67,109,218,187, 22, 64,215,165, 21, 23,215, 5,113, 13,182, 42, +163,187,107,229,168, 38, 35,175,239,177, 93, 34,184, 93,117,243, 40, 30,100, 14,252,187, 82,247,121,247, 35,202, 90,207,246,233, +157,176, 80, 98,123, 85, 85, 22,243,218, 22,117,102,174, 98,127, 93,136,128, 85,172,139, 10,190,169, 63,212, 32,105,162, 74,190, +223,239,145,101,105,236,181,181, 81, 24,102,153, 78,166, 84,101,201,120,103,135, 36, 49, 44,237,219, 71,175,223,139, 53, 69, 67, +154, 24,210,212,132,236, 42,214,226,235,144, 70, 69,113,149,173,102,108,156, 60,201,206,246,132,225,226, 18,251, 15, 31, 12,226, + 59,153,139, 19,202,210, 54,173, 86, 74, 73,212, 11,208, 40, 88,235,104, 76,199,204, 94,105, 65, 41, 72,211,100, 94,223,196,227, +171,138,196, 24, 68,121,210, 60,109,192, 35, 56,166, 16, 4, 21,211, 34,182, 94, 4,166,160,166,152,211, 44, 13,237, 45, 4, 42, +206, 36,186, 17,215, 36, 89,216, 86,154, 37,205,149,212, 38,232, 26, 84,252, 60,177, 54, 30,122,198, 67,109, 91, 41, 97,123,107, +139,170,178, 44, 46, 45, 5,103, 30,157,139,224,152, 77, 75,166,211, 25,206,250, 72, 77, 7,225, 99,208, 43,204, 98, 57, 37,128, +107,158,103,100, 89,168,157, 39, 73, 18, 4,123, 54, 42,136,189, 71, 27, 21, 91, 4,131, 96,232,244,198,233,102,141,212,148,219, +108, 58,101,103,123, 43, 0,104,188,169,130,248, 77,147,164, 9, 91,155, 91, 44, 44, 45, 48, 25, 79,201,122, 65,115,209,168, 58, + 99, 59, 76,211,235,171, 66,155, 99,173,254,112, 81, 72,215, 31,244,163, 90, 90,216, 62,189,197,104, 52,106,222, 83,211,105, 54, + 6,160,222,185,112, 67,123,139, 45,203, 38,251, 72,146, 30,179,201, 20,188, 39,203,114,134, 75,203,164,121,143,205,147,167,216, +127,248, 18, 78,111,110,177,121,234,126,192,211,235, 47,226,189, 80,205, 70, 77,159,180,139,130, 27, 98,159,108,168,201, 65,146, +134,249, 8, 11, 43,151,112,241,229,151, 99,180,227,246,143,125,144,203,190,252,171, 56,126,199,199,193,205, 56,124,197, 11, 99, +169,199,113,242,248,221, 12, 22, 87,233, 13, 22, 72,146,208, 10, 74,116,238,203,135, 46,231,129,187, 62, 69, 49,217, 66,169, 4, +147,164,136,210,244, 6, 3,250,195, 1,105,106, 26,145,228,116, 60, 98,103,227, 20,163,211,107, 56, 87,113,240,178,103,177,246, +185, 79,180, 20,216, 62,106, 93, 84,147,209, 42,147, 52,253,196,117,205,214,228,139,244, 6,139,136, 47, 41,167, 91, 56, 91,197, +123,191, 86, 37,207, 53, 39,109, 5,184,111,178,114,213,212,213,173,245,115,209,160, 7,173, 83,250, 11, 43,104,147, 54, 74,110, +111, 29,229,108, 70, 49,155,196,140,221, 54,247,247,156,182,164, 9, 20, 2, 77, 58,175, 1,215,128, 35, 77,189,213,205,213,207, + 77,145,120, 46,230,219, 69, 83, 71,182, 65,234, 90,123,236,174, 8,181, 83, 19, 1,140, 93,212,188,139, 96, 95, 39, 13,181,110, +164, 6,164,154, 74,109,148,243, 74, 90,190, 83, 53,179, 12,106, 96,175,147, 21, 85,239, 71,108,215, 84, 74,163,149,105, 74, 87, +196,154,111,160,132,165, 97, 49,230, 30,220,207,245, 97,117, 22,215,162,120,195,253,209, 18,233,213, 52,114, 19,232,169,121,135, + 64, 12, 72, 26,170, 87, 41,148, 14,125,232, 65,124,171,155,206, 40,137, 98,183,250,251,230,252,111,236, 11,111,128, 72,230,231, +153,121, 11, 90,104,247,155,235, 7, 66, 11, 27,136, 74, 16,101, 98,253, 92, 26, 1, 24,162,231,202,246, 40,188,155, 3, 94, 13, +244,210,116, 15, 4,102, 75, 71,166,194,180,102, 0,132,238,170,166,109, 47,210,246, 33,179, 87, 13, 54,232, 24,200, 4, 77, 86, +196,134, 38, 29,150, 38,161,245,113, 46, 70,221,109, 80, 39, 97, 66,221,163, 63,207,164,165,213,182, 54, 15, 44,221,110,225,155, +159, 83,239,126, 23, 61,255,249,109,235,237, 98, 24,187,106,234, 30, 53,175,185, 18,157,119, 21, 23,106, 93,155,212, 1, 20,132, +166,157,161,238, 51,119,222, 82, 69, 5,117, 93,139, 79,147,186,151,219, 52,180,170,105,245, 71,214, 3, 53, 70,219, 59,216,178, +192, 85, 37, 73, 98,216,119,248, 16, 11, 75,139,241,239,109, 45, 76,168, 89,183,157,168, 73,234,108, 18,198,219,167, 89, 95,219, + 68,196,176,239,224, 1, 6, 11,131,152, 5,134, 69, 25,250,157,213,174, 1, 2,206,206,135, 7, 4,193, 86,136,136, 27,135,137, +144,101,129,121,168,107, 94,149,181, 49,155, 55,205, 80,158,102, 8, 6,145,201,176,190,105,211,128, 0,232,189,126,160,238,179, + 60,109, 28,138,214, 58,158,159,216, 31,238,193,196, 44, 20, 95, 59,209,112, 2,140, 14, 61,241,105,146, 48,155, 76, 40,102, 21, +195,165, 5,156,181,156,124,232, 36,189, 97,159, 94,191, 71, 89,134, 89, 2,179,162,162,170,202, 88,215, 14, 61,247, 33,168, 8, + 25,181,210,154, 60, 15,204, 65,150,101,152,196, 68,177,159,106, 74, 47,225,220,133,154,121, 45,104,218,217,222, 33,203, 82,198, + 59, 59, 16, 65,174, 42, 45,105,158, 51,155, 78,130,176,207,185,102,168, 79,205,126,136, 8,147,241,136,222, 96,192,120,103, 4, + 30,122,189, 44, 4,134, 49, 43,171,153, 31,173,231, 2, 71, 36, 48, 54, 90, 9,131,126,159,225,226,160, 41, 77,108,159,222,138, +195, 61, 2, 19, 82,247,203,106,173, 16, 31, 75, 64, 89,206,116, 58,197,218, 18,111, 67,208, 51, 92,220,199,120,251, 52, 73,146, +209, 31,244, 88, 92, 61, 0,190, 98, 58, 30,115,248,105,151,114,207, 29,127,211,128, 89,127,176, 68,229, 60,229,116,187, 9, 30, +154,168,222,207,107,163,181,166, 65,107,195, 37,207,122, 1,131,129,225,227, 31,252, 29, 86, 47,122, 14,222,150,108,157,252, 12, +203, 7,175,164,183,176, 66,150, 27,198,155, 39, 1, 33,239, 15,131,230,195, 68, 81, 21,176,116,240,233, 28,191,243,211,140,183, + 55, 80, 73,222, 56,152,197,149, 21,210,172, 23, 6, 36,105,197,206,230, 38, 59,155,167, 24,111,173, 81,149, 65,224,120,201, 51, + 95,204,250, 3,119, 82, 21,167, 27, 7,173,181,137,117, 82,105,234,154, 33,152, 53,104,147,134,108, 63, 27,144,100, 67,180,130, +114,186, 69, 85,142, 90,130, 52, 23, 41,229,182,186,150, 6,228, 27, 37,121,147,229,170, 38, 96,173, 51,225,222, 96,153, 36,235, +197,222,224, 0, 16,101, 89, 50,157,236, 48, 29,159,110, 1,115,171, 45,206,181,232,229,122, 42, 72, 4,120,124, 77, 1,199,253, +114, 62,182,208,185, 24,100,206,149,221,161, 91,199, 54,175,207,101,198,204, 7,188,200, 92,223,209,118,172,141,130,223,250, 88, + 59,151, 93,169, 81,157,205,213,181,239,134, 82,109,128, 53, 6,152,113, 80, 9,209, 79,212,165,196, 80, 75, 14,195,124,106,117, +189,196,246,174,208,178, 57,103, 2,241,181, 46, 64,181, 84,252,187,219, 10,137,172,200,156,234,245,177,254, 61,167,109, 93, 13, + 64,225,221, 77, 0,224,234,214,171,102,136,140,110,174,159,104,221,234,248,152,179, 27,222,187, 38, 40,172, 3, 19,105,245,102, +135, 54,184,164, 17,253,209,100,235,237,214, 60, 29,216,129, 58, 59,175,187, 29,154,214, 59, 29, 84, 42, 81, 24,232,188,199,135, +137, 63,187,214,182,247, 32, 90, 71,145,111, 88, 79,214,249, 72,193,187,134, 73,208,218,132,228, 44,130,127,189,230,234,150,238, +122,230, 68, 80,220,215,235, 65, 62, 47, 27,246, 77, 63,155,106,186,120,218, 3,100,194, 18,114, 13,165, 95,119, 81,213,107,195, +197,196,163,222,182,111,129,183,111,177, 47,123,138,234,143, 60, 65,174,213, 89, 34, 34,152,114, 86,196,158,209, 88,143,174, 51, +114, 73,154,161, 44,181,176, 34,212,162,133, 52,205, 26, 16, 75,211,121,175,162, 40,133,171,170, 38,186, 17, 44,149,170, 66,107, + 75,157,221,198, 41,109, 8, 76, 39, 99,202,162, 10, 52,119,191,207,194,202, 62, 4,216,218,220,104,181, 83,184, 72,253, 71,167, + 77, 0, 61,147, 38,100,121,200,252,157, 45,216, 92,223, 96,113,101,133,197,149,101,140, 38,208,179,142,160,222, 87, 65,141, 31, + 22,148,221, 61,142, 39,210,102, 90,197,237, 38, 9,105,106, 34, 29, 30,197,112,222,145,247,114,242, 60,101, 54, 45,176, 51,139, +173, 92,204,220,170,160,116,143, 10,202, 16,208,132,193, 56, 52,180, 93,168,231, 36, 49, 24, 40,139, 89, 0, 53, 99,192, 57, 92, + 92,152,198,104,138, 72,139,251, 24,204,132,126,248,160,224,175,172, 99,123,107,155,165,149, 69,146,116,139,141,181, 77,180, 49, +172, 30,216,199,206,246,136,162,152, 81, 22, 85, 16,237,197,136,180,206, 2, 19, 99,226, 48,157,144,161,167,105, 66,111,208, 39, + 77, 3, 59, 98,210,132,178, 8, 98,175,154, 25,177, 85,133, 46,131,224,110,115,125,139,172,151, 97,109,201,198,218, 38,131,197, + 33, 69, 81,160,117, 18,166,251,121, 72, 83,135,137,215, 86, 34, 69,171,148,102,180,181,141, 73, 50, 38,147, 9,206,121,178, 60, + 99,180, 51,137,181,197,185,250, 86,132,208, 1,129, 35, 49,134, 73,236, 76,232, 13,250, 97,202,161,210,204, 38, 19,182, 54, 79, +163,213,124,104,135,141, 29, 26, 97,174, 64, 21,196,144,105, 74, 89,204,112,182,108, 50,138,213,253, 7,216, 56,117,138, 44, 31, +176,188,186,143,149, 3,251, 88,123,240, 56,131,197, 37,138,162, 98,107,237, 33, 68, 98, 59, 92,111, 64, 85, 22,184,106, 22,123, + 83, 19,146, 36, 13, 78, 55, 50, 84,186, 17,135,122, 22, 15, 62,141, 75,159,113, 37,159,248,224,111, 33,162, 57,124,197,115,185, +235, 99,239, 39,205, 23, 89,189,248, 89,108,157, 60,206,129,131, 95,201,253,199,239, 36,239,133,182,204,186,100,230, 29, 44, 29, +186,130, 83,199,239, 97, 54,222,136, 45, 55,138, 44, 79,232, 13,151, 17, 21,130,100,103, 43,182, 55,214, 24,109,173,161,116, 66, +222, 31,144, 24,205, 96,241, 18,140,134,209,198,221, 13, 29, 45, 13, 13, 74, 67,127, 6,193,160,142, 61,233,130,152,156,108,120, + 32,204, 74,152,109, 81, 21, 59,177,118, 93, 5, 48,218, 53,244, 36,102, 32, 81,196, 86,183,111, 5,177,103, 45, 66,138, 19,194, +162, 0,180, 55, 88, 38, 73,123, 17,180,116, 12, 4,203, 16, 4, 78,182,155,233,108,141,234, 92, 76,107, 42, 94,164,224, 91, 0, + 91,143,253,178,177, 85, 75,226,164, 13,223,244, 60,215,109, 74,180, 4, 73,115,245,186, 40,153,103,215,117,203, 86, 61, 16,197, +185,144, 17,214, 34,175,200, 12,132, 97, 66, 97, 26, 93, 45, 68, 69, 92,171,166, 62,207,216,105,234,218, 68, 1,221,156, 24,175, +157,122,221,114, 90,139,192,131,243,215, 13, 51,170,180,142,173,104, 65,100,170, 34, 21, 93, 31,199,188,147,225, 12, 10,232, 93, +173,109, 45,182, 33,126, 70, 84,210, 4, 8,141,202, 94,155,185,152, 76,164, 37,186, 10,193,185, 49, 10,239,138,184,126, 84,156, + 76, 24,174,103, 96, 28,194,245,242,115, 68, 15,215, 52,182,186,137,104,188, 4,138, 63,168,202, 77, 51,220,203,227, 98, 96, 35, + 17,220,109, 80,210,120,162,150, 98, 94,135, 15,135,236,154,242,168,171, 1,177, 17, 69,250,216, 25, 16, 2,133, 36, 81, 17, 51, + 76, 19,144,213, 90, 6,231,194,160,160, 48,120, 45,148,147, 69, 9, 42,150, 98, 67,251,153,195, 68, 6, 90,199,146, 65, 85,149, + 49,232,168, 7, 13,185, 93, 32,239,234,217, 4, 66,156,152, 87, 69,231, 22, 7, 27, 53,211, 2, 93, 75,220,188, 87,206,238,155, + 14,143, 57, 13,239,217,203,182, 75, 43, 91,111, 4,233,117, 39, 81, 93, 59,107, 38, 52,169,240,165,229,172,104,134, 58, 36,105, +104, 9, 80, 26,202,216, 70,164,181,166,215,207,113,149,197, 24, 21, 84,158,205,120, 76, 9,237, 28, 42,212,229,131,138,209, 54, + 2, 13,165,107,209,131,103, 58,217,137,244, 38,100,189, 30,131,229, 21, 68, 41,182, 54,214, 3, 53,110, 12,206,186,160,114,214, + 58,168,161,123,217, 92,149, 88, 83,110,174, 98,107, 99,157,197,229, 85,122,251, 22, 89,222,159,176,115,122, 59,140, 73, 85, 10, + 27, 79,248,124,138,144, 68,186, 91, 55,130,146, 44, 11, 89,184,179,237, 41,102,154, 52, 77, 49,137,102, 50,158,198,172,117,210, +156,216,178, 40,153, 76,138, 38,106, 79, 98,191,188,210,134, 94, 63,163, 44, 28, 73,170,231,206,182,172,168,202, 56,214,208,249, +166, 45,206, 86,150,170,242, 77, 43,154, 18, 67, 18,105,249, 26,228,181,146,144,173,247,123, 12,134, 3, 78,175,111,178,185,182, +206,194,210, 2, 75, 43,203, 60,240,185,227, 65,152,230, 92,211, 57,144,102, 41, 38,210,119,117,189,114,105,121, 33,102,194, 97, +106, 94, 61, 4,164,110, 93,145, 60,141, 76, 68, 0,217,217,116, 22, 38,236, 45, 44,115,247,103, 62, 75, 85,110,146,100, 41,101, + 81,209, 27, 44,144, 38, 41,179, 98,198,108, 58, 13, 0,148, 36, 49, 80, 20,108,165, 40,139, 9, 38, 73, 40,103,179, 56, 75, 32, + 37, 73, 12,197, 44, 46, 77,239,176,206,146, 42, 21, 71, 54,134,114, 79, 29,115, 45, 46, 45, 68, 96, 10,212,251,108, 58,142, 45, +116, 37,105,150, 5,193, 77,100, 75,234,207, 36, 73,202,206,230,102,147,133, 13,134, 75,124,217,243,159,195,167,254,252,207, 88, +217,183,143,125,135, 15,227,157,101,123,115,147,131,151, 94,198,253,119,223,141,179, 37, 90, 27,180, 78, 73,243,156,201,198,122, + 51,157,203,150, 5,149, 78, 91, 3, 83, 66,237, 82, 27, 77,146,246,120,214,139,191,134,123,254,250, 40, 59,155, 15,115,197, 11, + 95,195,137,123, 62,141,171, 38, 92,246,188, 87,178,189,246, 16,251, 14, 93, 4,190,192, 86, 54,150, 18,194,228, 70,239, 29,131, +125,151,178,246,224,113,182,214,142,135,178, 76,154,146,247, 7,161,198, 45,144,100, 9,182, 44,216, 57,189,193,120,123, 61, 40, +203,109, 96, 85,146, 44, 99,113,223, 33, 30,188,243,104,188,239,216, 53,182, 52, 56, 76, 27, 89, 33,221,244, 90,235, 52, 35, 91, + 56, 24, 70,246, 22, 35,198,227,205,121, 50, 27,155,130,149,214, 56, 87, 54,162, 56,105,234,143,186,153, 46, 25,232,233, 57,245, + 23, 58,189,132,188,191, 68,214, 31, 98,146, 60, 6,188, 97, 92,170,179,150, 98, 58,106,196, 85,243, 76, 54, 10,146, 68,135,128, +163, 6,200,166,102,106,231,131,106,118, 77,123,163,105,213,170,123,230, 67,246,171,112,182,140,181,100,213, 48, 10,160, 3,173, + 12, 40, 99,112, 85,156,181, 64,157,117,153,121,141, 28,217,149,157,138, 10,140, 99, 8, 18,234,190,253, 58, 40,117,243,122,185, +111, 77, 26,139, 10,241, 32,216,114, 77,246, 23, 74, 78,186,225,103,107,113, 89, 93, 19,118,126, 46, 62,171,135, 98,181, 6,129, +134,158,112, 57,195,184,208, 70,164,232, 98,253,218, 71, 65, 96, 0,217,250,123,124, 11, 64, 68, 20,226,109,152, 70, 41, 58,150, +222,170, 40,246,179,173, 65, 93,186, 9,194, 66,125, 94, 71,240,109,181,248,197,172,186,201,162,235,125,138, 44, 75,141, 41, 97, +212,117,160,221,235,178, 11, 94,197,253, 14,153,118, 96, 27,164, 41,105,250,168,250,247,209, 95, 91, 23, 2, 21, 17, 29,197,184, +134,202,210, 36, 68, 68,112,181,173,178, 9,177,157,141,216, 11, 95,179, 88,117,208,235,162,198, 64,107,141,117,150,196, 24,138, + 98,214, 12, 19,170,203,123, 8, 13,205,238,154, 73,138,243, 62,250,122, 13,184,102, 70,131, 52,215,198,215, 12, 88,211, 24, 33, +115, 49,165,204,127, 70, 62, 95,245,222, 68,112,106, 78,235,215,197,250,250, 30, 52,245, 56,192,122,176, 64, 85, 86, 81, 12,150, + 52,253,195, 42,102, 82,245, 76,241, 58, 19,175,138, 2, 81,138,217,180, 34,205,235,158, 99, 21,163, 24, 31,231, 12,123, 84,170, + 40,162,115,173, 5,119,161,254, 20,230,204,151,101, 9,147, 49,120, 75, 62, 24, 48, 88, 90, 65, 39, 9,219, 27,155,113, 24, 9, +232,216, 50,149,231,105,160,228,211, 36, 12,109, 49,181, 74, 86,129, 18, 70, 59,219,120, 60,203,171, 75, 44,173, 44, 49, 30,141, + 66, 95,120,116, 14,198,248, 70,140, 86,215, 80, 18,165, 98,251, 91, 80,232,215,103, 52,140,134, 13, 20,244,108, 26,178,224, 98, + 86, 53,153,208,246,214, 24,239, 44, 85, 25, 70,160, 6,186, 94,230, 34,144,152,213, 41, 29, 90,230,130,122, 56,212,179,195,194, +182,244, 7,121, 51, 63,223,213, 45,101, 38,244, 78,154,122,132,174,119,148,165,109,232,178,205,181, 13,246, 31,218, 71,146,165, +140,119,198, 60,116,252, 33, 14, 95,124, 8,165,117,168,165,215, 98, 38, 7, 89,150, 5, 49, 99,156,216, 6, 48,157,206, 90,109, + 63, 65,152, 83,255,205, 86,193,241,214,186,137,170, 44, 99,109, 20, 14, 94,124,136,149,125,171, 60,252,224, 67, 20,211,130, 52, +207, 72,179,140,254,112,129,233,169, 41,152,176,168,170,202,146, 24, 69, 21, 3,139,217,116,214, 56,168,178, 40,231,199, 24,233, +208,122, 30,130,107, 70,185,198,209,165, 58,180, 44, 13, 23, 6,161, 68, 2,108,159, 62, 77, 89, 22,177,219,162, 14, 22, 85,220, + 71, 69, 37,129,246,203,123, 41,167,215,202, 70, 74, 90, 85, 21,139,203,139,124,237,235, 94,205,237,159,248, 27,122,195, 5,138, +233,148,170, 40,209, 38,225,225,251,142,197, 58,161,208, 31, 46,131,210, 20,147, 29,242,193, 18,121,127,200,214,218,131, 77, 27, + 91, 24, 76, 17,196, 89,218, 24, 94,252,170, 35,120, 20,199,239,250, 36,171, 23, 61, 19, 17, 97,235,196,157, 28,190,226, 5,148, +165,101,178,245, 48,135, 94,114, 53,167, 62,119, 23,189,126,142, 73,116,164, 9, 61,217,240, 48, 59,167,183,216, 62,117, 31, 34, + 33, 32, 74,251, 67,242,254, 48,234, 74, 74,102,227, 17, 59,155,167, 40,139, 9, 74,234, 28, 58,172,185,213,195, 79,103,123,237, +193,102,118,183,243,101, 51, 40, 68,137,111, 4, 76,170,110, 87,146, 80,115,204, 23, 15,146,164,125,240, 21,147,157,141,224,132, +189, 39,142,152, 10, 83,187,156,109,209,170,170,105,235, 10,123, 16,187, 77,234, 81,157, 45,197,114,111,184, 76,214, 27,146,102, +189,160,137, 80, 38,172, 35, 28,101, 57,139,179, 20,122, 88,103, 81, 62,140,205,121,238, 40, 0, 0, 32, 0, 73, 68, 65, 84,241, +165,233,239, 13,140,139,173,202, 70,161,174, 98, 73, 38,168,137,107,125,175,111,169,193,125,116,176,117, 11,149, 71, 5, 78, 54, +222,143,122, 62, 85,189,165,210,158,211,169, 13, 9, 16,133,158,177,115,197,250,152, 81,250,185, 51,143,157,123,222,187,192,122, +212, 37, 0, 45,205,253,169,212,124, 4,105, 67,187, 70, 13, 73, 96, 53,124,171, 52, 62, 31, 55, 91, 11,233, 66,144, 84, 53,157, + 6,170, 25,125, 28,218,200, 92, 28,166, 68, 51,231,190, 37,153,174,149,215,222,199,118, 43, 21, 59, 55,124,211, 38, 38,187,104, +244, 57,208,134,172,155, 22, 64, 7, 49, 90, 45,174, 12,101, 17,213, 8, 20, 85, 92, 79,245,190,181,167,171,213,162, 48,165, 37, +100,245,113,226,158,167, 30, 74,164, 80, 26, 52, 6, 43, 14,113, 65,183,211, 48, 41,141,200,207,205,131,131,230,103, 21,129,180, +158,253,238,155, 26,186, 49, 73, 51,100,198, 91,223,244,121, 55,251,163,234,222,114, 63, 23, 64,170, 57, 19,237,156,199,232, 80, +122, 82, 18,124, 88, 45, 84,116, 98, 99, 23,150, 14,207,201,160,214, 47,184, 56,176, 38, 96,167,179, 85,195, 76,183,199, 70,215, + 9, 76, 51,214,182, 6,239, 61,153,120,131, 77,126,215,133,221, 85, 75, 15, 34, 4,118,181, 80, 54,195,148,108,101, 81, 49, 59, +244,117,141, 57, 77,154, 40,160, 42,138,102, 34,145, 68,119, 18, 68, 2,241, 36,216, 32,166,170, 23,105, 89, 86,177,159, 59,105, +196,105,225,166, 84,173, 33, 13, 97, 94,184, 73, 76,163,142,156, 77,103,108,109,110,179,189,121, 26, 87, 76,233,245, 7,172, 28, + 58, 68,150,247,154,186,126,154,154, 88,119,109,215,145,106,103, 18, 22, 69,146,132,135, 18,172,159, 92, 99, 86, 88,134,139,139, +244,250,189,144,237, 84, 33,106,206,178,148,188,151,145,229, 41,105,154,144,229, 73,168, 49,231,105, 84,110, 75,156, 29,158,227, +156,163, 40, 10, 70, 59,161,102,172, 77, 88,212,227,209, 52,170,164,101, 87, 93,176,158,251, 94,103,197,181, 80,194, 36, 10,157, +168, 38,202, 52, 70, 51, 24,230,205,108,253, 80, 59, 79, 67,230,220,170,103, 87,205,152,217,154,234, 47,216, 92, 91,103,103,123, +194,254,131,251,113,206,177,185,182,206,198,218,105, 14, 28, 58, 24,149,238,113, 28,170,146, 86, 22, 19,104,165,205,141,211,108, +172,111,178,179,181,205,120, 52,162, 44, 10,198,163, 17,163,157, 17, 91,155,219,140,118,254,127,182,222,235, 73,146, 44,205,238, + 59, 87,184, 12,145,145,162,116,181, 22,211, 35,129, 21, 92, 5, 35,214,104, 52,130, 70, 60,144,255, 42,159,104, 52, 35,204, 96, + 32,184,160,129,139,197,206, 46,118, 71, 79,119, 87,151,206,170,204,200, 12,233,226,250,189,124,248,132,123,246,238,140,141,245, +204,148,200, 8, 15, 15,191,159, 56,231,119,246,184,189,185,197,203,231,175,241,246,213, 91, 60,255,246, 57,158,125,253, 29, 94, +191,120,133, 24, 19,242,162,196,131, 71,143,152,191, 78,239,253,228,244,140, 11,184, 65, 5, 37,164, 28,117, 74,190, 58, 30, 27, + 56, 71, 98, 63, 35,136, 80, 55,162, 42,135, 48,240, 68,134,144,190,214, 57, 10,148, 72, 73,233,131,205,225,128,155,235, 53,107, + 59, 12,119,202, 94, 31,210, 4,235, 73,240,158, 20,229,237,241, 48, 98, 56, 97,113,125,121,133,162, 42,241, 39,127,249,103, 48, + 38, 34,134, 30,171,139,115, 92,189,125,131,208,183,248, 31,255,183,255, 21, 62,203, 81,206,150,116,120,119, 7,164, 24,240,217, +143,127,140,217,242,148,187, 13,206, 41,224,208,157, 15,190,248, 17,238,127,240, 1,186,221, 26, 85,189,196,227, 47,126,138,183, +191,251, 27,156,156,127,128, 98,126, 31,239,190,253, 91, 60,250,228, 71,112, 54,161,217,109,238,232, 20,242,217, 57,218, 54,224, +250,213,175,145,241,244,162,168,231, 40, 42,218,183,199, 24,208,236,110,113,251,254, 5,250,238, 64, 86,166, 20,148,255, 93, 47, + 47,224,108, 66,232, 54, 35,221, 77,239, 59, 22, 53, 33,242, 53,130, 94,247,114,126,129,106,182,128, 53, 3,218,253,154,114, 25, + 88,188, 68, 29,214, 8,108,209, 93,247, 68,197,172,208, 22, 86,186,203, 8,208,250, 2,229,236, 20,245,252, 12, 69, 57,227, 80, + 13, 79,225, 70, 67, 68,115, 60,176, 6,129, 10, 11,162,219, 85, 40,202, 57,178,188, 70,150,229,234, 63,166,238,201, 79, 24,225, + 18,158, 50, 1,210, 88, 81, 87,143,226,182, 41,251,221, 89,135, 44, 47,117,244, 58, 70,222, 72, 91,197, 2, 63,238, 58, 13,171, +219,199, 9, 64,198, 35,103, 40, 72, 74,133,104,105,220,171, 79, 89,220, 35,192, 38,170,194,125,228,128,147,165, 77,247,241,102, +250,186,160, 34, 51,234, 24, 71, 58, 90,156,232, 25, 98,250,158, 56,237,123,255, 53,169, 32, 45,233, 56, 62, 37,242,131, 83, 97, + 52,168, 64,117, 8, 65,247,187, 52,146, 30,197,147, 2,110, 73, 60,245, 75,162, 76,215,125, 56,161, 96,199,107, 50,117, 12, 88, + 21, 37, 14, 17, 19,119, 0,116,183,174, 88, 88, 70,125, 67, 80,174, 92,112, 36,121,112,218,241,222,163, 17,243,116,173,233, 89, +208, 54,226,134,201,198, 54, 17, 27,242, 58, 69, 66,178, 70, 93,137, 27, 97, 68,211, 17, 62,235, 30, 98,164, 85,158, 76,173,232, +204,163,103, 12,225,171,211, 68,247,193,133, 14, 70,141,129, 56, 41,244,108,224, 41,192,200,110, 72,119,225, 51,105,186, 91, 55, +248,231,246, 43,186, 74,249,222,162, 61,165,187,211, 26, 43, 41, 77,130, 20, 21,182,179,207, 70,236,170,168, 43,197, 50, 97, 21, + 98, 31, 21,170, 96, 89,205,105,173,225,132,178, 17,225,104,153, 24,103,140,165,238,131, 71, 57,162,128, 6,139,156,128,136,227, +126,143,205,205, 45,154,253, 14,121,158, 97,190, 58, 69, 89,207,216, 70,230,149,236,165,106,123, 55,126, 72,116,224, 10,159,122, +192, 97,187,193,110,123, 64, 89, 87,154,224,230,249, 48, 41, 75,234, 96,139, 50,199,124, 49, 67, 81,230, 4,152, 97,118,253,124, + 73,232,208,190,235,208, 30, 91,190,183,104,109,208, 28, 26, 14,126, 25,198,113, 49,219,184,178,194,179, 56,111, 84,223, 11,125, + 47,244, 52,138,201,203, 28,245,188, 98,139, 85,166,162,185, 60,207,239,116,232, 10, 64, 96, 64, 67,123,108,249,115, 50,120,255, +246, 61, 96, 60, 39,158, 13,120,253,226, 37,156,207,113,118,126, 78,225, 53, 5,137, 63,132,186, 38, 28,252, 60,207, 80,112, 2, + 88, 8, 3,118,219,131, 90,127, 8,246, 66, 52,184,158,177,175,132,166, 61,224,213,243, 23,120,247,102,141,247,151,239, 16,134, +136,162, 44,177, 92,173, 16,194,128,249,201, 74, 15, 1, 74,207,139, 44,154, 27, 52, 44,230,184, 59, 96,185, 90,226,176,223, 35, + 47,115,228,185,103,209,147, 84,207,244,160, 12,253,192,225, 62,100, 31, 36, 98, 28, 5,235,208,107,217,179,254, 33,142, 4, 58, + 3, 62,100, 73,255, 96,172,135,115, 6, 79, 63,254, 20,143,159,126, 12, 48, 30,182, 57,236,241,183,255,233,231, 56,123,120, 15, +125, 75, 54,188,106,190,192,118,125, 3,107, 29,222,188,188,196, 95,254,219,255, 25,245,124,129,237,205, 6,161,111,209,181, 13, +158,255,246,119,248,248,135, 63,161,245,145,247,122,207,221,123,242, 33, 62,248,242,115,124,247,219,111, 80,205,107, 60,249,234, +143,240,254,197,215, 0,128,139, 15,127,136,247,223,253, 2,101, 85,227,195, 47,191,196,246,234, 45,178,124, 20, 36,186, 98,129, +126,240,184,126,249,107,253,110,185,156,130, 87,202, 50, 67,232, 90,236,110,174,176,189,126, 77, 96, 27, 69,181,210,104,117,182, + 88, 97,117,239, 17,182,239,159,235,148,194, 57,199,215, 45,169,254,133,166, 74, 81,201,113,197,236, 12,203,243,251,168,170, 28, + 22, 68, 51, 44,103, 11,100,249, 12,245,236, 4,121, 89,195,231, 21,124, 86,194,250,130, 31,196, 78,197,102,226, 55, 38,149,183, +135,203, 74, 24,151,195,186, 10, 89, 62,195,114,117, 14,155,149, 8,201, 34, 12, 6,125,160,220,136,227,126, 79, 22,203,104,144, +140, 87,133,114, 2,249,242,125, 86,194,101, 53,124, 94,194,249,156, 45, 86, 99,103,125,215, 18,102, 56,204,198,168, 18,218,232, +104,158,214, 72,214,121,221,223,210,200,181,132,243,133,134,136, 76, 5,115, 70, 14,117, 99,245,160, 72,178,123,213,229,247,100, + 34,193,247,245,196, 72, 54,225,125, 70, 86,198, 59,157, 58,165, 9, 1,109,228,201,143,226, 59, 65,143,138,208,212,240,245,142, +140, 46, 37,235,220,104,207, 75,105, 60, 18,210,247, 65, 37,122,200,203,180,110,228,245, 71, 57,156, 13,238, 64,132, 52,244,133, + 39, 95,152, 16,209, 4,169, 74,135,254, 8, 94,129,185,235, 52, 48,242,190,210, 52,236, 38,221,229,163, 79,236,117,102,162,129, + 72, 48,147,240, 23,167, 97, 96,227,234,131, 41,121,188, 30,182,198, 50,213,145,127, 63,139,251,196,189, 48, 61,226, 68, 16, 39, +118,229,209,138, 38, 89, 2,238,206, 25, 68,169,156,152,100,132,140,170,109,209, 70,196, 72, 28, 1, 51,129, 28,201,143,140, 92, + 64,141, 46, 4, 51, 73,216,251,167, 7,241,212,190,118,135, 36,243,125,149, 28, 79,223,116,245, 1,189, 44,119,128, 55, 64,130, +205,178, 92, 11,162,204, 59,102,113, 59,120,111,149, 41,142, 56,101, 59,243,173,204,128,150,178,204,248, 2, 36, 77, 33,242, 57, +169,201, 59, 70,147,138,154,150,246,205,227,141,100, 57, 25,106,244,166,146,130,244,120, 32, 49,212, 97,179, 69,150, 57, 44, 79, + 87, 56,127,112,143,186,156,239, 37, 11, 1,196, 50,247,153,211,144, 16,217,145,164, 20,113,216,110,177,189,221,161, 40, 43,156, +223, 63, 83,187,152,140,186, 37,100,164, 40,115,246,221, 59, 84, 53, 29,248, 93, 23,212,159, 40,160,148,174, 11,232,251,128,182, +105,201,119,159,128, 44,151,164, 52,175, 54,182,148,198, 14, 84,128, 25, 96, 98, 81,150,101,232,251, 65,121,234,116,232,228,202, +162, 79, 49,170, 26, 62,165,136,190, 11,234,133, 31, 2, 89,252, 14,187, 13,186,182,195,234,252, 20,113,136, 56,236, 15,120,249, +221, 43, 60,253,248, 41,234,186,198, 16, 56,177, 46,129, 25, 2, 94,255, 19, 36,137,142,175, 83, 8, 3,134, 48,160,107,123, 13, +195, 33,208, 78, 67, 96,162,221, 30, 49, 70,236,182,123, 28,246, 59,188,120,246, 13,110,215,107,148, 85,137,122, 86, 97, 54,159, + 99, 54,155,211, 52, 32, 4,253, 18, 80,172, 43,189,191,253,110,139,217, 98,129,195,118,207,122,140, 74,175,105,226, 80,142,129, + 69,150,164,190,103, 5,126,238,149,226,183,190,186, 86,255,173, 4, 85, 8,178, 81,104, 77,214, 0, 85, 93, 3, 72,120,246,187, +223,224,147,175,190,194, 71,159,126,137,139, 7, 15,176,187,189,133,113, 57, 82, 76, 88,174,230, 48,198,226,230,106,141,174,165, +213,199, 47,254,230,175, 49, 95,157, 97,113,186, 66,123,220, 48, 98, 56,195,237,245, 27, 0,192,253, 39, 31,234,151,172,154, 47, +241,213, 31,253, 33,222,189,126,135,183,223,252, 14,243,213, 25,202,122,134,155, 55, 95,227,241,231, 63,195,110,253, 14,222,246, +184,255,225, 15, 81,214, 25, 16, 3,170,249, 28,229,172,130, 47,230, 72,254, 4, 87,207,255, 17,206, 12,200,139, 2, 89, 62, 67, + 53, 91,162,172,115, 12,161,193,126,115,131,246,112, 67, 34, 27,166,213, 73,231, 69,158,247,159, 98,251,254, 25,163,123, 39,156, +124, 38, 48, 10,245,206, 26, 81, 53, 71, 84,243, 51,156, 61,120,138,197,114, 6,147, 58,248,204,162,154,213,152, 45, 22,152, 45, +230,200,171, 26,245,252, 4,245,108,137,162, 94,194,103, 37,178,172,210, 14, 25,106,205,177, 48,174, 32, 2,157,113,112,190, 64, + 86, 84,168, 22,167,128, 43,144,140, 71, 74, 52, 34,141, 97, 64,232, 90,244, 66,246,211,180, 51, 70,161,106,105,102,225, 92, 14, +235,114,248,124,134, 44,175, 96, 12, 59,104, 24,225,105,212,135,110,245,144,167,162, 49, 83,229,153,157,142,179,185, 91,148,180, + 54,245,107, 59,199, 29,160, 85, 71, 10,253, 30,171, 98, 52, 96, 36, 66,170, 34,154,187,219,164,180, 55,166,193, 49, 36,103,136, +114,232, 49,212, 74,224, 36,214,194,186, 12,214,229,112,158,138, 31,159,207, 96, 93, 9,227, 10, 85,116,143,168,219,105, 23, 47, + 74,125, 34,169, 77, 69,119,233,142, 36,123, 82,160,164,187,220,123, 17,222, 25,214, 75,141,142, 17,233,138,237,168,120,183,164, + 70,143,156,219,145, 18, 93,123, 65,168, 10,179, 95,126,198, 52,222, 85,197,205, 19,119,132,172, 50,132,227, 46,148,182, 52,225, +238, 75,103, 46,207,127,125, 94,138, 69,141, 11, 36,241,210, 39, 22,155, 25, 51,117, 49, 24,181, 89,139,123, 70,138, 79,128, 96, +106,170,214, 55, 86,167,205, 52,157,224,144, 24, 22,135, 12,236,208,208,169,180,238,252, 19,239,246,169, 88, 10, 33,208,223, 43, +147, 66, 22,211, 77,187,238, 24,199, 67,126, 42,126,251,103, 52,236,147,252, 84,243,207,254, 14, 1, 12,141, 5, 93, 82,145,241, + 8,183, 1,108, 94,144, 39,187, 40, 50,164, 52,162, 82,201, 51,105, 21, 11,155, 34,189, 17,171,118, 25,250, 42, 14,129,189,192, + 41,114,124,169,228, 6, 27, 20,101, 49, 34, 18,121, 44, 38,227,125,231, 61,251,171, 35, 83,194,162, 86,170,214,209,135,176,189, +189,197,238,102,141, 24, 58,248, 44,199,201,249, 57, 22, 39, 11,250,243, 19,175, 57,237,202,157,238,141,221, 36,129,140, 2, 77, +246, 88, 95,221, 32, 37,139,211,243, 21,202,178,196,108, 81, 97,177,172, 53,240,101, 68, 7,210,129,127, 60, 52,108, 11, 35,180, + 41,140,193,241,208,162, 57,146, 88,174,109,136,197, 45,106,111,192,234,251,146,209,158, 60,104,219,166,215,100,180,140, 15, 41, +239,157,190,126, 9,158,145, 36, 56,241, 92,183, 71,217,143,199,201,104,218,168,215,255,197,179,151,240, 62, 71, 61,155, 33,132, + 1,235,235, 43,220,222, 28,240,224,241, 67,221,137, 11,227, 88,252,244,178, 34,232,218, 30, 93,215, 83, 30, 61, 71,174,246, 93, +143,227,161,197,225,208,162,109, 90,180,109,139,166,105,121,170, 18,177,185,217, 96,117,186, 66,215,182,120,253,226, 57,190,249, +237,215,164, 11, 88,204,113,114,186, 66, 8,129,191,108, 81,195,125, 36,195,249,176,219,163,172,107, 28, 15,123, 94, 99,176, 35, + 65,210,205,100, 55,101,160,209,166,121,150,147,208,207,123,120,103,176,219,108, 38,123,200,145,213, 45, 64, 12,231, 12, 3, 97, +114,116, 77,139,188, 40,240,245,175,127,139,199, 31,125,140,175,126,246, 35,236,110, 55, 56,127,248, 0,151,175, 46,241,224,201, +125, 20,117,133,215,207, 95, 78,178,146, 19,254,191,255,240,215,248,232,139,143, 17,187,195,152, 14,150, 18,190,251,213, 63,226, +233,231,159, 35,207, 11, 20,101,129,159,253,197,159,227,242,249,115,180,199, 6,251,205, 53,230,167,167,120,251,245, 47,113,254, +248, 51,116,125,196,241,246, 53,150,231,143,241,209, 87, 95, 33,245,123,210, 31,148, 57,117,140,245,125,172, 95,252, 18, 38,245, + 28, 62, 84,163, 94,158, 98, 54,207,225,204,128,253,102,131,102,127,203,156,118, 9,238, 24,128,212,195, 58,139, 7, 31,253, 4, +135,155, 75,116,205,150, 39, 72, 73, 39,104,227, 14, 60,233,186,204,152,132,114,182,194,234,193, 71, 88,156,204,145,134, 14, 6, +145,156, 15,121, 1,235, 61,140, 99, 16,146,245,176,220, 41, 75,183, 46, 62,124,234,110,232, 61, 88,151, 97, 24, 12,146,201,224, +139, 25,170,217, 9,178,162, 64,215,247,172,155, 33, 93, 77,232,143,104, 14,183, 36,184, 75, 3,189, 46, 59,142, 31, 35, 12,217, + 98,157, 83,193, 26, 21,251, 57,242,162,254,231,109, 63, 60,230,165,142, 94,186,114, 9, 13,241,106, 43,213, 61, 47, 67, 75,192, +222, 99, 25, 82,170,194, 61, 77,187, 71,234,220, 92,150,113,103, 74, 43, 48, 24,233,116,199, 3,147,194, 72,210,100, 41, 31, 53, + 54,152, 18,190, 50,184,108, 6,235,106,184,108, 6, 95, 44,224,124,141,100, 11, 88, 87,193,216, 2,198, 22,112,190,134,243, 21, +172, 47, 97, 93,174, 7,156,140,253,199,104,228,120, 7,254, 35, 7,185,142,188, 89, 71, 51,122,156, 89,176,197, 8,105,202, 77, +183,250,217, 8,213, 76, 86,115,114, 0,202,232,154, 18,202, 48,194, 93,100, 21,145,104,196,141,196, 5, 18,143,219, 97,100,236, +205,193, 45, 12, 4,139,105,202, 11,176, 99,145,104,204,157, 72, 86,153,194, 90, 55, 6, 51,201,217,161,226, 65,123,119, 76, 31, + 83, 34, 82,161,209,236, 87, 22, 7,210,123, 18,106,166,132, 11,137,206, 33,207, 51,125,142, 56, 94, 81,138, 75,233,142,103, 92, +139, 51,250,108,133, 83, 33, 22, 90,209, 79,221,225, 3, 76,130,207,135, 97,152, 28,228,230, 14,235, 93,239,209, 73, 65,247,207, +255,115, 2, 52, 26,221,206,250,236, 76,233,110, 83,111,169, 18,179, 58,122, 32,171, 80,212,110,220,177, 42,122,140, 39, 37,187, +145, 84, 53,137, 13,254,212,161, 58,141,227, 27,194,128,190, 31,198, 17,123, 98, 98, 24,135,120,200,104, 73, 50,204,227, 48,112, + 38, 56, 7,218, 51,241,168,107, 90,108,214,107,236, 55, 91,100,222, 98,126,114,130,106,190, 68, 53,171,245, 93, 80,228,231, 64, +112, 23, 47, 55,194, 8,131, 32,161,219, 17,219,219, 91,196, 4,156,221, 63,195,108, 94, 3, 48,152, 47,102,186,118,144, 3, 62, +165,196,244,187,136,162, 36,111,112,232,130,170, 45,250,182, 39, 91, 19,143,136,133,239,158, 82,130,227,137,129,207,156, 86,158, + 52,174, 49, 42,162,147, 95, 55,220, 17,139,162,218,121,199,211, 2, 67,221, 35, 39, 84, 77, 41,254,161, 15,232, 58,178,189,109, + 55, 55,120,251,230, 10, 23, 15,239,147,231,220, 57,188,121,245, 10,167, 23,103,168,231, 51,238,156, 7,132, 46, 48,119, 30, 35, +139,153, 63,203,190,235,177,223,239,245, 75, 45, 0, 29, 37,134, 25,104,113,119,115,189,198,233,249, 57, 93,159,174,197,203,103, +223,194,154,132,213,217, 10, 15,158, 60,225,135, 67,208, 47,130,238,180, 44,225,129,235,249, 12,205,225,128,148, 34, 19,217, 56, + 63, 96, 96, 66, 97, 24, 3, 97,172,115,240,121,206,133,146, 67,115, 56, 98,183,185,157, 12, 60,205, 8,201,152, 40, 76,140, 73, + 40,203, 10,137,153,204,247, 31,220,195,239,126,241, 75,228, 85,133, 15,191,248, 20,101,149,227,213,179, 87,200,203, 2,155,245, + 26,187,205, 86,199,175,224,142, 37, 14, 17, 95,254,228, 43,165,196, 25,107,209,119, 13,222,126,247, 2,159,252,232,199,248,241, +159,252, 9,182,215,239,209,118,192,205,155,239,112,239,195,207,177, 93,223,224,222,227, 71,152,157, 62,192,237,155,111,176, 56, +189,135,211, 7,143,177, 60,157, 51,102, 55,167,142,193,173,112,243,234,183,176, 38, 32, 70, 3,207, 7,122, 85,121,164,161,197, +110,179, 70,104, 54,148, 65,206,234,122,154, 64,210, 61,112,250,224, 83,120,111,177,187,126, 65, 25,232,146,119, 16, 7,142,180, +165,215,108, 13,237,211, 13, 6, 20,213, 18,167, 15, 62,193, 98, 89, 35,246, 13,186,246, 8,227, 50, 24, 62,196,157,203,136,110, +152,229,100,196,178, 14, 96, 16,136,115, 57,237,191,179, 18, 46,171,224,124, 1, 88, 25,155,231,168,102, 11,204, 22, 75,248, 60, +227, 80, 34,135,204, 91, 32,246, 8,205, 6,237, 97,141, 52,116,112, 54, 1,177,167, 85, 66, 12, 28, 62, 34, 43, 52, 94, 89,249, +140, 45,150, 57, 63,220, 51,248,188,100,110,248,216, 89, 98, 50, 53,208,238,118,194,114, 31, 83,186, 44, 79,131, 70, 42,220,120, +224,115,135, 47,193, 31,220, 85,201, 24,153, 81, 22,163, 16, 48, 70, 12,241,110, 23, 37,222,116, 57,232, 70,161,158,131,207,231, +176,190,162,105,134, 47, 0,155,147,173,207,120, 56, 87, 32, 25,199,147, 14,203,208,149, 2,201,228,128, 45, 96,125, 5,227,114, + 62, 24,121,175, 29,122,237, 80, 19, 19,214,244,240,143, 99,168,201,116, 29, 43,141,216, 93,223,124,210,224, 40,176,224,140, 72, +110,126,114,152, 73, 81, 33,187,229,164, 19, 9,185,126, 67, 24, 40,236, 40, 26,101, 5,168,229,111, 18, 19, 42,145,166,244, 8, + 51,250,204,211,164, 52,254,251, 28,255,124, 35, 49,168, 28, 35, 43, 94,119,249,124,113,135,251, 79,110,170,105, 52,173,252,119, +167,251,127,163, 83, 28, 13,136,193,216,192,165, 9,230, 77,154, 44,107,238, 10,139,165, 75,151, 53, 40,144,116, 42, 51,134,123, +197, 73,240,209,228, 94,152, 58, 20,204, 93, 39,133,193,221,215, 44, 69,168, 21,184, 15, 31,246, 86,113,222,102, 18,251,251, 79, +119,238,134,139, 11,235,189,229, 40,196,113, 95,227,120, 31, 39, 99,189,162,204,244, 48, 10, 93, 79, 42, 63,107, 52, 43,216, 78, +118,156, 25,119,160,224, 49,105,158,123, 56, 75, 68,180,190,239,168, 56,224,110, 44,207,115, 62,248,104,231, 36,130, 26, 39,251, + 48,190,161,134, 48,224,176,223,226,118,189, 65,232, 58, 20,101,129,122,113,130,147,179, 83,148, 85, 73, 20,187,204,107,229, 53, + 4,134,227,176,101,204,178,255, 57,197,136,221,237, 22,113,136, 56,189, 56,197,189,135, 23,164,114,229, 67, 51, 14, 52,234, 78, +145,170,195,122, 49,131,243, 14, 93,215,163,235, 58,180, 13,253,147,162, 82, 61,202,178, 68, 94, 82, 33, 18,135,136,178, 42,120, +180,147,208,182,129,187,126, 16,206, 51,141,235,130,209,182,101, 20, 17, 43, 54, 46,103, 45, 77, 8, 88,144, 49,132, 65, 65, 55, +116,160,247,180, 95,111, 91, 28,118, 7, 92,190,126,131,178,170,113,113,255,156, 86, 6, 77,139,231,223,190,194, 71,159,126, 56, +190, 55,134,164,116, 93, 64,215,145,186,157,168,112, 3,218,230,136,174,105,113, 60, 54,104,142,157, 38, 20,229, 98, 99,180, 35, +135, 96,187,185,193,233,197,153, 38, 13,246, 93,131,183,175,222, 32, 38,131,199, 31, 61, 69, 89,150, 10, 23, 25, 87, 81,244,101, + 12,221,145, 96, 16,161, 71,232,123, 2,159,100, 94,215, 48,194, 74,150,107, 2, 0, 85, 85,106, 26,223,126,183, 67,223,181,218, +157,219, 73, 78, 1,197, 63,142, 57,218,101, 93, 97,191,219, 97,119,251, 30,235,171, 53,206,238,221, 71,138, 3,242,106,142,147, +147, 26,195, 64, 28,254,223,253,195, 47,185,139,225,181, 72, 94,163,168,231,248,197,127,249, 57,126,242,199, 63,155,196, 80, 90, + 56,151,225,250,242, 53,206, 30, 62,196,124, 57,195,155,239, 94, 32,203, 61,169,255,151, 43,236,174,222,226,225, 39, 95,224,253, +243,223,227,228,236, 20,245, 98,129, 7, 31,125, 12,103, 2,242,156, 84,242, 61,150,216,189,127, 9,239,122, 12, 33,194,101, 5, + 22, 39,167,168,234, 28,113,232,176,187,189,193,113,119,171, 2, 76,239,189, 38,127, 1, 3,234,249, 57, 86,247, 63,192,229,179, +255,166,247,189, 0,153, 8,249, 74, 78, 6,195,161, 29,116,104, 58,172,238,125,136,229,233, 9, 98,104,208,119, 71,197,203,250, + 44,131,147,104, 96, 7, 78,161,115, 10,212,160, 14,216,113,103, 94,194,250,146,242,174,163,129,113, 25,230,139, 37,225, 95, 13, +209, 18,173, 51, 72, 49,160, 61,238,113,220, 94, 99,119,115,137,238,184, 65,232, 15,232,154, 29,186,246,128,230,112,131,174,217, + 33,198, 14, 67,104, 53, 99, 93,196,112,145, 69, 87,196,166,231, 20,188,172,212, 66, 63,106, 94,183,229,174,124, 20, 76, 9,106, + 84,124,197, 98, 93, 26,195, 81,160, 99,101,141,232,116, 30,198,121,190,110,110, 12, 27, 73, 24, 19,238,144, 84, 45, 77,207,148, +129, 5, 96,147, 3, 93,247,239, 25,165,220,101,164, 75, 72, 24,119,189,198,121,248, 60, 31, 31,208,214, 33, 25, 71, 92, 49, 51, +134,229,200,107, 52,214, 43,255, 34,114,230, 65, 24,194, 8,170,249,126, 52,167, 76, 51, 20,158, 50,194,101, 20, 78, 50,233, 27, +137, 95, 78, 26, 1, 42,232,205, 40,186, 98, 32, 14, 1,181, 60, 89,112, 49, 58, 86,198,201, 0,249,217,147, 76, 63, 32, 98,182, +239,117,154,176,236, 93, 79,227,250,130,127,134, 78, 86,153, 5,111,120, 10, 67,148, 61, 22,181, 9,180, 6,105, 18,207,107,198, +159,195, 26, 11, 90,131,102, 58, 89,138, 28,245, 43,154, 18,105, 98, 37,101, 83, 20,244,146, 58, 72, 77, 5, 1,217, 66,223,211, +234, 75,149,243, 78, 57, 9,113, 24, 65, 91,130,171, 86,209,164,168,220,133,209, 46, 25,239,186, 34,113,119, 15,115,216,137, 0, +209,170, 6,203,232, 97,239, 88,248,236,249,208, 55,255,196,179, 62,221,196, 88,164, 68,177,171,118,220,109, 11,119, 93,236, 88, +102, 2, 87,200, 11, 30, 75, 73,146,150, 10,114,172,226, 37, 29,167, 89, 13, 33, 16,139,156,225, 16,121,158,161,239,122, 85,227, + 58,111, 73,208, 37, 10, 69, 79, 74,198, 65, 41, 81, 73, 81, 10,206, 90,244, 93,135,205,122,131,195,110,135,208,119,240, 89,129, +217,201, 10, 37,191,254, 44,247, 58,190,137, 42,118,136,122,163, 58,103, 81,205, 10,244, 93,139,174,235, 81,214, 21,170, 89,141, + 44,203,148, 83, 31, 99,164,224, 17, 86, 35, 27, 24, 18,142,117,129,133, 35,134, 11, 8,222, 81, 69,186,241,229, 64, 23, 86,185, +181, 22, 93,219, 35,203, 28,103,196,123,148,101, 78, 35,116,217, 9, 59,163, 54, 56, 17, 30,138, 79, 85, 34, 18,199, 66, 32,160, +109,105, 28,223, 28, 91, 28,143, 45,117,248, 6,120,247,246, 26,231,247,239,179, 10,212,224,230,250, 26,109, 27,240,228,131,199, +172, 94,141,202,144, 86, 46,124,215, 49,217,171, 69,115, 60,162, 57,182,176,214,240, 90,192,106,248,204,152, 73, 28,208, 53, 71, +228, 5,209,232, 72, 83, 1, 92, 93, 94,226,234,237,123,156,156,157,226,236,226,130, 70,192,186,239,146,244, 44, 78, 52, 10, 1, +153,119, 56,236, 14, 40,171, 28,121,153, 79,210,183,136, 32, 39,233,121,206, 89,148,117,173,163,174,155,247,215, 92, 56,210, 61, + 7,246,237, 71, 22,229,121,239, 84,181, 92,148, 5, 98,160,244,175,245,213, 37,125,238, 53, 65, 80, 54, 55, 91, 60,249,244, 3, +154, 16,132,110,228, 55, 15, 3,170,249, 18, 9,192,245,219, 55,184,189,217,225,236,254, 3, 62, 72,168, 83, 88,157, 95, 96,121, +182,194, 55,191,252, 21, 22,231,143,176,185,124,129,139, 15, 63,199,229,215,191, 66,178, 5,118, 55,215,168,170, 12, 69, 85,227, +244,222,125,156,221, 59,197,113,183, 69,215,118, 56,116, 5,250,227, 22, 38, 30,176,189,217, 32,165,136,211,243,115,204, 79,230, + 24,250, 30,187,219, 27,242,111,115,158,130, 70,133,114,151,238,156,199,147, 47,255, 16,111,190,254, 57,135,184, 48,127, 32,209, + 30, 47, 14,228,217, 55,198, 34, 43, 42,222, 79,123,212,171, 15,176,186,184,128, 77, 29,186,195,142, 11, 34,135,188, 40, 20,186, +100,144,144,134,128,161,111, 97, 18, 21, 86, 89,158,243, 3,178, 0, 76,166,157,166,203, 10,248, 44,195,108,126,194, 46, 25,234, +222,178,140, 30,120,161, 61, 98,119,123,137,221,230, 45, 66,191, 69,140, 29, 98,236, 49,196,158, 99, 92, 35, 98,236,209,183, 7, +132,190, 65,215, 30, 48, 12, 61,226, 16,116,135, 25,120, 37,228,157,211,201, 94, 86,212,176,206,243,190,148, 0, 65, 81,125,215, + 96,109, 8,219,144, 66, 15,231,243, 81,140,102,238,118,232, 18, 26, 66,234,118, 81, 20,155, 81,200, 6,139, 40,187,242, 59, 20, + 57, 14,236, 16, 0, 74, 28,197, 80,116,160,123,248,188,134,117, 57,133,229, 88,210,100,168,154, 95, 50,201, 13,168,136, 48, 73, +227,116, 37,124, 36, 74,186, 90,154, 76, 65, 85,108, 53, 76, 50,198,211,157, 61,181, 28,148, 41, 78, 85,248,230,142,197, 76, 96, + 39,145, 21,231, 70,199,219, 78,133,149,138,116, 29, 2,195,200, 28,226, 16, 88, 60,152,184,224, 20,165,248,168, 40, 31, 99, 80, +141, 30,152,114,141,192, 68, 57,113, 54, 56,231,190, 55, 61,241, 42, 94, 27,113,171, 35, 43, 64,166, 10,100, 87,131,226, 93,237, +100,146,102,184, 72, 85, 66, 46, 79,251,100,242, 70,241,194, 20, 58,214,117,129,167,133, 14,211,122,202,186,145, 99, 34, 25, 22, + 49,113,215,143,201, 58, 99,204,229,229,207,100, 60, 99,172, 76, 43, 39, 54, 58, 57,199,244, 32,159,216,169,197,105,112,135,132, + 40,136,103,126,118,170, 85,205,140,147, 13, 37, 69, 78, 51, 87, 37, 27,136,132, 31, 19,252, 96, 26, 5,111, 72,212,241,166, 72, +190, 92, 58,180,248,129,157, 6,164, 24, 52,212, 64,152,230,113, 24, 16,195,128,188, 16, 34,221, 64,225, 46, 44, 76, 40,203,156, +198,220,153,215, 55, 64, 1, 31, 30,158,133, 92,114, 96, 2, 84, 93,249,140, 16,128,210, 69, 14, 33,160,217,239,209, 29,247,136, + 67,192,226,100,137,197,234,148,226, 43,237, 24,170, 16, 99, 66,158,231,188,179,206, 49, 91,212,152,205, 43,238,156,105, 71,156, + 23, 57, 19,218, 60,142,135,150,200,111,121, 70, 66,191,182, 67,115, 56,234,184, 93,246, 82,206,123, 21,211,137,136, 46,113,128, +139,168,213, 83, 28, 80, 20,217,196,107,106, 39, 20, 41,154, 74,116,109, 96, 95, 56,173, 15,132, 77, 95, 85, 5, 23, 70,164, 45, + 24,134,129,173, 64, 64,215,117,228,255,230, 49,107, 8, 1,215,239,222,193, 88,143,123, 15,239,177, 98,191,199,183,191,127,134, +147,179, 51,148,117, 73, 30,247,152, 24,153, 8,218,165,247, 61,246,187, 61,154,134,246,230,202,199,215, 47,137,213, 85, 74,226, + 93, 82, 74,195, 29,145,144, 1,208, 28,182,184,124,245, 6,109,211,225,193,147,199, 12,154, 8,228, 51, 6, 56,146, 20, 44, 50, +164, 16,152,195,118, 7,231, 61,178, 44,215,241, 59, 56, 36, 70,174,167, 49, 22, 85, 77,249,224,161,239,113,179, 94,223, 17, 71, + 10, 95, 91, 83,237, 88, 36,231,125,198,222,248, 35,133,201,108,111,112, 60,182, 40,170, 26,222, 39, 92,191,187,166, 95, 63,144, + 26,159, 30, 96,116,144,214,243, 19,130,130, 96,192,175,127,254, 75,124,254,227, 31,234,248,171,172,103,248,217, 95,252, 25,190, +249,135,127,192,234,254, 35,248,204,227,228,222, 3,236,111,174,145, 85, 21,251,169, 41, 65,109,182,152,225,226,233,135, 72, 67, +139,246,112, 64, 19, 10, 28,118, 71,196,110,131,219,245, 45,250,174,199,236,228, 20,213,108,134, 33, 4,236, 55,107,116,205,142, + 59,148,140,194, 54, 44, 61, 88, 8,156, 18,241,244, 7,127,138,155, 55,207,208,236, 46,201,230,153, 57,205, 12, 39, 27, 31,237, +103,179, 98, 78,226,181,172,194,108,245, 49, 78,239, 63, 2, 98,192,238,246, 10, 41, 5, 21, 13, 9, 42,185,111, 41,201,175, 57, + 28,145,210,160,214,157,161,239,128,100, 48, 36,135,152, 40, 37,206, 88, 7,159,229,152, 45, 78,244,251,158, 21, 5,107, 76,142, + 56,238,214,216,221,190, 69,215,220,234, 62,255,206,252,209, 90, 13,188, 24,239,171, 30, 93,123, 64,232, 91,205, 85,151, 83, 72, + 58, 76, 57,216,197,139, 12, 67,216,230, 49,115, 28,227,193,233, 61,172,203,117, 36, 79, 48,155,168,221,177, 28, 20, 50,197, 74, +176,128, 40,237,173,163, 61, 61,255, 94, 64, 82, 22, 3, 6, 9,237, 0, 52, 58, 89, 34, 83,197,142,102, 93, 9,235, 72, 97, 47, + 5,129, 4,205, 24,195,214, 43,231,244,224, 67, 26,115, 42, 68, 40, 74,205,209,160, 66, 54,249,185, 49, 37,141,106, 78,147,241, + 54,237,172,205,104,187, 27, 99,177, 20,255, 42,232, 85,121, 14, 73,160,207,104,223, 98,108,233, 36, 80, 68,178,206, 97,173,134, +176,200, 72, 94, 68,142,146,136, 22,185,113, 96, 96, 40, 95,247,187, 33, 42, 73, 45,122, 24, 33, 43, 19, 81,163,238,208,133,195, +206,159,115, 76,162,108, 55, 60,133,201, 52, 69,146,118,235,118, 50,242, 7, 71,132, 91, 13,197,113,206, 82, 1,155,198, 68, 55, +217,133,247, 93, 79,211, 37,190, 78,116, 29, 6, 18,187, 41,162,151,252,254,131, 10, 11,217, 78,171,180,198,105,192, 79, 82,132, +186,157, 8, 58,133,127,161,215, 67,249, 0,162,137,136, 99,194,154, 53,218,161, 79, 27,237,239,227,129,245,223, 26,238, 51,238, +217,173, 49, 81, 31,160, 69,145,241,184,211,142, 62, 71, 46, 65, 6,222, 37,200,131, 94,188,125,222, 75,218,205, 72,219,161, 46, +136,198,207,242,133, 52,214,178,122,157, 46, 64,198,172,120,173, 84,140,101,241,205, 72,244,201, 11, 47, 32, 64,133,148,136,234, +158,246,228, 13,246,219, 29,142,135, 35,202,178,192,108,177,196,201,233,138,210,183,152,147, 45,187, 14,231, 44,199,126, 38, 85, + 71, 38, 22,127, 29,246, 45,202,186, 70,201,150, 54,239,105,237, 64, 1, 40,253,152, 17, 47,192,127, 79, 15, 84,217,247,122,239, + 84, 96, 17,194,228, 6,229,221,142,168, 65, 73,232,146,152, 38,197,251, 49,238, 52,133, 73, 79, 5, 76, 36,125,131, 76, 29,216, +163,126, 56, 52, 52,214, 55,156, 18,198,215, 36,165, 1,175, 95,188,197,114,181,226, 68,161,128,190,109,240,234,249,107,124,240, + 49,117,165, 83,133,123,223, 81,135,174,157, 3,160, 95, 74,218,253,147, 24,197, 77,252,237,242,175,230,216,106,174,121, 2,208, +245, 13,214,239,223,225,234,237, 53,197,136,242, 67,222,104,108,231,248, 96,238,219, 22, 69, 85, 81, 6,187,181, 40,171, 66,251, +164,200, 90, 2,217, 13, 57,231, 48, 91,206, 73,156,210,245, 8,125,171, 98, 27, 99, 45,165,216, 9,125, 43, 4,181,229, 56,159, + 17,248,166,111,117, 90, 32,104, 87,196, 1, 69, 61, 67,123,216,163, 57, 54, 56,189, 56,163, 46,105, 32,110,120,189, 88, 98,127, +187, 65,140, 3, 46, 95,190,192,236,100, 73,133,135,181,248,233,159,253, 41,214,111,222,224,250,205, 43,216,124,134,161,223,163, + 90,158,161,217,188, 71, 86,159, 98,127,243, 14,179,229, 2,179, 69,141,147,139, 7,168,102, 21, 54, 87, 87,104, 67,142,182, 77, + 24,154,107,108,111,119,136, 67,194,217,253, 7, 88,157,159, 1, 6,184,121,255, 30,237, 97, 75,157,201,200,101, 3,192,186,131, + 20,112,246,240, 75,164, 24,113,243,246, 87,240, 89,129,188,170,120,101, 6, 94,119,116,140, 66,206,145, 23, 21,202,217, 9,150, + 23, 31, 99,117,239, 9,138,220, 97,115,245, 26,161,107,232, 62,212,113, 37, 49, 40,182, 55, 87,216,221, 94,163,107,246,104,246, + 91,244,237, 30, 93,123, 68, 31, 18,218, 46, 32, 38,203,182, 35, 32,203,201,233, 80, 86, 37,121,202,173, 35, 20,111,104, 17,186, + 29,218,195, 13, 66,183,103,143,238, 36, 63, 44, 37, 85, 76,139,154, 89, 66, 96,160,185,223, 29,186,238,136,148, 8,243,203, 78, + 52, 30,115, 78,211,216, 44,167,249,121, 18,248, 89,167, 15, 74,249,187,105, 87,202,100,204, 62, 16, 57,142, 15,158,196,147,133, +196, 4,185, 36,153, 7,252, 12,138,137,138,223, 24, 73, 5, 45, 74,244,148,164, 99,114,220,129,141,123,222, 24,147,142,219, 37, +221, 79,108,121, 17,102, 60,120,172, 99,254, 61, 70,255, 57, 23,244,218, 33,114,147, 53,196,132,158,217, 13,137,237,104, 67,164, +232,209,200, 35,108, 57, 64,233,215,227,232,195, 79,211, 29,187,157, 36,132,241,243, 16, 78,191,239,163,165,111, 50, 97,147,192, + 18, 41, 26,162,216, 26,253,100,130,106,198,168, 83, 88, 61,176, 41, 45, 19,186,143, 23,145,157,124, 63,163,210,251, 8,108, 51, +134, 3,217,209,153,160,247,134, 28,192, 78, 29, 14, 66,218,163,195,221,112, 3,224,148,161, 32, 19,229,190,235,181, 96,145, 51, +101,154, 14,151, 56,143,158,174,111, 28, 83, 71, 21, 69, 30, 57,242, 85,138,129,200,248, 88, 66, 29, 27, 41,142,227,192,186,132, +120, 55,172,197,140,234,159, 52,213,183, 11, 89,212,140, 66, 57, 61,166,229,245, 79, 38,230, 90, 60,136,232, 88, 14,248,105, 2, + 31,238,134, 10,217,253,118, 71, 7, 75,178,122, 33, 44, 91, 67,164, 19, 29, 66, 15,199,163, 89, 49,222, 75, 52,226,192,240,153, +208,135, 49,227, 24,156, 70, 6, 25,163, 68,164, 33,242,190,124, 76, 29,114,146,244,198,100, 46, 24,138, 70, 53,119, 60,121, 22, + 62,119,200, 10,178,215, 89,217, 63,243,174,213, 32,225,184,219,227,230,154,236, 63, 62,207, 81, 47, 23,168,231, 51, 61,156,172, +179,204, 61, 55,234,177,148,139,211,183, 29, 54, 55,183, 56, 30, 90,204,151, 75,204,151,115,142, 28, 13,104,142,173,170,242,187, +142,246,224,244, 64,243, 99,128, 8,239,118, 68, 0,226, 61, 77, 25, 4,206,226, 29, 89, 5, 19, 8,153, 75,234,245,168,241,142, +194, 14,142, 98,157, 99,237,130,242,173,249,131, 47,120,119, 73, 49,182, 57,199,128, 58,100, 89,142, 56, 68, 52,199, 29,188,207, +240,228,131, 71, 40,248, 90,221, 92, 93,161,239, 6, 60,122,250, 80, 21,253,161,239,153, 52,149, 70,180, 47,167,213, 89,249, 2, + 25, 51,106, 1,120, 71,228, 88,125,187,190,186,193,234,108,197,171,149, 0,147, 18,246,219, 27, 92,190,122, 75,104,211,122,166, + 7, 13, 56,174,214,176,224,232,184, 63, 98,182, 88,168, 56,141, 16,182, 99, 82,148, 99,215,131, 84,225, 69, 89,194, 57,139,195, +254,192,175,153,190, 34, 86,209,142,142,239, 75,175, 24, 80,242,175, 2, 93,219,168,192,101,177, 58,195,238,118,131,208,247, 88, +172, 78,240,245, 63,254, 26,255,238,127,255,119,248,224,243, 79,121,149, 2,100,229, 12,229,172, 66,119,220, 97, 8, 1, 93,215, +224,230,253, 53,206,238,223,199,211,207,191,196,234,108,133,175,127,249, 11,184, 44,199,226,100,134,243, 71, 31,224,230,205,105, + 79, 91, 20, 0, 0, 32, 0, 73, 68, 65, 84,183, 88,222,127,130,195,250,146, 92, 13,222,225,228,236, 12,203,139,251,104,247, 27, +172,215, 71,244, 49,199,241,246, 45,110,215,132, 44, 94, 93, 92, 96,113,122, 14,107,128,205,250, 6, 93,115,224,107,238,244, 97, + 41,163, 66, 99, 12,102,203, 7, 56,123,252, 49,222,126,253, 95,128, 20, 81,205, 78, 80,215,149,222, 23,125, 71,247,168,245,148, +232,230,179, 18,213,226, 30,206, 31,125,140,170,174,112,220,222,234,104, 27, 41,162,111, 27,196,208,163, 59, 30,209,182, 13,175, +149, 70, 91,161,116,159, 98, 49, 35,133,177,101,171,219,140,199,242, 57,239, 91,123, 26,161, 55,123, 52,251, 53,237,200,229,129, +149, 70, 74,150,115,153,118, 62, 50,174,150,206, 38,113,128, 81, 98,182,121,215, 82, 8,143,181,208, 68,193,209,234, 52,142,119, +101,239, 45,193, 34,210, 33, 81,151, 60,238,166,105,194,150,116, 74,166,222,105,177,199, 1, 24, 88,161, 45,248,107, 76, 34, 89, + 99, 74,176, 54, 39, 33,153,201,238,210,213,141,213, 8, 80, 99, 51, 22, 16,242,193, 26,185, 80,230, 12,239, 33, 70,180, 13,113, + 38,186,190, 67,215,117,180, 10, 11,100,155, 37,155, 41, 93,143, 97,160,253,182, 40,199, 41,218,115,224, 17,247,221,142,119,186, + 27,150,195,125,252,181, 56, 10,183,184, 43,159,166,196,129, 53, 6, 41, 6, 45, 22, 8, 47,157,233, 84, 65,227, 70,195, 72,184, + 35,241, 92,212,105,192, 84,160, 40,184, 93, 41,182,232,247, 74,167,110,217, 97, 97,238, 8,202, 98,148,215,102, 38, 22, 67,167, + 66,190, 81, 33,207,214,232, 44,231,191, 99,124, 78, 73, 55, 43, 29,173,132,113,137, 94, 76,193, 73,102, 18,151, 58,121,230, 26, + 3,100,158,119,246,102,146,115, 63, 1,207, 64, 83, 15,157,174,199, 36, 9, 81, 86,165, 42,220,140,152, 60,191, 39,171, 6,221, +169,143, 14, 30, 43,175,141, 39, 24,110, 18, 54, 35, 13, 45,237,210,199,224, 24, 59, 41, 14, 68,224, 39,207, 64, 27,251, 30,206, +146, 50, 61,231,195,128, 42,115, 26, 59, 65,192, 30,102,140, 94,204,242, 81,145, 56,142,164, 29, 83,139, 44, 41, 53, 57, 68, 1, +147,152, 63,201, 60,151,125, 1,209,181,204,228, 3,177, 19, 95, 32,231, 41,195, 32,244, 81, 59,117, 51,217,111,201,239, 5,119, +147,155,155, 13,186,166,161, 73, 64, 81,162,154, 47, 80,148, 37,234,121,173, 7, 60,237,184, 39, 20, 50, 86,241, 55,135, 35, 14, +187, 61,178,130, 44, 75, 4, 96,161,131, 11,140, 59,148,155, 39,227,213, 66, 8,145, 99,101,163, 22, 60, 50, 14,177, 50,226,233, + 3,218,182,225,174,131,174, 69, 94,228, 12, 94, 25,101,219, 33,144,165,172,239, 58, 28,143,237, 24,219,103,104,191,153, 23, 5, + 22,203, 37,138, 34,135,247,142, 38, 19,243, 25,156,183,168,103, 53,242,204,225,246,230, 22,247, 30,222,199,201,233,146,248,234, +185,199,229,235, 75,172, 88, 80, 72,239,103, 80,241, 33,197,170,210,151,109, 96, 26, 27, 89, 2, 69, 48,101, 71, 17, 36, 87,243, +251,237, 22,171,211, 51,221,111,211,196,100,143,227, 97,135,188,200,113,241,224, 33, 23,101,137,109,116,137,163,104, 29,246,219, + 45,165,181,109,183,196,250, 47, 75,101, 82,203, 8, 76,236, 33, 68, 37, 36, 52,108,115,108, 53,119, 94, 50,166,101, 85,227,179, + 76, 83,146,196,195,109, 77, 68,232, 26, 13, 61,168,102, 11, 92,191,121,131, 97, 72, 88,157, 45,241,205,175,127,131,155,171,107, +184, 60,199,167, 63,248, 20, 49, 70,204, 87,231,100,233,219,221,114, 17, 58,224,245,179, 23,248,224,243, 79,241,227, 63,249, 67, +252,221, 95,253, 39,164, 24,113,114,239, 17,246,183, 27,236,111,215,200,235, 37,182,215,107, 84,149, 39,221, 68, 89, 34,171, 22, +200,114,135,235,203,107, 4, 84,216, 93,191,194,250,253, 26, 67, 8,168, 23,115, 84,243, 19, 24, 3,236,119,123,180,135,221, 24, +148, 1,139, 44,203,225,189, 81,252,164,207, 10, 60,254,226, 95,224,229,175,254, 51, 98,108, 73, 41, 63,155,241, 62,150, 2, 35, +250,190,165,233,138,179,176,222,193,231, 5,150,231,143, 96,173,193,238,118,141,174,107,224,153,170, 54,198,134,210,222,154,114, +236,229, 80, 76,188, 7, 38,175, 56,201, 90, 28,103,217,159, 32,243, 14, 62,167, 61, 49, 57, 37, 2, 98,232, 17, 58, 18,191, 13, +129, 44,107,130, 33,149,221,180, 68,160, 26, 41, 90,248,193, 29,153,252, 53,210,195, 70,124,107,215, 30,168, 40,100, 5,180, 49, +208, 17,244,157, 24, 82,201,242,150,208, 26, 62,136, 52,155, 91,132,116, 60, 53, 27, 98,212, 93,251,192, 7,169,170,214, 37,154, +115, 32,193,236, 16, 5,243,156,235,190,157,158,139, 28, 47,106,198, 98, 33,175, 22, 28, 25,234,184,168,100,174, 56,123,223, 67, + 8,232,218, 14,109,115,196,126,183, 65,115,220,163, 61, 30,176,189, 93,227,176,223, 81,113,213, 7,116,125,207,135, 60, 61,115, +194, 16,180, 99, 36, 33,155, 88,172,160,221,240,247,119,236,162, 35, 16, 61,140, 50,139, 34,121,236,105,194, 38,147,140,129, 74, +118, 67, 83, 44,162, 60,122, 42,164, 18,107,161, 32, 86, 51,175,215, 72, 86, 30, 73,247,246, 36,234, 75,162, 67,144, 36, 63, 73, +102, 99,110,187, 40,237,169, 43,183, 74, 11,116,124,157, 40,110,122,132, 27, 89, 3,118, 95,184, 9,136,136,166,142,214,102, 26, + 87, 43,170,118, 17, 15, 78, 83, 2, 9,253,237, 88,177, 62,242, 85, 70,192,205, 24, 43, 60,240,212, 68, 34,156, 49,205, 75,103, +244,185,136, 37,167, 10,119,113, 20,105,186,156,172, 7, 49,229,179,143,163,123,197, 97,167,169,192,109,156, 24, 37, 13,134,153, +140,225,217,114, 43,108, 17, 5,187, 25,123,103, 23,207,247,187, 65, 28,122,142,224,172, 56,123,121, 80, 15,156, 68,157, 74,192, +134,136,188,140, 1, 98, 8, 35, 5,140,171, 12,129,143, 16,240,128,254,153,101, 78, 1, 13,134,147,223,136,149, 27, 21,205,106, +172, 65, 81,120,100,153,213,232, 79,177,121,249,140,246,234,224, 49,177,153, 78, 17,216,191, 77,187,147, 12,109,211,226,184,223, + 35,116, 29,178,204, 99,121,122,130,197,201, 9,170, 57,237, 33, 19, 70, 17,199, 48, 16, 49, 79,130,108,226,208, 99,253,254, 26, + 41, 25, 44, 79, 79, 80, 86, 5,135,200, 36, 37,209, 21,101, 6, 3,203,194, 56, 76,132, 28,244,224,145, 15,192,106, 36,165, 80, +157, 70,123,131, 36, 16,201,158,170,239, 8,186,210, 54, 13, 17,224, 98, 68,203, 74,245,190,167,255,100, 89,134,170,174, 49,155, + 47, 52,163,157,136,120, 37,140, 33, 60,239,250,234, 26,128,197,189, 7,247,248,115, 50,104,219, 6, 47,158,189,198,135,159,126, +168,175,217,178,226,158, 98, 89, 51,238,116, 5,110, 48,230,204,123,239, 24,174, 0,173,104,223, 95, 94, 98,121,186,226,130,104, +224,162,166,199,250,253, 59,180,199, 22,159,254,224, 83, 24,174,110, 69,188,150,152,115,217, 28, 15,168,234, 26,161,107,208,247, + 61, 81, 2,141,213,116, 43,242, 1, 71,117, 18,212,243, 26, 41, 69,181, 23, 90,182, 16, 10, 3, 64, 4, 55,214, 57,173,150,243, +178,226,221, 60, 85,180, 69,185,192,195, 39,231,232,142,123,216,172, 64,223,182,188,159, 12,216,111,118,152, 45,151,152, 45,102, +168,230,115, 28,119,155, 73,106, 20,197,250,254,228, 79,255, 16,191,253,249,223,161,107, 91,248,188,192,124,117,134, 98,182,100, + 1,166, 69,230, 3,170, 89, 73,247,105,158, 97,121,118,134,245,187,119,104, 99,137,227,205, 37,174, 47,223, 35,166,136,162,240, +152,175,206, 49, 95,212,136, 41,226,184,219,170,191,120,244,245,122, 26,175,115, 55,252,232,243, 63,192,155,223,255, 61, 97, 96, +173,199,242,244, 2,121, 81,114, 84,114,196,126,115,139,161,239,224, 88, 93, 93,148, 21, 78,238, 63,165,233,198,230, 22,125,215, +232,158,216,231,149,146,212, 52, 88, 36,142,241,153,214,149,136,200, 16, 6, 32, 38, 58,184,242,188, 64, 61, 63, 65, 85, 87, 40, +103, 51, 62,140, 7, 74,190, 75, 3, 66,119, 68,215,236, 32,234, 36,101,172, 39, 14, 85,241,126,226,193, 5,143,198,253, 68, 36, + 52,142,103, 5,171, 41,120,213,174, 59,162,235, 26, 94, 25,181,228,113,103,162,157,160,162,133,185, 50, 76, 56,235,194, 9,215, + 7,249, 16,116,189, 5, 99,209,115,163, 34,163,207,190, 15,128,241,186,231,164,115,209,115,119,157,116, 63,174, 94,109,101,143, +243,238,216,230,164, 12,103, 11, 32, 21, 79, 60,202,103,171, 89,223,245,104,154, 3,218,166,225, 53, 29,123,169,141,231, 46, 54, +241,193,223,146,232, 49, 70, 14, 17, 1, 31,242, 29,239,171,105,228, 30,181, 91, 78, 58,202, 7,143,214, 85, 64,167, 71,138,168, +177,167,182, 43,126, 97,201,232, 20, 13,204,241, 55, 83,166, 45,192,236,115,232,123,178,206,179,160,208,241,251,247,204,204,103, +123, 95, 28,113,182,186,131,215, 16, 45,167, 62,121,213, 95,241,159, 51, 18,212,103, 51,205, 13, 17,220,170,172,111,100,100,237, +188,215, 2, 65, 16,176, 36, 72,148,213,225,168,188, 39, 65,101, 82,183,145,138,247,120,125, 16,239, 88,211,146,134,186, 76, 5, +104, 73,161, 51,172,151,210, 81,251,228,207, 73,240, 86,156, 0, 96,205,100,231,109, 70,199,130,153,146, 18,229,240,214, 48,161, + 72, 86, 90,235,120,202, 57,177,240,106, 92, 45,199, 16,203,238,221,140, 60, 25, 86,191, 3, 93,211,208,167, 96,188,238, 53,169, +123,151,196,158, 65, 73, 94,100, 87,227, 64, 1,102, 75,167, 56, 32,116, 61,139, 50, 0,239, 28,239,216,233,193,219,235, 14,130, +118,186,146,213,237, 89,197, 8, 67, 63,139,212,243,134,197, 83, 17,158,247,226,196,136,151, 61,114,186, 99,101,202, 25, 28, 35, +158,241, 44,231,236,245,216, 99,191,221,146, 74,222, 59,204,230,115,212,243,153, 90,129, 66,224,221,191, 78, 14, 12, 41,193, 15, + 7, 92,189,125,143,208, 71, 44, 79, 87,196, 29,103,225,140, 87,139, 12, 70,127, 42,135,204, 20, 37,197,153, 58, 79,126,127, 25, +243,123,111,225, 50, 74,158,138,145,119,230, 34, 82,234,169,130,183, 22,216,239, 14,232,218,158, 38, 6,251, 3,218, 35, 85,239, +212, 85,211,107, 93,174, 22, 56,189, 88, 81,146, 24,119,170,146,207, 76,100, 61,135,215, 47,223,226,244,226,140,130, 67,120,122, +176,189,185,193,225,208,225,201,135,143, 40, 90, 52,243,204, 30,240,252,160, 76, 10,163,160, 52, 62,190, 46, 24, 87, 12,146, 76, +213, 53, 71,212,243, 90,247, 83, 98, 37,219,111,214,216,220,220,226,193,211, 39,152, 45,150, 28,208, 50,140, 42,120,231,209, 30, +143,168,102, 53, 98, 12,232,154,150, 83,228, 10, 5, 87, 59, 79, 83, 30,107, 13,234, 89, 77,187,173,129, 51, 2,238,220,216,137, +191,176, 92,165, 99,236,242,138,178,164,251, 57, 69,196, 20,113,255,233,231, 56, 61,155,195,101, 25,150,167, 43,188,125,254, 18, + 85, 61, 67,150,101,168,103, 21,190,249,245,215,120,250,217, 39,180,235,223,109, 38,108,115,224,179,159,254, 12,135,221, 30, 55, +239,222,113,120,202, 19,212,203, 19,236,214,239, 16, 81, 96,104,183, 40, 74,226,245,231,101,137,188,204, 41,166,246, 54, 96,119, +245, 22,183, 87,239, 16,250,128,178,112, 40,231, 39, 40, 10,143,174,235,176,189,217,168, 38, 35, 38, 32,194, 97,148, 45,208,131, +250,241,231,255, 2,251,245, 37, 14,155, 55,148,239, 62, 95,161,168,102,108,211, 2,218,230,128,246,184, 87,177,170,207, 75,204, +207, 30,147,173, 48,208, 97, 75,110, 8,207,227,200, 28,214,151, 52,222,101,205, 5,233, 92, 42,164,228, 1,203, 35,100,230,190, + 23, 69,133,162, 44,233,243,177,185,250,115,169,232,234,112,220,173,209,183, 7, 46,106, 49,114,189,149,252, 54, 66,172, 18,119, +253,218,113,137,114,151,150, 41, 19, 95,115,186, 27, 56,153, 6, 12,172,156, 55,130,231,228,177,189,168,168,233,123,153,141,221, +100, 2,123,158,141,134,126, 36, 36,244,125,224, 14, 12,188, 94,233,212,149,163, 84, 53,246, 54,247, 97,224,245,151,101,112,138, +103, 0,140,103,235,154, 25,105,107, 89,201,228, 59, 62, 76,120,167, 44, 19, 72, 24,131,166,105,184,120,144,189, 61, 16, 19,199, +209, 2,108, 19,164, 29,239, 48, 80, 96,139,176, 59, 20, 57,170,129, 53,134,199,240,163, 72, 45, 37,153,112, 90,181, 4,210,175, + 25, 85,209, 79,187, 76, 89,141,196, 68,147, 10, 57,216,229,208,164,252, 3, 74,216,171,231, 75, 98, 5, 88, 18, 37,210,225, 13, +221,163, 15,195, 64,178,113, 14, 82, 18,151,129, 20, 24,164,141,152, 8, 7,157, 27, 21,220, 60,102,167,194,105,146, 83,142,187, +133,129,172,227, 36,123, 94, 61,234,142,236,196,211,196, 64,106,250, 44,131,188,232,231,122, 70, 59, 43,102,214, 10,151,197, 41, +116,106,154, 63, 65, 13,108,210, 98,203, 72,132,239, 16, 85,216, 39,233,166, 35,227,128, 15,118, 17,186, 73,144,139,228, 34, 76, + 68,115,150, 93, 43,162, 39,155,102,135, 88,142,255,133, 25, 71,245,162,142, 31, 87,227, 86, 27, 81, 76, 3, 97,216,238,102,105, +180,154,248,240,243, 44,240,192,157,240,247,129,197, 95, 41, 14,136,161, 31,115,176,185, 83, 22, 11,220, 16, 6,218,139,246,129, + 25,222,145, 59,118,163, 9, 61,163,109, 14, 52, 46,244,158, 80,160,206,168, 34,158, 44, 59,153, 90,229,228,203, 43, 54, 53, 10, + 23, 16, 2, 80, 82, 69,163, 84, 74,214,144, 13, 41,203, 8, 94,179,223,237,176,219,238, 73,113,157, 23, 40,138, 18, 89,238,137, +100,101,140,142,227,135, 48, 32,244, 3, 66,223,227,118,189,198, 97,223,224,228,108,133,197,106,206,126, 93,186, 33, 41,219,122, +180, 28, 89,222,129,203, 94,195,103,142, 67, 98,200, 86, 84, 20,197, 29,241,157,140,119, 68,240,119,216, 55, 12,235,233,121,151, +223,160,107, 91,116, 13, 69,117,250,204,161,235, 3,154, 99, 7,239,115, 44, 87, 75,228, 5, 85,180, 3, 91,192,242, 34,195, 97, +223,224,246,154,194, 94,206,238,221,211,235,157,144,240,242,187, 23, 56,187,184,135,135,143,239,163, 40, 75,204,231, 51,170,110, + 57,165, 8,124, 3, 91, 51,221,113,165, 49,197,137,217,223, 41, 18,191,155,120, 0, 65,199, 73,125,215,224,253,219, 75,148,117, +141,135, 79,159,144, 37,134, 71, 90,194,181,238,187,142,217,220, 22,251,221,129,189,225,153,170, 70,105,183, 75, 95,226,162, 42, + 96,121,159, 62,142,166,172,142,178, 4,108, 33,116, 62,239, 51, 85, 99, 15,125,171,209,158, 95,252,244, 71,136,125, 11,155,149, +168,231, 21,190,249,205,215,152,205,106,148,243, 57,178, 60, 67,215, 30, 97,125,137,204, 59, 52,135,157,186, 63, 62,248,252, 7, +120,252,209, 19,188,126,246, 2,139,213, 9,156,115,120,244,201,103, 24,218, 45, 81,191,250, 29,178,140,238,199,114, 54,163,160, + 23,147,227,118,189, 71, 56,110,113,245,230, 13,154,195, 17,222, 14,168, 23, 43, 84,179, 25,250,126,192,237,213,181, 82,239, 0, + 34,161,165, 72, 65, 68, 82,205, 95, 60,253, 12, 62,243,216,188,251, 22,214,102,164,100, 63, 57,167,117, 5, 44,134,208, 97,127, +251,158,114,174,121,181,177, 60,125,192,171,141, 13,182,235, 43, 86, 81,211,119,114,204,108, 38,127,185, 28,164,195, 96, 48, 68, +242, 79, 15,145,118,231, 9, 14,179, 57, 9,254,202,122, 14,151, 21,250, 16, 11,109,139,238,176,193, 97,187, 70, 8,157, 78,118, +188,207,225, 92, 14,231, 50,100,121,133,178, 62,161,177,169,203,148, 48,230, 20,164,145,233, 78,122,220,151, 26,221, 1, 79, 31, +248,195, 16,104, 42,128,136,132, 65,187,159, 36,106, 99,182,194,142,190,106, 94,197,113, 7, 59, 42,134,141, 78, 59, 99,138,232, +250, 94, 5,191,150, 9,116,114,128,139,248, 50,193,192,176, 8,139, 86, 19,126,228,158,115, 82, 27, 49,235, 11, 88,159, 81, 18, + 25, 44,239, 82,169,168,105,142, 13, 14,251, 3,113, 41,108,198,254,254, 2,128, 87, 47,119, 76, 86, 59,238, 16,162,114, 44, 36, +110, 54,178, 56, 78,199,236, 2,158,225,127, 2, 14, 49, 69, 68,217,111,167,113,188, 27, 53,191,211,142, 10,119,141, 33,141,119, + 2,122, 44, 91, 33,171,249, 2, 69, 53,131,247, 5,242,178,130,243, 37,178,178, 70, 86,206,144,229, 51,100, 69,205,160, 26,154, + 68,200, 58, 6,102, 12,111,193, 29,160,138, 97, 93,130, 99,208, 88,210, 67, 74,224, 57,244,225,176,111,159,209,178, 0,137, 97, +189,207,120,229, 48,113, 45,196,168, 41,141,134, 59,119, 33,103,122, 22, 96, 59,235, 39,142,135,187, 20, 74, 99, 70,111,188, 26, + 2, 37,230,212,178, 64,114,194,229, 23,188, 46,245,179, 65, 11,160,196, 69,205, 24,229,157,120,242,104, 70,109, 1,140,240,114, +248,126, 31, 1, 96, 90,160, 78,149,236,198,222,201, 72,151, 51, 98,228,200,196,187,192,119,195,128, 56, 77,205, 51,176, 62,115, +136,125, 15,131,129,187,226, 2,121, 81,178, 85, 38,194,130,186,246, 20, 57,156, 4, 9, 67, 31, 88,185, 61, 48,185, 43,142,230, +251, 52,166,197,165, 9,226, 52,165,136,140,197,109, 18,191, 71,126,217, 92,111, 44, 25,165, 58, 55, 86, 90, 46,115,250,224,202, +178, 17,214, 31,195,192, 99, 54,218,113, 59,239, 85,176, 86,176,109, 78,196, 95,206, 89, 56, 11, 28,182, 59, 28,246, 71,102,100, + 83,144, 11, 5,155, 68,180,109,135,190, 39, 15,183,140, 55,104,239,181,195,108,190,192,201,233, 9,237,207,138,140,247, 82, 52, + 71,161, 3,219,115,113,146,169,239,124, 8,244,197,242,153, 71,215,243, 14,147,133, 51, 49, 38,116, 93,135,190, 35,124, 44,237, +240,232, 1,220,182, 45,134, 97,192, 97,223,160,109, 26,181,117,196,129,213,152, 6,196,233,206, 11, 58,132,157, 81,155,154, 49, + 6, 33,244,120,241,237, 75,156, 94,156, 97,177,172,145,229,158, 39, 10, 1,111, 94, 93,226,147, 47, 63, 71, 61, 95,160,172,103, + 88,174, 86,168,217,167, 47,227,216,190, 31, 16, 89,213, 73, 46,133,156, 43,222, 65,247,177,135,253, 17,139,197,114, 12, 67,224, + 27,114,253,238, 18,251,205, 30, 31,126,246,137, 86,163,113,136,252,153,122,229, 78,123, 79, 89,247, 89,158, 97, 54,159,179,160, +114,204, 68, 39,145, 92,129,162,200,177, 89,111, 52,137,205, 50,156, 71, 51,175,217,105, 17, 24,214, 98,173, 67, 81,148, 56,238, +119, 0, 18,230,171,135, 56,189, 88,225,120, 56, 98,113,118,134,102,183,195,205,213, 59, 24,107,177, 60, 61,213, 81,217,230,118, + 7,159, 89, 12, 61,141,230, 23, 39,167,248,131,127,253,231,248,155,255,240,255,160,217,237, 81,214, 21, 86, 15,159,194,231, 25, +154, 99,139,174,235, 80,228, 64,158,121, 44, 86,167,240,222,162, 15, 6,109, 27,112,216,109,241,254,213,115,132,174,129,119,137, + 58,244,154, 38, 27,219,155, 27,116, 93,175, 66, 44,231,233, 32,116,188, 27, 76,113, 64, 57, 63,195,236,244, 30, 94,254,246,191, + 1,198, 33, 43,103, 88, 93, 60, 70, 53,155,243,222, 50,162,217,111,208,119, 71, 12, 67,143, 52, 12,152,173, 46, 80,212, 21,154, +253, 22,205,110, 77, 64,140, 24,185,195,100, 68, 42,172,118,179,198,229,112,121, 13,235,100, 82, 96,117, 39, 57, 95,204,144,151, + 4,155,161,221, 51,237,117,211, 16,208, 30,183,232,219,195,196,162,149,177,141, 43,167, 32,154,217, 9,202,122, 1,159, 21, 40, +235, 57,178,188,226,253,191, 81,123, 87,210, 24, 88,163,251,195, 17,254, 52, 6,142,104, 32,201, 68, 59, 44, 7,184,192, 67,198, +135,238,152,249,240,253, 20,172, 33, 70,218,157,243,152, 53, 14, 3,140,117,188,183, 54, 42,146,211,177, 53,187, 33, 84, 16,150, +162, 22,237, 67, 4,147,230, 56, 67,158, 83,200, 98,156,164,191, 97, 66,122,227,233,164,116,157,162, 37, 16, 27, 93,156,240,211, + 71, 70,157,101, 88, 84,224, 93, 58, 84,100, 6, 8, 51,223,234, 94, 60,178, 88, 76,187,115, 86,189,235,152, 95,130, 98,166,218, + 1, 1,192,112,110,130,207,114,212,243, 5,138,178,230,226,204, 79,158,191,153,102,150, 39, 24, 88,159,147, 23,223,231,122,192, + 26,166, 49,194, 88,186,151,210,212, 25, 64,207,193,190,235,117,237, 66, 19, 72, 40, 48, 72,124,220, 98, 41,139,201,232,184, 59, +113,234, 25,193,123,168,248,242,124,223, 14,113, 44, 90,172, 27,173, 98,214,209,239,149, 35, 59,203, 29,237,225,121,101, 39,231, +148,166, 88,178,238, 33, 73, 86, 7, 12,188,179,122,224,199, 97,184,227,187, 55,186, 50, 74,255,132,102,151, 52,151,100, 82, 84, +106,168,155,157, 36,184,152, 59, 64,178,113, 69,245,253,131,221, 40,155, 67, 67,154,116,236, 78,197,152,104,175,140,132,170,129, +161, 7, 41, 14, 64, 28,224,243, 98, 18,155,234, 89, 40, 53,138, 10, 72,165, 55, 0, 60,246, 75,137, 2, 27,200,190, 68, 49,165, + 98, 53,232,187,142, 31,190,131,226, 96, 13, 11,131, 2, 43, 61, 37,226,116,190,156,195,103, 25,178, 44,227,174,152,136,114,218, + 77,242,135, 36, 88, 76, 76,240,121,130, 79,165,145, 12,141, 55, 40,152,132, 97, 42, 24, 73, 73, 49,244, 56,236,142,104,142, 13, + 98, 2,138,138,124,235,113, 96, 70, 50,103,240, 22, 21, 29,214, 45,171,227,125,158,225,244,226,148, 51,198,105, 52,151,101,158, +173,115, 70,177,175, 50, 94,177, 19, 98,163,101, 29,129,166, 46,177,210, 56,242,204,213, 24,242, 11,183, 77,199,138,230, 65,189, +235,125,215, 77,132, 59,132,175,141, 67,196,226,100,129,178, 40,248,186, 10, 65,143, 4,123,135,253, 6, 55,215, 91, 60,120,252, +144, 85,235,116, 0,110,214, 55,136, 49,225,195, 79, 62, 96,240,206, 12,243,197, 18,203, 19,210, 29, 20, 69,161,176,161, 44,227, +108, 97, 63,146,250, 4,244,114,123,125,131,179,139,123,147,241, 17, 61,100, 15,187, 91,188,248,230, 37, 78,206,239, 81,122, 92, + 8,148, 64,135, 17, 94, 20,135,136,162,172,112,216,237, 72, 44, 87, 85, 92, 16, 70,205,169, 47,171,146, 59,181,136,205,237,134, + 17,188, 81,173,117,198,144,176,147,130, 51, 34, 28, 79,104,140,245, 40,202, 28,135,221, 14,128,193, 71, 95,126, 5,203,233, 90, +203,211, 21, 46, 95,188, 66,232, 73,176, 84,148, 21,209,212, 18, 96, 82,194,233,249, 18,198, 36,100,222,227, 95,253,219,127,131, +175,255,225,151,136,161, 67,223, 53, 40,103, 53, 30,126,252, 41,118,235,107,116, 77, 75,157,227, 16, 80,206, 23, 48, 32, 74, 97, + 62, 63,195,126,179,195,139,223,254, 6,205,126, 15,139, 30, 85, 61, 67,189, 88,194, 34,225,230,253, 21,229, 6,232, 67,192,179, +216, 10,106, 15,204,171, 5, 30,127,246, 67,188,249,253,223,211, 94,209,103,152,159,156, 99,190, 58,229,221, 37,197,183, 54, 7, + 18, 26, 58,239,113,114,255, 41,234,197, 10,205,126,139,235, 87,191,199, 97, 71,106,119,153,146,145,247, 60,114, 23, 40,136, 85, + 79,157,165,245,176, 62,131, 49,132,131,173,102, 21,124, 78,129, 44, 68,120,164,207,165,111,143,104,246, 91,132,174,153, 88, 68, + 61,143,128, 19,139, 71, 43,212,179, 57,242,178, 66, 81,214,200,138, 10, 89, 94, 81, 39,235, 28, 63,124,204,100,189,225,148,118, +102,140,120,146,133,206, 53, 73, 19, 75,228,159,206,178,252, 78,204,232, 29,223, 46, 79,163,156, 38,110,165,137, 42, 28,170,159, + 25,115,191, 49,142,124,245,181,140,157,163,181,226,135,183, 42,202,149,172,117,186, 87,217,104,107,233, 26, 8,253,140,176,124, +158,163, 63,193,251,226,164,234,239,196,142,130,152,198,162,196,218,169, 0,205,221, 73,248,146,149,135, 20, 31,178,243,191,227, + 25, 23, 15,184,138,229, 24,221, 58, 69,200,106,156, 41,113, 35, 18, 4,162, 67,110, 17,159, 21,240, 57,125, 78, 62,243,112, 89, +174, 26, 15,133,190,176, 56, 48, 37,199,161, 59, 20, 70,227,124, 62, 25,241,219,113, 4,143, 49,112,103, 8,131,210,227,134, 48, +144,229,207, 57, 37,101,202,158,152, 38,161, 78,247,235,208,137, 18, 77, 74,172, 33, 33,226,192,207,165, 60, 47,180,152, 27, 2, + 33,194,115,110,178, 28, 55,135,198,138, 11,194, 78, 84,250,106, 65,103,209,157,209,113,182,230,160,243,129, 33, 98,223, 41,187, + 37, 77,160, 96,227,164,105,116,123,164,201,121, 35,129, 68,134, 29,101,212,149,143, 35,247,201,226,126, 18,103, 12, 37,140, 78, +233,113,163,218,157,239, 24,193, 29,171, 91,205,193,152, 4,111,157, 81, 49, 74, 86,148,240, 62, 67, 94,205,216,139,199,201, 79, +133, 69,232,123, 13, 26,137, 19, 36,158,132,111,128, 59, 39,128,189,150, 60, 18,143, 33,192, 88,135,122, 49,195,249,195,135, 44, +218,201, 38, 95,152, 49, 82,146, 58,191,136,190,105,208,247, 45,113,201,119,205,104, 77, 19,200,183,145,221,158, 81, 79, 59,238, +100, 26, 39, 37,214,137, 74,218, 58,163, 21,184, 69,226, 49, 56,189,206, 44,243, 88,156, 44, 41,130, 54,108,185,227,141,227,152, +198, 0,205,225,128,178,170, 49, 91, 46, 96,221, 1,237,177, 69, 53, 43, 9,172,195,138,113,162, 18, 89, 78, 64, 35,180,161, 55, + 6, 49, 24,116, 45,117,149,125, 23,244, 75, 73,249,243,212,173, 7, 78, 40, 19, 33,143,227,221, 59,141,234, 91, 84,117,197,161, + 43,129,190,120,206,161,158,207, 8, 91,155,100,122,146,244,207,188,123,115,137,207,190,250,140,108, 77, 7, 18,224, 56,231,240, +252,155,231,248,242, 39, 95,162, 57, 28,177,185,221, 33, 47,115,202,170, 47, 50, 45,140, 72,112,120,164,247, 18,199,112, 28,129, +221,172,175,214,120,240,240, 1,158,125,253,245,168,113,112,196, 71,127,245,221, 11, 60,252,240, 9, 86,103, 23,184,124,245,138, + 71,101,252,165, 49,180,115, 94,172, 78,208, 28,142,128, 1,234,121,205,157,247,200, 51, 46, 74,210, 3,132,190,199,241,112,128, +177,231, 8,161,135,247,163,165, 67,231,169,178, 38, 64, 2,165, 70, 38,132,190,129,243, 37, 30, 60,121,128,162,204,112,140, 3, +202, 50,195,243,223,127,131,148, 18,118,219, 61, 30,242,248,213,103, 57,226, 16,176,227,137,204, 87,127,240, 47,113,220,237,241, +254,245, 75,228,185, 71,138, 3,150, 15, 30,161,154,149, 56,108, 54,112,166, 67, 86, 44,144, 59, 10, 3,218,111,110,209, 5,143, +174, 79,120,255,226, 57,154,253, 22, 38,181,200,235, 25,138,249, 18,121,110,177,185,185,193,113,191, 99,225, 39,137,178,134, 52, + 58, 33,172,165,168,213, 39, 95,252, 20,175,127,255, 11,206, 65,200, 81,205, 79, 48, 63,153,147,242, 53, 38,154, 28,173, 47, 49, +176,255,127,113,250, 24,171,139,135,216,111,118,184,125,247, 12,125,123,228,132,173,136, 44, 43, 56,125,139,166, 52, 33,208, 97, + 99,156, 7,236, 64,228, 58,231, 97,189,197,172, 20, 53,112,198,221,222,160,169,119,221,113,143,174, 61,160,107, 26,202,160,143, + 9,214, 59, 34, 41,198,129,189,217, 6,203,211, 83,109, 14,186,230,168,221, 67,140, 3,239, 93,239,100, 75,178,200, 82,196, 61, +142,223, 83, 98, 4,245,152,170, 70, 65, 45,108, 45,115, 94,193, 47,142,211,184, 36,171,192, 89,210,238,164, 4, 56,107,244,251, + 78, 52,192,209,139,108,184, 75,146,135,186,115,110, 2,147,185,155, 29, 47, 35, 83,162,190, 25, 32, 24, 45, 18,156, 47,180,177, +136, 41,193,194, 32,207,114, 22,230,145,210, 58, 12,145,109,163, 78, 1, 46,178,242,163,233, 73,194, 16,233,144,147,117, 21, 96, + 38,250, 2,246,159, 79,146,226, 82, 28, 4, 20, 7, 39, 43, 8,101, 54, 24,221,145, 79,193, 63,234, 94, 17, 63,190,230,175,211, +243,145,236,178,180, 75, 31,113,178, 70,237,186,114, 13, 66, 52,244, 92,234, 7, 0, 22,121, 89,163,239, 90,120, 24,132,190,209, +226, 61,166, 72, 72, 83,144, 85,211,120, 42,146, 68,208, 37, 28, 0,231, 61,250, 62, 32, 49,147, 65,174,141,138,212, 98,100,117, +125, 26,167, 29, 44, 40,243, 89,174,164, 71,121,255,142, 59,120, 1,207, 36, 36,216, 72,122, 10, 17, 82, 10,120, 70,132,188,228, + 98,234,249,126, 79,250,158,165,128,203,115, 63,126,166, 97,208,233,202, 24, 6,148,180,168,148, 67,219,154, 52,201, 69, 55,234, +114,138,170, 7,195,228, 32, 31,115, 10,229,200, 87, 13, 19, 79,132, 41, 28, 43, 42,112, 38,242, 42,192,114, 49,108, 82, 28, 87, + 4, 48,240,113, 24, 20, 93,216,236,247,168,173,135,245,100,207,105,247,123,186, 49,134,129,247, 69, 20, 26, 33,157,123,100,161, + 9, 89,128, 2, 7,145, 4, 21,194,136, 98,220,152,132,227,126,135, 87,223, 62,131,243, 57, 39, 66, 89, 49, 19,168, 72, 74, 84, +156,206,103,168,102, 21, 78, 46,238,225,228, 60, 81,106, 85,211,106, 87, 48, 70, 19,146, 48,142, 42, 78,195, 55, 10,171,186,121, +199, 78,160, 24,131,190, 27, 80,148,153, 10,207,140, 49,122,176,111,219, 14,195, 0,148, 85,137,243, 7, 23,232,218, 22,155,245, +102,220, 73,115,149, 28,250, 14,206, 91, 44, 78, 22, 26, 75, 43,186, 3,249,128, 83, 76,188,247, 7,239,147, 71,207, 35,217,198, +162,198, 15, 54, 77, 7,168,255,150, 62,244,182,237, 53, 27,123, 8, 45, 3, 51, 12,110,174,111, 80, 84, 37,138, 34,199,246,118, +135,197,201,156,170,210, 44,199,230,118,173, 59,122,105, 96,118,219, 45,222, 95, 94,227,226,193,125,172,175,110,128, 68,190,223, +190,239,241,221,239,159,225,193,227, 7,184,190, 90, 35,197,196, 90, 6,163,201,110,243,197,140,132,118,155, 29, 54, 55,183,228, +133, 23, 75,140, 49,120,127,249, 22, 95,254,240, 99,178, 81,201, 13,205,163,212,205,205, 45, 66, 31,241,244,211, 79,240,246,229, +243,137,169,145, 30,202,125,215, 99,117,126,142, 55, 47,223, 97, 8, 17,179,197,130,173,105,212, 53,103,153, 71, 61, 39,120,208, +113,187, 85,218, 27,217,222, 6, 30,219, 17, 85, 48,175,172,198, 38,134,148,144,229, 5, 50, 14,214,121,244,241, 87,200,108,194, +108, 49, 67, 31,128,253,102,131,155,245, 53, 23,134,228,152,104,155, 22, 69, 61, 67,115,216, 99,191,185,198, 71, 95,253, 0, 31, +253,224, 19,252,231,255,235,223,211, 53, 49, 68,193, 59,123,244, 24,111,159,191,134, 77, 7,248, 44,199,124, 94,192, 91,135,237, +122,141,230,216, 99,249,232, 19,108, 46, 95,225,184,223,193,196, 6,198, 36, 84,139, 83,212,117,142,246,120,196, 97,183,213,110, +172,235,200,135, 79, 41,199,145, 11,217, 1,143, 63,255, 9,182, 87,111,200, 82,135,136,122,190,192,114,117, 66,224,148,161,199, + 16,122,236, 55,107,133,114,204, 79, 31,227,236,225, 7, 8, 93,135,155,203,103, 8,221, 1,214, 57,132,208,195,218, 12, 49,246, + 44, 44,204, 85,235, 49, 68,240,231,101,233,224, 6, 48, 91, 44,128, 72, 14, 7, 66,244,210,168,122,232,123,116,205, 30,161,107, + 0, 68,184,204, 35, 13, 1, 62, 19,168, 8,193,104, 96, 12,242,178, 70, 89,215,148, 83, 16, 45,224, 2,140,139, 48,218,213, 72, +112,198,152,146,229,188,167, 3, 79, 80,208,147, 0,140,200, 10, 96, 9,216, 25,119,222,113, 84, 58, 99,124,160,170, 70,199,202, + 3,155, 10,220,192,164,194, 49,211, 99,180, 62,202, 23, 37,176, 48, 74,172,114,195, 16,120,101,153,216,245,194,110, 29,201, 36, +231,142,148, 32, 53,128, 77, 6, 57, 11,245, 2,139,235, 82, 28,184, 80,181,164,172,215,191, 43, 27, 71,210, 18,129,202, 33, 68, +244, 28, 13,116,143, 79, 86,153,146, 68,166,122, 40,158,112,200, 65, 39,163, 99, 25, 35, 11,170, 91, 85, 79,198,170,195, 68,176, + 70, 33, 4,100, 89,129,146, 39, 42,106,107, 13, 3,178,162,160,123, 68,133, 92,210, 48, 64,167,165,201, 24, 32,145,184,211,185, + 12,112,226, 73, 15, 42, 90, 21, 23,130, 8, 7,101,250, 26, 69, 16, 59, 4,222,159, 91,116,157, 20, 46,227,244,134,206, 68,207, +153, 16, 1,214,103,202,248,112,222, 83,135,237, 51,213,235,200,228, 37, 47, 50,116, 93, 84, 72, 81,207,233,152, 96, 80, 78, 52, + 73, 35,128,233,140,141,119, 38, 62,113, 72, 58,245, 20, 27,153, 76, 40,101, 39,110, 96,105,122,158,100, 58, 20, 85, 20, 39,120, +219,169,135, 60,241,235, 27,217, 36,134,239,123,115, 39,145, 69,137,173, 98, 27, 76,140,140, 78, 99,180,170,100,173,208,253, 56, +176,175,158,233,154,188,242,176, 10, 79, 97, 17, 64,223,181,172,221,227, 15, 97, 8,170, 90,149,234,130,162, 56, 25, 89, 24,131, +166,178,117,109,167, 35, 51,217, 9,133,158, 2, 82,192, 86,152, 24, 58,164, 72,161, 30,226,221, 22,138, 15,141,172, 6, 12,125, +139,221,237, 45,222, 62,127,137,219,235, 13, 78,239,223,199,234,236, 84,147,115,196,167, 39,227, 29,231,236, 56,162,151, 74, 93, +176,172, 50,238,179, 80, 15,165,177,208, 81,238,192, 49,164,199,253, 1,183,215, 55,104, 57,178,243,244,222, 25,202,170,226,157, +140,231,209, 16,216,111,218, 97,182,152, 99,190,156,141,236,112,182,105, 88,231, 88, 37, 9,181,154,181, 77,135,208,247,106,169, +115,126,132,101,132,129,246,216,194,189,206, 50, 18,225,201,190,135, 44,111,228,153,111, 14, 71,116,109,135,142,217,245,125, 79, +228, 57,201,146, 15, 33, 96,183, 59,226,112,104,208, 52, 45,158,127,243, 29, 66, 72, 56, 57, 91, 33, 4, 26, 35,101,222, 97,125, +117,141,182,233,240,244,195, 71, 56,236,247,104,142, 7, 82,220,183,157, 90, 18,151, 39,115,156,156, 46,177, 56, 89, 0, 2,247, +144,252,245,238,136,162,158,233,129,237,196, 14, 99, 12,195, 80, 2, 30,126,240, 4, 89, 94,106,208, 79, 94,176, 61, 48,244,168, +230, 11,181,158, 84, 51,162,163, 81,232, 79,134, 44,207,201,161,224, 44,174,223,223,144, 26,149, 87, 44,145,161, 57, 50, 25, 32, + 58, 87,212, 47, 87, 57,155, 33,207, 29,178,188,196, 39, 63,248, 28, 49,116,200,138, 2, 85, 93, 96,183, 38, 47,181,207, 60, 67, + 84, 36,132,167,198,237,213, 59,244, 93,135,159,253,217, 31,227,239,254,234,175,117,109,227,156,195,226,252, 62,229,217, 31, 55, +176, 41, 32,153, 28,121,102,112,216,110,113, 60,180,176,213, 5,156, 29,240,254,245, 43, 24, 16, 58,121,190,186,192,108, 94,163, +107, 26, 92,189,125,131,246,112, 64, 26,122, 22, 14, 38,124,240,217, 71,248,240,139, 79, 57, 73, 47,225,222,211, 79, 17,135, 30, +155,119, 47, 16,227,128,170,174,177, 60, 61,165,212,180, 8,244, 93,135,195,150,236,118, 48, 14,179,147,135,184,120,252, 49,154, + 99,139,119,175,126,135,208, 29,244, 94,166,177, 38,167,242, 25, 98, 83,135,126,208, 61,176,114,180,243, 18,101, 85,209,238,212, + 23,236,169, 38,200, 72,232, 26,180,199,237,152,158, 55, 1,154,140,160, 19,234, 38, 92, 70,130, 42,192,193,250, 12, 69, 89,192, + 90, 66, 0,123,231,213, 31, 15,102, 90,168,117, 44, 25,141,236,148, 67, 74,187, 25,118,219,104,183,110,141,194,135,156,134,177, +136,212,202,104,220,175,104, 62,232,192, 29,152, 23, 49,142,129,213,154,150,198,209,181,146,200, 48,134,189, 36,110, 18,105, 18, + 64, 7,121, 31,200,190, 25,153,125,110,140, 87,229,246, 8,171,113, 76,109, 35,190,120, 24, 34,134,100, 0, 75, 35,238, 41, 80, + 70, 84,226, 2,176, 81,148,234,244, 16, 55, 6, 73,131, 64,248, 53, 42, 79, 92,160, 57,100,167, 75,108,113, 35, 75,216,232,167, + 31,201,110, 86,237,101, 72,137, 24,254,121, 9,159,229,176,140,167, 54,206,242,254, 56,242,153, 64, 19,205, 56, 33,205, 65, 0, + 91, 44, 82,142,201,105,199, 44, 80, 34,241,241, 11, 74,214, 90,171,222,122, 89,103, 88,206, 89,151, 40, 86,121, 96, 90,137, 0, +102, 71, 1, 96,104, 29, 0, 10, 13, 18,139,164, 0,184,100,229,153,101,158, 27, 58,232, 20, 71, 58,116,195,174, 40,199, 16,176, +177, 9, 27, 87,122, 99, 13,100, 70, 14,254, 36,117, 77,247,217, 60, 85,146, 34, 18, 19,186,170, 20,143,162,111, 24,249, 53,118, +146,201,142, 59,247,111,226, 2, 79,130,100, 68, 79, 98,152,201, 79, 5,200, 93, 46,188,168,235, 5, 63, 43, 90, 55,221,171,127, +249, 7,127,132, 39,159,125,202,169, 48, 64,232, 90, 52,251, 35,141,189,124,198,201, 90,131, 90,151,236, 36,143, 24, 44,243, 39, + 49,205, 48, 9, 2, 8,119, 50,105,133,195,158,248,129, 16,122,238, 12, 58,178,115,105,226,150, 21,220,163,101, 26,144, 71,140, + 61,222,190,124,131,162,170,112,254,240,190,126,137,100,175, 22,133, 57,204, 22, 51, 39,196, 54, 22, 91,229, 69,198, 95, 70, 30, +101,179, 98,124,224, 3,161,239, 7,221,211, 91, 11, 28,247, 7,220, 92,221,224,120,104, 81,206,106,156, 94,172, 80, 84, 5,114, + 94, 25,100,185, 67, 81, 50,133, 44,207,177, 88,206, 56,173, 43,215, 46, 36, 43,104, 34, 32,254,234,208,247,234,203,247,222,145, +173,143,171,182,162,204,152, 50, 69,100,175,208,211, 67,105,191, 59,162, 57, 52,104,155, 86,175, 77,140, 17,199,195, 1,251,221, + 17,187, 13,113,239,243,130, 30,206,100,191,136,227,218,193, 57,244, 93,131,239,190,126,129,139, 7, 23, 92,101,143,252,231,103, +191,127,134,229,233, 41,238,221, 63,199, 16, 35,250,190,197,246,118,131,227,225,136,162,240, 88, 44,107, 58,216, 87, 75,148, 37, +173, 25,198,117, 11,221,180,121, 94,192,223,177,215, 57, 32, 13,204,212, 47,177, 58,191,224,105,137,215, 47, 98,219,180,124, 8, + 0, 93,219,147,232,175, 40, 89,188,232,120, 9,253,234, 19, 0, 0, 32, 0, 73, 68, 65, 84, 28, 88, 32,198,132,253,110,143,132, + 68,123,121, 30, 73,201, 78,150, 88, 7,134,115,236, 41,115,189,154,205, 17, 67, 64,181, 60,197,124, 81,193,122,143,190,167,209, +235,187, 55,151,188, 55, 35,191,191,243, 25,250, 62,194, 57,131,227,238, 6, 95,252,228,135,120,247,242, 37, 9,193,248, 28,154, +157,156,161, 62,123,132,195,237, 26, 46, 53, 72,198, 34,175, 74,236, 55, 55, 56,236, 14, 64, 54, 71,189, 60,193,219,111,191,134, + 53, 1,105, 8, 40,234, 57,202,249, 2,214, 12,184,122,251, 26,125,219, 82, 80, 17,219, 33,255,251,255,229, 47,241, 23,255,230, + 47,112,255,201, 67,156,156,157, 96,117,255, 17,138,186,196,245,235,111,225,178, 28,179,249, 28,171,139,251,200,203,146,133,149, +116,160, 31,247, 91,164,100, 48, 95,221,195,197,227, 79, 16,194,128,155,183, 95,143,176,156,137,181, 37,113, 24,147, 60,108,135, + 40,133, 35, 21,190,213,124,134,162, 40,144, 21, 5,163,142,233, 97,208,119, 29,142,251, 13,218,227,158,129, 47,116, 47, 58, 47, +209,168,126,178,199, 5,172,207, 81,207,230, 40,171, 10,188,129, 67,140,100,253,138, 41,177, 64,109,208, 52,180,209,163,238,212, + 77, 51,205, 39, 31,163, 55,211, 24,143,170, 93,248, 40,146, 37, 45, 13,139,254,236,232,255,181, 58,130,228,241,168,142, 81, 7, + 45,186,167,251,208, 24,131,118,235, 74,100,211,194, 95, 58,106,168,178,153, 86, 6,152,236, 88, 41,176, 69,108, 91,146,145, 32, +135,118,226, 84, 51,177,182,137,178,127,202, 87, 55, 19,177, 24, 5, 52,241, 94, 89,112,186,130, 66,150, 98, 64,230, 94,154,253, + 30, 25, 22, 3,238,146,221,196,238,102,238,104, 5,164, 80,112, 89,137, 44, 43,105, 92, 29, 39, 64, 32, 70, 93, 15, 67,224, 85, + 95,139,182,105,208, 53, 13,175, 95, 19, 51,127, 12,133,188,120,158,210,242, 33, 77, 43,213,145, 36, 7,195,127,167,165,176, 46, + 5, 2, 65,176,179,118,130, 74,149, 56, 92, 90,181, 38,213,122,141,112, 22,231, 61, 23,106, 78, 69,137,228,160,241,147,152, 82, +171,120,109,129,133, 57, 93,137,142,156,118,185,175, 50,118,207,216, 59,251,235,209,230, 76,231,246, 40,138, 27, 15,120,123,103, +202,132,127, 18,163,106,198,247, 36,254,121, 69,217,198, 59, 74,124,106,243,105,138, 43, 19, 73,250, 62,196, 59,135,185,238,206, +205, 36,224, 69,253,233,102,100,191,255,230,111,255, 22,239, 94, 95,227,195, 31,253, 20,159,252,232, 43,228, 69, 70,185,232, 76, +101, 35,249,189,129,207,189,242,130,229,208, 20, 17,128,149, 47,104,164,195,114,140, 5,138, 58, 42,151,156,118, 48,116, 37,240, + 14, 88,246,196,129, 15, 90,169,108,172,247, 35,124,223, 36, 92, 95,190,199, 97,223, 98,126,178,164, 3,138,173, 99,121,153,105, + 23,153,231,158, 21,190,172,148,231,220, 95,193,236, 73,199, 55,142,250,153, 45, 45, 41,102,144, 74,122, 96, 46,246, 6,161, 31, +176, 88, 46,176, 92, 45,177, 92,205,144, 23, 5,202,178, 64,150, 89,130, 98,192, 98,190, 92, 40,254, 86,132,105,211,232,156,130, +209,183, 50,130,151,247, 73,232,200,142,189,144, 70, 57,239,152,216, 8,179, 60, 83,136,197, 48, 68,116, 93,143,230,120,192,118, +179,197, 16, 19, 28, 71,192,150, 85, 5,239, 29,138, 34, 67,150,145,250,191, 44, 11,108,110,111,176,223,182,184,255,240,190, 50, +168,169, 58, 29,240,226,219,151,248,244, 7,159,177,255,158, 10,162,195,254, 0,107,105,175, 94,213, 5,202,138,220, 16, 36,118, +162, 7,144,247, 30,219,219, 61, 78,207,207,249,225, 7,120,142,191,140,113,192, 97,187,195,113,223,224,241, 71, 31,208,231,170, +185,196,212,113,149, 53,137, 19,135, 16,144, 21, 5,234,249, 2, 62, 35, 8,206,108, 49, 71, 86,228, 8,125, 64,219,180, 74,166, +210, 7,188,164, 3, 50,202,178,172, 74,166,231,229,152, 47,230, 24,134,128, 71, 31,127,138,118,191, 69, 53, 95, 0, 41,162,107, +104,242, 99,141,193,124,185,212, 93,172,207, 11, 28,182, 91, 60,120,250, 1,158,124,252, 20,251,205, 22,206,142,232,226,135,159, +127, 5,147, 2,170,146,127,126,177,132, 9,123, 28,118,123,180,189, 69, 55,148,200,125,196,229,119,191, 69,158, 83,183,177,186, +255, 8,117, 93, 96,253,254, 10, 93,219,168,255,181,235, 35, 62,251,209, 23,248,244,135,159,224, 63,254, 31,255, 30,255,245, 63, +254,191, 56, 30, 58,212, 39,103,120,243,205,175, 49,132,128,178,174,113,114,126,129,172, 40,104,196, 59, 12, 56,108, 55,232,187, + 6, 48, 14,229,108,133,139,199,159, 0,214, 99,253,246, 57,154,253,173,142,229, 96,196, 15, 12, 6,128, 24,206, 62,207, 8, 1, +221, 83, 30,119, 89,213,228, 46,201,105,117, 35, 20,193,190,235, 48,244, 45, 7,171, 48,210,153, 69, 95, 20, 21,236,212, 82, 68, +133, 43,121,152,229, 97, 30, 35,173,167, 14,251, 61, 91, 45, 3,142,251,157,118,101,162,146, 78, 83,252,169,238, 75,211, 36, 1, + 11,122,144,137,141, 85, 44, 88,100, 91, 28, 59, 45,233, 42, 33, 24,227, 36,194,192, 48, 18,212, 48, 62,248, 36, 61,139, 84,219, + 3, 98, 52,119, 58, 69,163,177,191, 73, 39, 12,162, 9, 16,129, 28, 96, 20, 22, 36,224, 32,231,172,218,232,164, 3,149, 2,198, + 58, 58,244,195, 32, 89,228,142, 59, 81,199,133,176,159, 64, 69,172,238,132,189, 47,232,255,179, 36,190, 27, 73,117, 52, 73, 38, + 6,189,209, 34, 74, 92, 14,129,237,101,202, 99, 23, 70,189,170,231, 35,188, 47,120,239,156,244,185, 36, 22,208,192,232,212,246, +120,196,230,102,141,221,237, 26,219,205, 45,118,155, 27,180, 77,131,208,245, 52,210,230,233,174,168,212,245, 61, 88,186, 38, 4, +237, 26,148, 46,103, 96,117,115,108,120,178, 39,122, 1,203, 36, 59,186, 79,104,215,111,156,191, 19,208, 66,110,145, 76, 53, 41, +114,200, 75, 8,140,192,168,202, 50, 87,181,185, 70,161,166, 49,131,160, 44,243, 81, 68,103, 70,148, 47, 20, 74,147, 38, 14, 12, +114, 41,137, 2, 93,136,151,114,160,203, 20, 88,181, 94,119,242,139,204, 29,109,131,153, 20,131,163,200, 51,142,197,172,181,227, +159, 72, 99,142,138,228,131, 72,163, 33,133,149, 76,196,193,250, 7, 59, 9,150,177,113, 8, 56,220, 94,225,235,191,255, 57,214, +239,110,240,241,143,126,130, 39,159,125, 76,222,241, 44,135,207, 41, 4,133, 84,128,228, 45, 55,214, 41,167,120, 10, 3, 32, 12, +161, 69, 26,198,189,129,177,134,192, 15, 60, 26, 52,188,235, 16, 49,155,124,145,197, 10, 70,222,238,209,187, 73,138, 81,122, 8, + 55,135,195,248,101, 50,227,120,122, 58, 21, 48,204, 16, 55,214, 42,133,142, 58, 5, 78,214, 1,112, 60,180, 58, 90,146, 34, 64, + 14, 97,159, 57, 13,115,112,142, 42,210,195,238,160, 9, 99,171,179, 37,138,170, 24,201,107,145,200,111, 5,119,203, 67, 24,208, +119,129,199,216,180,167,156, 66,100,218,166,159,164,185, 81,224, 4, 77, 36,162,126, 40, 33, 12,200, 11,207,156,109,175,227, 96, +200, 40, 52, 14, 56,114, 40, 73,215, 82,228,102, 94,208,161,150,229,185, 6,229,192, 88, 56,155,240,252,219, 23,120,240,248, 17, +170,186, 64,219,118,154,121,191, 89,175,113,179,222,224,243, 31,124,130, 20, 35,242, 34,199,233,217, 9,242, 60, 67,150,123, 84, +117,137,170, 46,148, 49, 63, 13,123,217,109,183, 88,157,159,177, 29,203,232,193, 29, 66,143,230,120,196,213,229,123,220,123,252, + 72, 31,184, 66,111, 34,107, 11,221,149,205,177, 67, 81, 21, 52, 14, 47, 74, 36, 24,228,101, 65,215, 35, 4,186,199, 56,145, 41, + 33,113, 96, 73,137,162,100, 48, 74, 89,192,121,135, 60,207,185,240, 44,208,181, 29, 46, 30,220, 67,215, 28,177, 56, 91,113,154, + 95,195,130, 59,139,106, 86, 35, 25,131,195,190, 65,223, 15,232,154, 3,254,252,127,250,215,248,213,127,253, 57,119,128,244,218, + 78, 31,127,132,114,182,132, 9, 59,132,190, 71, 86, 47,136,244,213, 28,112,108, 34,144, 45, 48,155,231,120,255,226, 91,196,161, +129,245, 57,138,106,134,178, 42,176,189, 89, 99,183,185,213,164,169,148, 12, 22,203, 5,254,229,191,250, 99,252,213,255,249,127, +227,197,239,191, 1, 82,194,233,195, 15,240,252, 87,127, 71,140,136,188,160, 64,156,154,172,107,161,239,177,189,185,198,113,191, + 71,130, 65, 81,205,112,241,244, 19, 12,209, 96,253,230, 59,116,199, 13, 92,150, 99,156,138, 10,163,154,191, 3, 62, 3,108, 6, +152, 12,214,121, 84,179, 37,138,170,166,209, 59,179,179,187,166,193,113,191, 71,223, 54,104, 15,123,206, 36,200,238,116,183,212, +225,114,160, 69,164,239,187,207,114,204,151, 75, 29,223, 43,202,148,187,194,182,105,209, 53,141, 6, 25,169, 45,139,195,120,198, + 17,232,212, 35, 60, 10, 96,101,170, 4, 30,173,219, 9,248, 73,184,217, 49,138,232,201,176, 24,112, 24,239,123, 46,116,162,100, + 90,167,120,135, 14, 22,135, 65,129, 57, 10,122,137, 99,114,220,152, 15, 14, 69,232,142, 86, 57, 9, 40,177,147, 46,152,161, 49, + 48, 58, 49, 28, 56,177, 76,224, 53,110, 50, 98, 78,172, 27,162,113,178,189,211, 69, 11,147, 62,166,177,155, 85,245,190,100,200, +243, 40,126,144,117, 10,135,200, 8,118, 85, 66, 86, 6,205, 46, 55,147, 85,101,129, 44, 47,212, 2, 12,227, 16, 6,154, 38, 18, +143, 62,162,109, 26, 28, 15,123,181,229, 38,158,132,118, 93,139, 33, 14,148, 44, 25, 35,235, 47,216,234, 37,193, 59,118,140, 88, +149, 73, 68, 76, 96,228,184,153, 56, 27,104,132, 79,148, 57,163,236,119,235, 60,188,207, 53,111, 30, 19,187,165,160,114, 37,201, + 77,108,190, 2,177,242,158, 44,134, 52,102, 39, 13,135,172, 27,166,209,204,244, 94,122, 14, 21,147, 80, 33,202, 19,145,169,137, +248,196,245,248, 77, 99,208,152,134,252,240,106, 17,152,142,198, 5,225, 58,174, 73,226, 16,121,133,113, 55, 9,117,154,113,162, +168,185, 9,215,125, 20, 57,114, 65,161, 59,253,201,207,211, 3,126,100,208,219, 16, 6, 85,108, 95,191,125,141, 95,255,205,223, + 96,253,110,141,199,159,127,134,178,170, 80,204,230, 84, 69,240,195,124, 24, 70,175,158, 84,117,242,191,173, 49,176, 24, 84, 68, + 23,250,128, 24, 6,173, 48,104,223,156,216,174,227,212,147, 71,201, 97, 1, 73, 70,239, 60,166,176, 76,150, 19, 21,168, 84,205, +178,235, 6, 64, 29, 18,191,193,190, 31, 88, 97,156,177,207,210,222, 65,203,146,186,156,148,189, 93, 75,113,122, 41, 69, 69,204, +250,204,145,186,220,143,204, 96, 26,237,208,131,138,162,250, 28,143,127,198, 80,138,208,117, 56,236, 14,168,231, 51,138,145,245, +227, 56, 80, 42, 66,233,194,141,165,245, 67,115,108, 16,250, 1,109,195,239, 61, 37, 58,240,141, 33,213,117, 50, 90,108,164, 4, +116, 60,150,151, 81, 91, 8, 1, 55,215,107, 85,191,139,104,112, 54,167,131,197,179,248, 45, 1,232,219, 61,214, 87, 91, 60,253, +232, 9, 98, 28,176,103, 32,198, 16, 7, 60,255,230, 25,202,122,134,139,251, 23,168,103, 21,238, 61, 56,199,124, 73,228,178,188, +204,225, 51,218,147, 58,173,166,169, 40,187,185,186,198,197,253,123,119, 99, 7,185,235, 75, 9,120,245,221, 75,212,243, 57,170, +186,166,107,193, 95,232,230,120, 84, 81, 30,169,149, 13,119,166, 64, 81,228,152, 45,102,112,206,226,120, 56,242,231, 75,226,162, +170, 94,160,172,201, 50,229,179,156, 68,113, 76, 19,164,181,134, 71, 81, 21, 40,234, 25,156, 25, 48, 63, 89,226,228,236, 4,135, +221, 1,251,205, 45, 66,215,162, 40,107,228, 69,129,227, 97, 15, 24,139,238,216,224,127,248,243, 63,192,205,229, 59,116, 77,131, +190,235, 16,250,128,249,234, 20,103,143, 63, 68,236, 14, 24,250, 14, 62,207,112,236, 12, 98,187,197,118,115,128,201, 87,216, 92, + 95, 99, 57,207,241,230,219,223,192, 57,143,106,190,194,226,100,134,161,111,113,123,189,102, 43,234,104,109,249,217,159,255,119, +120,246,171,223,226,187,223,252, 6,206,123,124,240,213,207,240,236, 23, 63,167,189, 63,227,101, 13, 39, 79, 33, 6,236,110,174, +169,211,231, 14,229,226,241, 71,128,241,184,185,124,142,227,254,134, 15,183, 73,202, 21, 11,102,200,135, 94, 34,153,130, 8,145, + 62,195,226,244,140,252,198,236, 23, 15,161, 67,123, 60,208,174,126,183, 69,123, 60,106,154, 88, 76, 20, 44, 45, 54, 74, 43,239, +129,139, 19,227, 50, 84,243, 5,242,178, 98, 59,145,227,251,146,133, 95,145,138,239,208,247, 19, 12,174,209,195, 75, 20,192,164, + 47, 8,186,155,135,225,133,158,216,253, 68,175,193, 2, 54,217, 81, 70, 94,243, 25,200,222, 28, 42,226, 26,152,175, 32,226, 37, +207, 58,152,105,216, 71,210, 20,182,168, 29,179,102, 64, 76,187,180, 56,140,204,117, 46, 88,123, 70,184, 10, 2,215, 50,130,116, +138,239, 28,134, 4,227, 50,210,123,128,104,119, 10,138,225,209,186,216,117, 5, 10, 35,150, 70,217,245, 83, 71, 13, 61, 24, 1, +135, 40, 24, 94,235,152,153,207, 8,213,105, 90, 92,154, 4,222, 24,167,135,226,184,215, 53, 28, 45,235,117, 79, 63,200,243, 25, +146,104, 22, 88, 80,219, 17,212, 70, 14, 51,118,249,132,174, 85,181,248,116,220, 45,158,114, 42, 24,173,254,154,248,227,165, 1, +179,214,114,240, 13,148,249, 46,233,100,150, 63,235, 48, 12,148,141, 46, 83, 94, 65,211,194, 32,207,115,229,150, 72, 10,168,120, +253,197,138,109,140, 65,158,101,186,218,165,105,103, 36,250,168,157,234, 52,134,137, 74, 29,163,253, 6,105,116, 75,176, 11,194, + 59,167,228,203,105,182,121,156,252,127,224, 76,121, 35, 90, 13, 35, 92, 13, 78,126, 75,227, 84,202,240,150, 73, 28, 25,170,128, + 23,247,133, 4,189, 24,171,223, 91, 76, 60,240,246,206,142,125,186,115, 7,172,230, 5,135,128,208,247,136, 49,225,253,235, 87, +248,237,223,253, 2, 23, 79,159, 96,117,239, 2,174,168,244,133, 15, 2,109, 24, 48,217,109, 11,238,207,170, 82,217,241,188, 32, +240,223,155, 18,237, 80, 9,239,200,135,117,226, 52, 55, 5,236, 59, 22,206, 57, 61,244, 53,138,153, 69,112, 93,211, 2,198,161, +168, 74, 88,107,209,117,189, 42,196,203, 42,103, 26, 89,134, 33, 8,122,212,161,172,242, 17,194,194,212,184,255,159,173,247,234, +177, 44,201,178,244,150,169, 35,174,114, 45, 67,101,100, 70,164, 46,209,138, 61, 67,206,144, 47, 3,240,141, 0,255,209,252,167, + 1,248, 64,144, 28, 2,100,163, 85,117, 87, 87,117,102,167, 12,149, 33, 60,194,181,251, 21, 71,152,154,135,189,205,206,245, 34, +251,165, 26, 89, 89, 17,238,247,158, 99,182,197, 90,223, 74,162, 32,165, 6, 95, 98,100,155, 69,190,208,141,206, 66,184,122, 84, + 98, 52,169,208, 49,237,173, 40, 13,198,211, 49, 89, 49,172,131,237,122, 92, 93,220, 16, 46,180, 44,104, 21, 32, 68, 22, 71, 57, + 75, 99,232,224, 9, 68,211, 91, 55,120,212,215, 40,115,158,109, 48, 97,205,147,154,166, 30,142,213,231,201,162, 18, 60,225, 86, +187,182,103, 79, 35, 61,228, 69, 89,241,195,128, 28,237,122,242,246, 45, 70,147, 25,118,246,182, 32,133, 32,241, 93,223, 99,181, + 88,226,197, 79, 47,241,235,191,250, 53, 30, 61,190,143,237,189, 45,108,110,207,242, 88, 39,230, 16,159,114,152, 20, 32,162, 89, +206, 49,219,218,204,149,173,228,240,143,209,168,134,210, 10,205,114,142,174,105,177,127,239, 40,199, 28, 18,181,207, 82, 26, 87, +111, 73, 20,233, 3,202,170,132,102,209, 81, 85, 87, 89,119, 80,150, 5,148, 54, 12, 19,170,134,130,173, 40,242,232, 75,177, 98, + 63, 68,138,119,221,220,219,195,234,246, 6,179,157, 93,194, 61, 74,129, 15,111,223, 35,132,128,209,100,130,174,235, 49,191,190, +198,100, 99,134,178,210,144,251, 59,120,243,236, 25,138,122,132,174,109, 80,141,199, 56,252,228,115, 74,255,187, 57,135, 41, 43, +116,173,135,136, 22,139,219, 91,152,241, 14,206,222,189,197,227,207, 30,227,244,245, 79,144, 74, 97,247,222, 71,168,103,155, 40, + 75,131,249,237,146, 59, 20, 77,248, 85,161,176,181,191,135,157,253,109,252,241,239,254, 17, 0,240,248,235, 63,195,201,243, 31, +208,173,110,161,180,193,230,238, 62, 74,190, 36, 17, 61,174, 47,174,208, 54, 43, 4,239,160,181,193,254,253,143, 81,212, 35, 92, +159,190,197,106,113,189,150, 58,198, 16,146, 60,186, 38, 11,162,169,102, 80,166,192,104, 58,195,100, 99,147,187, 90,141, 16, 60, +133,239,204, 23,232,219, 21, 86,139,249, 16,108,196,151,184, 50, 21, 83,202,134,149, 79, 96, 11,210,104, 50, 65, 61,158,193,152, +138,220, 32, 44, 50,237,251,192, 32, 37,139,197, 13, 9, 18,215,129, 46,136,107,249,218,252, 12, 57,231,178, 16, 8,107,148,242, + 97,215,202, 76,107, 69,137,117,169, 75,202,214, 44, 53, 0,103,178,211,117, 8, 87,200, 43, 37,178, 0,249,236,251, 22, 24, 96, + 47,113, 45, 98, 84,200,180, 91,231,177,106,194,216,242, 8,215,242,187, 71, 93,180,200,123,238,228,125,102,127, 17,217,238, 50, + 49,146,241,169, 90,223,233,192,157,143,107,133, 78, 96, 49,153,206,108,124, 90, 7,208,200, 93, 72, 34,254,229,213, 74, 28,210, +225, 72, 84, 86, 12, 78,155, 20,231,153,196,123, 57,124,134,233,111, 72,241,214,100, 21, 75, 26,130,245,196, 50,234,216, 59,230, + 26, 8,166,215, 5, 88,107,243,196,212, 59,151,195,161, 8,202, 19, 50,207,162,107,187,188, 54,137, 49, 50,216, 74,228, 34, 35, + 97,106, 99, 96,253, 65,138, 67,229,162, 43, 89,144,147, 91, 32,253,239,180,150,217,133,180,110,127, 5, 51, 19, 12,219,241,214, +191,147,180, 51,167,245, 17, 77,155, 83,102,121,138,255, 70, 12,153,133, 79,157,124,200,187,245,132,238,213, 74,229, 93,122, 90, + 3,202,181,194,101, 24,157,199, 44,186, 20,195, 78,236, 14, 68, 38, 93,207,201,178, 56, 4,193,172,141,236,227, 16,205,157,239, + 63, 49, 8, 67,177,166, 63, 17,235, 34,191, 20,115, 77,151, 90,204,194,163,224,201, 30,129,208,227,229, 15,207,240,224,201, 71, +112,125,143,247,175, 94,193,247, 93,190,140,177,198,178, 37, 33, 24, 97, 89,109,111,105, 31,206, 74, 85, 33, 73,184, 22, 84,128, + 50,124,153,115, 5, 29,179, 87,215,100, 85,160, 54, 26, 33, 10,174,112, 98,190,212,210,232, 62,176,239, 16, 66, 13,118, 56, 86, +191,211, 78,139,254,127, 93,168, 33, 96,128,115,206,165, 32, 12,160,203,249,219,130,193, 6, 50, 67,253, 6, 96, 65,200, 2, 13, + 83, 24,152,194,192,246, 84,244, 8, 15,116, 33,160,231,221,213,214,238, 38,110,174,110,209, 53, 61,230,215,115, 20, 85,141,162, + 42, 17, 86, 52, 30,119, 28, 67, 74, 49,151, 92, 84, 68, 74, 31, 11,126,224,173,139,232, 51, 90, 85,105,147,117, 7,182,183,156, +124, 23, 56,100,197, 15,226, 29, 79, 5,138,245,142, 97, 12, 10,198,136, 97,100,173,168,104, 64,116,248,240,238, 28,247, 63,122, +128,155,171, 27,244,109, 15,169, 4,182,182,103,168, 42, 34,135,125,244,233, 71,184,185,188, 30, 58, 41, 94, 29, 88,235,242,170, + 69, 73, 58, 4,187,174,205,180, 48,186,136,147,106, 93,229,191,251,228,245, 9,182,246,246,241,238,213, 27, 72,182, 74,218,206, +102,180,112, 26,129, 87,163, 17,148, 49, 40,138, 2,179,173, 25,148,146,104,155,150,254, 89, 36, 59, 72, 89, 86, 44, 72,162,104, + 66,201,121,243, 33,198,172,140,174,235, 10,163,113,137,110, 14,152,170,102, 80,143,195,252,230, 6, 85, 77,138,247,229,146,192, + 52, 91, 59,155, 56,186,183,133,239,254,241,119, 84,180,141,199,240,221, 2, 7, 31, 61, 33, 71,129, 6,100, 77, 52,189,182,245, +152, 95,156, 66, 22, 51, 52, 77,135,253,163, 67, 28,221,219, 66,119, 59,193,195, 79,191,192,120,115, 15,245,116,130,155,211,119, + 24,207, 54, 81, 84, 99,138,211,100, 1,233,159,253,135,127,143,111,254,225,247,232,219, 21, 30,126,241,103,184, 62,125,143,249, +213, 25,234,209, 24,219,251, 7,208,166, 36,138, 88,223,224,234,252,130, 5,164, 84, 92,238, 28,221,135,212, 5,206,223,189, 65, +179,184,226,192,165,152, 15, 71, 41, 53,188,239,249, 66, 23, 48,229, 8,186, 40, 49,154,110, 16,228,201, 5,140, 38, 99, 4,158, +146,216,174,129,237,104, 58, 0, 49,164,121,105, 99,136,106,152, 64, 31,222,193,121,222, 73, 11,160,172, 71, 48, 76,154, 84,154, +194, 78,164, 50,112,222,193, 59, 11,219,183,232,218, 21, 49,229,185,115, 21,107, 1, 30,217, 22, 20, 40, 76, 71, 74,205,227,212, +176, 38, 28, 26,162, 42,115, 7,186,182, 67,244, 33,237,246, 61, 4,244,157, 2, 55,230,115,130, 71,243,146,196, 86, 1, 52,189, +179,182,207, 63, 3, 33,122, 99,102,101, 40, 14, 52, 18, 12, 58, 25, 98, 53, 3,239,233,233,159, 57,239, 33,133,102,239,118,186, +216,233, 52, 85, 76,130, 75, 89,235, 57,130,118, 13, 83,138,181,242,197, 59,207,158,124,153,131,140,104,253,103, 96,251, 30, 82, +166,188,110,182,150, 41,195, 26,160, 97, 37,146, 62,152,148,193,144,206,229,116, 81,122, 31,233, 66, 74,209,198,140, 1,167,209, +191,135,224,239,146,138,175,192,225, 73, 61,188,117,153,218, 72,226,101,166,231,249,176,150,216, 73,176, 49,114, 72,197, 44,114, +214,166, 96,239,116,204,122,155,236, 64, 98,250, 89, 76,250,161,152,172,209,200, 48,165, 20, 60, 67, 43,189,193, 51, 15, 80,152, + 86,136,130, 68,192,214,195, 20, 5,179, 24,210, 4,134, 46,241,158, 87,197,137, 5,175,181,162, 85,130, 34,183, 69, 81,104,216, +158, 82,241,214,121,248,113, 45,141, 45, 70,122,134,146, 61, 82,172, 33, 93, 37, 35,140,101, 22,242,197, 76, 75, 76,216,237,124, +201,175, 37, 13, 82,162,169,200,249,236, 67,104,218,176,170, 78,126,247, 4,177, 17,107, 69, 99,250,167,128, 92,139,122, 5, 11, +234, 6,122,172,166,224,117,178,129, 37,234, 82,250,144,186,213, 2, 39, 47, 94, 99,255,225,125,244,109,139,247, 47, 95,229,145, + 8, 34, 65, 40,188,179,121,204,221,247,164,146, 23,201, 82, 34, 34, 98,224,138, 50, 49,219, 5, 67,239,163,204,152, 63,250, 69, + 35, 63, 36, 18,129, 35, 77, 37, 51,230, 29, 71,155, 18,225,135, 82,149,138, 82,163,239, 58,218, 55, 27,149, 47,116,242, 78,175, +115,117,217, 39, 27, 34,154,174,207, 69, 2,253, 12, 17,166, 80,121,239,145,202,158, 16, 34,138,162, 64, 81, 25,174,198,214, 14, +139,148, 6,215,244,112,158,148,233,151,139, 64, 57,235, 69,137,118,213, 98,181,152, 67,233, 18,213,168, 70,195,145,174,105,156, + 99,173, 37,254,116, 71,121,202,130,133,123,206,250, 60,177, 48,172, 99,144, 66,240,131,135, 97,132, 31,227, 90,212, 40, 61, 40, + 10,196, 72,143, 81,228,139,213, 24,170,232,150,139, 62,143,148,174, 46,206,112,112,188,139,131,227, 67,204,175,175,161,141,194, +104, 84, 97, 60,169,113,121,118,142,195,251, 7,180, 19, 95, 54,104,155, 30, 55,215,139, 12, 93, 16, 82, 66, 25,131, 64, 11,182, +108, 39, 57,126,112,156, 19,143, 98, 32, 91, 99, 26, 41,189,121,249, 26,127,245, 31,255, 26,101, 93, 1, 81, 2,188,103,236,154, +142, 70,250,108,195,171,234,154,173, 80,138,118,222,124,105, 81,200, 15,137, 54,149, 46,160,248, 37, 77, 93, 17,191, 41, 60, 89, +209,152,108,109,226,246,244, 29,182,247,119, 81, 20, 5,108,111, 73,236,232, 61, 54,102, 83,132,232,177,184,190,194,253,167, 95, +224,248,225, 1, 22, 23, 31,176,154,207, 1, 8, 34,219,105,129,237,195, 67,248,118, 5, 4, 1,101, 52, 60, 12, 16,110,177,177, +127,132, 85, 35,176, 61,113,120,244,228, 33, 94,255,244, 3,108,223, 99, 52,219,130, 82, 2, 55,151, 87,184, 62,191, 96,224, 9, +216, 41, 81, 96,255,248, 0,218, 40, 44,110,174,241,248,235,191, 64, 8,192,242,230, 18,155, 59,187, 24,111,108,240, 5, 3,248, +190,197,237,213, 21, 93,138, 76,220,218, 57, 60, 66, 57, 26,227,244,205, 47,104, 87, 55,236, 93,229,125, 98,112,185,200, 85,186, +132,247, 2, 82,143, 49,154,110, 96,182,189, 13,231,105,159, 88, 79, 70, 8,222,194,182, 13, 86,243, 27,180,203, 57, 31, 64, 99, + 84,163, 17, 98, 20,176, 61, 49,255,169, 75, 4,188, 35, 92,106,138, 27, 29, 77, 24, 11, 42,152,154, 40,201,234,218, 55, 29,229, +128,219,158, 46,244,190, 31, 50,198,243,232, 61, 34,250,245,125,181,229,110, 38,102, 24, 74,136,233,224, 84,108, 25,162, 75, 66, + 43,189, 6, 35,145, 80, 66, 66, 40,149, 59,167, 36,186, 74,150, 56,107, 45,121,193,163, 37,216,146,214, 16, 30,249, 61, 67,162, +206, 5, 34,156, 73, 17,115,236, 48,217, 96,197,154,184,139, 24,219,217,187,207,171,249, 32, 35, 95,252,236, 89, 15, 33,135,173, + 36,189, 9,130,224, 49,121, 24,172, 79,105,180,207, 92, 5,239,237, 16, 14,194, 93,125, 12, 1, 93,103,239,236,239,137, 60, 72, +190,115, 18,125,101,185,217,176,131,167, 50, 33,239,167, 67, 0,162, 15,140, 21,142,121,178, 76,207,154,100,241,160, 26,136,106, + 66, 16,252, 39, 82, 6,136, 72, 5, 10,167,176,145,247,157, 3,107, 4, 24, 44, 19, 51, 63, 61,239,153, 25, 69,156,224, 49,235, +252,128,117, 94,127,250,204, 16,147,107,192,221,217,153, 43,169,192, 30,134,220,229, 82, 83, 38, 17,125,128, 7, 5, 99, 73,153, +158, 71,149,207, 11,228,139, 48,228, 46, 54,248,144,155,178,190,119,148, 96,153, 59,102,106,246, 60, 23, 18, 84, 67, 9, 40, 33, + 97,109,127, 39, 51,157,210, 0, 49, 20, 90, 25,111,158,178, 82,116, 14,106, 73,123,161,245, 48, 29,121, 71, 79,194, 20,204,204, + 91, 88, 23,215,197,187,154, 19,196,187, 49,173,217,226,150,126, 7,113,135, 7,175,211,136,118,253,162,240,206, 33, 68,129,162, +170,208,119, 13,206,223,189, 71,189,177,139,209,236, 10,203,155, 27,230, 39,139,156,234,149,196, 50, 80, 68, 15,242, 28,201, 26, +229, 96, 63,176,157,131,169,146, 48, 65,172,249,187,105,108,164, 37,241,211,251,206, 18,190,147,187, 69,173,117,174,238, 18, 78, + 50,129,101, 36, 43,214,109,239, 81,177,160, 75, 41, 69, 86,139,128, 44,184,147, 82, 34,136, 0, 33,129,190,181, 76, 63,115, 40, + 75,205, 23, 8,131, 55, 0, 98,254,114,104,139, 0,169,246, 43,238,216, 84, 36, 33, 93,219,244,172,220,167,241,147,237, 41,245, + 74,155, 2, 69, 85,161,170, 43, 92, 93,220,160,109, 90,140,167, 83,180, 77,131,155,203,219,188, 79,143,107,228,164,224,147,122, + 87, 48,247, 92,102,117,105,215, 90,104, 77, 29,253,112, 40,200,204,178,214,236,109, 87,129,128,254, 93,215,101,150,190, 82, 10, +245,168, 2, 16,176,152,207,233,223, 87, 1, 87,231,151,248,252,215,159,226,249,119, 63,194, 57,143,146, 73,114, 69,105,240,238, +213, 91, 60,248,248, 1,158,159, 63,195,135,119,103, 88,204, 87,240, 94,162,170, 43, 52,141,165, 42, 60,120,148, 85,129,170,170, +209, 54, 61,118, 15,246,113,125,121, 13,192, 82,104,102, 4, 41,250,189,195,106,113, 3,219, 91, 76, 54, 54,176,184,153,211,247, + 99,106, 0, 17,227,217,140,124,250,206, 99,186, 49,133,179, 30,101, 77,208,161,174,233,120, 39, 43, 50, 61, 76, 27, 26, 97, 42, +102, 25, 40,185, 22,191, 26, 3,164, 54, 24,141, 42,188,191,189,197,189,199,143,104,149, 20,129,179,147,247, 24,141,198, 80, 70, + 97,126,115,139,237,221, 29,220,123,244, 0,193,245,120,251,252, 21,192, 10,219,122, 50,198,116,251, 33,154,235, 51,148,147, 77, +196,208,194, 7,133,241,230, 20,101, 1, 44,155,136,224, 46,176,185,183,131,179,215, 47,241,226,187,111, 48,217,220, 69, 57,158, + 97,113,115,131,219,155, 21,174,206,222,115, 50,150,132, 49,164,141,120,240,228,175,241,237, 63,252, 35,198,155,123,208, 69,141, +211, 87, 63, 97,107,111, 23,245,120,194,187,205,128,118,113,139,171,179, 83,216,190, 99,130, 97,196,246,193, 17,170,201, 6, 46, + 79, 94, 99,117,115, 65,239, 0,175,137,146,253,207, 89, 71,221,178, 11, 16,186,194,100, 99, 11,211,205,109,248, 64, 69,109, 81, + 27, 4,215,161,111, 86, 88, 45,110,209,173,150,104,155,134, 46, 30,105,200,163,204, 32,168,156,140,197,201, 83,186, 40, 17, 3, +165,222,145,234,152, 15, 80,165,209,245, 36, 98,116, 46,160,109, 86,204,157,224,213, 16,200,161, 16, 17, 6,158,181, 12, 28,202, + 17,214,124,218, 60,250,245,158,161, 86, 18, 2, 58,175, 21,180, 46,243,222, 53, 35, 51,213,176, 35, 38, 65,169, 99, 16,145, 29, +108, 70,136,156, 59, 48,160, 86,179, 56,139,145,215,224,213, 20,237,179, 99,222,207, 15, 34, 41,220, 21, 41, 37, 69,254, 90,162, + 87, 58,116,135,172,107, 22, 89,113, 66, 27, 57,106,232,217, 76,197, 87,226, 6, 80,147, 96,224,189,165,137,194,154, 86,128, 72, +138, 52,157, 32,194, 31,216, 79, 77,103,234,224,239,142,119,216,225, 57, 87, 33,167,153, 9,214, 5,112,209,107,200, 43,159, 34, +101,149, 24,252,215, 89, 20,201, 84, 59,173,210,184, 30, 16, 50,230,116, 76, 34,110, 90, 8, 17, 6,160,163, 84, 89,164,152, 58, +215,176, 6,252,201, 98,230,212, 17,175, 9,156, 83,247,171,180, 25,156, 79,224, 2,131,163,100,137, 98,233, 89, 72, 45, 33,139, +193,251, 78,122, 40,195,122,133,244,252,250, 33, 58,186,208,232,186, 46,115, 65, 4, 64, 49,224,158,213,228,136,208, 74, 2,145, +244, 61,224, 66, 32,237,232, 83,180,179,227,117, 67,246, 69, 8,153,185, 8,119,215, 62,169,195, 23,121, 18,164,148,228,149,227, +176, 51, 72,163,120, 40,149, 3,207,210,119, 40,214,198,245,105, 18, 77,223,247,240,238, 15, 84,205,136,152, 56,243,224,137, 0, + 0,173,180,132,128,202,152, 82,170,156, 3, 20,251,230,218, 85, 67,157,175, 46,177,115,124,143, 5, 69, 54,143,117,165,214,156, + 95, 45,152,209,141,129,241,156, 1,251,226, 78,186,209,160, 30, 92, 31,175, 12, 41, 54,222, 81, 24, 69,226,245, 14,123,191, 65, +241, 71,187, 84, 98,188, 67,200, 1,216, 34,233,207,245, 33, 16,226,207, 13,182,151,244,225, 41, 37,161,234,130, 68, 45,130,129, + 21,129,186,118, 99, 76,190,104,165, 26,128,255,244,176,243,223, 23, 57, 81, 12,233,203,167,221,126,223, 45,113,123,189,132, 80, + 26,179,141, 9,132,240, 56,125,119,129,241,108, 19, 82, 74, 92,156, 94,230, 3,195, 90,155,127,174, 52,110,162,203, 92,177, 61, +200,179, 7, 53,102,209, 80, 74, 76, 83, 28, 82, 19, 2, 5,119,244, 29,127, 15,206,163,107, 91,232,201, 36, 87,201, 85, 93,177, +205, 35, 97, 39,123,196, 40,113,120,255, 16, 31,222,126,200,123,124,219, 83, 24,201,203,159,223, 96, 52,153, 96,181,248, 5,203, +249, 18,101, 61,230, 44,247, 10, 82,148,144, 98,140,186, 38,171, 99,179, 92, 97, 60,157,224,242,236,146,130, 78,218, 6,109,211, + 96,107,159,217,224,193,227,252,195, 57,142, 31,222,199,203, 31,159, 81,172, 32,187, 14,198,147, 9,122, 75, 69,214,120, 58,130, +210,196, 21, 48, 69,129,197,205,156, 14,168,130,180, 16, 82,202,236,111,149, 50,146,255,151, 87, 63,218, 40,216,182, 69, 81,214, +232, 87,115, 76, 54,102, 16, 82,162,109, 58, 68, 14, 98,216,222,221,192,106,213, 96, 52, 42,177,115,112,136,163, 71,247, 96,219, +134, 8, 96, 82, 32,170, 10,219, 7, 7,232, 87, 11, 52,171, 30,147, 45, 1,219, 68,108,238,237,145,198,228,186,195,235,103,207, +225,251, 21,118, 15,119,241,111,191,251, 71, 72,173, 49,222,220, 69,116, 61, 86,141, 71,179, 88,176, 26,151,158, 41,215, 6, 28, +222,251, 24,203,171,115, 44,231, 75,140, 55,247,241,226,155,223, 97,107,119, 23,229,104,130,200, 7,175,237, 45,154,101, 3, 93, +140, 72,205, 30, 61, 54,246, 14, 48,154,109,225,252,228, 45,230,215, 23,217, 37, 34, 57,170, 56,132,158, 31, 6,137, 40, 12,138, +209, 8, 91,187, 59, 48,229, 40, 95, 46, 85,101,208, 53, 45,154,197, 45, 86,243,107,178,141,242, 26,136,152, 13,150,108,147, 50, + 32,138, 20, 43,201,227,111, 37, 80, 23, 99,212,163, 17,119,127, 76,190, 19, 10,125,239,209,247,196,162,104,155, 37,162, 31,252, +203, 66, 26, 14, 90, 18, 67, 78,182, 92,203, 93,224, 67, 93,164, 46, 44, 6,242,231, 34, 81,238, 2,239, 79, 75, 58, 80,243, 14, + 83,173, 37,244,197, 28,182, 34,153,235, 45,214, 25,218,105,192,157, 34,162,227, 48,125, 36,234,104,204,177,154,116,113, 71, 8, + 21,215, 44, 75, 88,219,191,179, 11,134, 47,179,116, 70,105, 41, 88,160,197, 72,212, 72,144,155,176, 14, 36, 97,124,103,228, 11, + 62,179,237,215,236, 73,233,172, 77,222,123,103,187, 76, 95,203,197,133, 0,130, 11,208, 60,209, 33, 98,160, 26, 4, 93,204, 78, +149,140,202, 14,124, 70, 12, 43,186, 84, 24, 23,131,151, 92,144, 91, 37,101,247,209, 25, 73,208, 33, 41, 37,156, 31, 4,138, 33, +196, 44, 70, 12,158, 86,171, 84,172,196,140, 13,167,248,211,181,212, 48,165,224,172,103,216,150, 96,170, 40, 53, 35,133, 41, 24, +141, 75, 2,215,188,234,228,239, 43,237,223,147,171, 41, 35,124, 35, 53, 0, 90, 83, 3, 41,148,206, 83, 21, 41, 5, 4,139,212, + 72,155, 37,216,240, 48,140,178,165, 0,132,150, 8,189,207, 69,153,214, 10,203, 37,145, 74, 53, 79, 65,165,212,232,251,142,167, +204, 88,155, 40,201,172,187, 66, 28,246,226,226,142, 47,125,125,106, 33,178, 94, 43, 61,187,105,100,159, 38, 4,145, 1,100, 73, + 9, 47, 98,190,170,241,167,255,151,196,198, 67, 17, 17,239,168,230,215, 39, 19,218, 24,234,142, 13,239,212,140, 81,104,219,142, +246, 80, 61, 7,140, 88, 11,204,175, 49,219, 59,192,198,206, 14,110, 47, 47,184, 2,228,202, 67, 27,126, 17,192,187, 97,222,191, +240,200,221,251, 0,197,163, 59,197,220,104,150,236, 13, 47,134,247,208,236, 67,244, 62,174, 37,119, 37,165, 34,117, 17,101, 93, +228, 63, 51, 61,252, 69, 97,214, 66,104,232, 3, 44,149,225,228, 50, 2,198,216,222,194, 90, 63,132, 49, 8,129, 24, 44,179,146, + 5,234,186, 96, 59, 28,141,215,211, 11, 81,148,100,191, 35,210, 27, 9, 70,172,165,128,154,190,163, 60,116,193, 92,107,122,169, +129,213, 98,137,158, 67, 67,118, 14,118,112,123,117,131,106, 52,193,209,253, 2,175, 95,188, 65,219,246, 89,109,155, 46,246,166, +233, 88,176, 67, 49,180, 54,120, 8,132,188,155,213, 58, 37, 15, 81, 70,187,247,158, 34,100, 13,137, 73,108,239, 97, 76,193,227, + 55, 26, 55,105, 67, 2, 19, 74,141,115,153,177,127,250,238, 3, 30, 63,125,128,211,147, 83, 44,110,151,156,187, 30,176,152,175, + 0, 92,224,254,227,199,152,109,206,112,117,121, 13,101, 45,202,170,196,214,206, 54,180, 2,154,229, 60,179,193, 47,207,207,241, +233,151, 31,227,246,230,134,227, 68, 53, 97, 95,149, 66, 61, 26,193,118, 45,174,207,207,113,252,232, 55,152,204, 78,225,122, 7, +207,160,148,122, 50, 66,127,185, 66,136, 1,101, 61,202, 83,136,228, 52, 0,235, 40,146,103, 88, 27,178, 4, 57,235, 32, 69,200, + 14, 7,178, 90,134,156,149,190,119,239, 8,182,107, 17,163,196,106,177,192,198,230, 12,182,239,128, 24, 49,219,156, 97,255,193, + 67,196,224, 72, 1, 31, 35,172,243, 56,254,232, 35, 0,192,242,234, 28,147,173, 61,136, 96, 49,219,221,133,136, 22,203, 38,226, +231,111,127,192,252,226, 45,254,242,127,250, 15,120,243,211,247,112,206, 97,247,240, 17,234,138,216,239,171,142, 98, 91,173,243, +208, 74, 65, 10,194,208,126,242,245,151,248,233, 15,127,192,193,163, 39,248,249,247,255, 47,102,155,219, 16, 74,161, 93, 46, 32, +165,192,245,114,201,122, 0, 58,248,140, 25, 97, 99,119, 15,229,104,140,139,247, 39, 88, 92,157, 83,247,203, 93, 8,214, 34, 84, +163, 16,144,166, 64, 53,222,194,246,193, 94,230,231, 39, 11,208,106, 62,199,106,126,141,190, 93,162,103,139,101,207, 73, 89,206, +245, 16,210, 64, 23,150, 56,238, 9, 78,194, 24,214,228,253,143,222,195, 57, 75, 69, 38,139, 81, 73,248,218,195,245, 45,108,215, +178, 98,153, 14, 42,207,226, 55,239, 66,246,151,131,211,196,136,159,237,249,231, 27, 38,116, 67,118,180,228, 14, 51,121,178, 19, + 96,104, 45, 95, 34, 29,174, 33, 14,190,252, 96, 51, 24,134,206, 15,153, 45, 87,137, 37,158, 70,252,220,204,220,241,191,167,203, + 92,170,100, 85, 75, 93,186, 67,100,245,177, 15, 97, 16,102,101,207,119, 74, 15,211,185,232, 72, 19,132,100,237,114, 54, 12,129, + 74,113,200, 88,143,108, 11, 75,251,220, 92, 76, 9, 18,125,210,207, 35, 25, 75,203, 33, 52, 60, 69, 72,106,250,132, 55,141, 34, +230, 41, 66,186, 52,188,227, 9, 0, 79, 9,124, 10,169, 9,228, 58,162,207,113,176,235, 73,206, 34,160,253, 49,119,249, 50, 65, +102, 72,151,148,121, 25, 33, 32, 4,153, 3, 89,180, 81, 96,247,216,157, 2,204, 20,154,173,172,158, 21,249,124, 33,199,144,127, +150,129, 89, 79,239,185, 46, 43, 22, 13,115,241,195, 66,202, 32,134,156,114, 68, 34,124, 2, 34,195,101, 82,145,146,172,113,138, +225, 53, 33,143,212,125, 14,248,162,203, 22, 8,158, 27, 63,163,208,117, 61,148, 18,128, 7,143, 95, 0,151, 0, 0, 32, 0, 73, + 68, 65, 84, 44, 55,183,129,215, 47, 49,172,161,201,105,100, 67,129, 57, 73,181,206, 63,151, 92,239,166,211,165,155,199,236, 33, + 79, 53, 82,209,152,213,254, 97, 16,234, 65,252,127, 39, 65,105, 98,189,206,139,143, 57, 63,253,255,255,242,215,193,147, 63, 57, + 9,229,210,184, 38,184,158,191, 56, 15, 21, 60,164,136,232,219, 6,227,157, 67,172,230,115,120,215,242, 11, 76,156, 99,193,130, + 15,109, 20, 44, 36,148, 24,224,247, 66,166,189,146,204,138, 75, 83,168, 65,253,201,190, 78, 18,111,200,172, 8, 36,204,108, 64, + 81,146,111,218,148,134,153,201, 36,247,247,184,155,144, 3,182,181,145, 39,209,231,106,214,246,142,237,110, 98,205,102,150, 72, +103,195,190, 35, 77, 5,138, 82, 15,105, 78, 28,234, 66,172,246, 14,182,247,195,139, 31, 61, 31, 34, 44, 40,235, 93,222,231,216, +222, 99,113,187,192,251,183, 30, 91, 59,219,152,110, 84,104, 91,137,163, 7,199,120,249,211,115, 2,171, 36,166,111, 14, 88,160, +159, 95,165, 12, 93, 41,160,162,128, 44,139, 28, 29, 40,249, 69,204, 94, 80, 22,159,152,194,228,212,184,241,100, 4, 41,129,170, + 46, 81, 85, 5, 7,161, 4,172, 22, 13,250,190,195,252,250, 10, 31, 78,198,216,216,218,194,245,229, 13, 86,203,134, 62,107,231, + 48, 26,143,240,226,199,231,120,250,213, 19,188,123,125,130,209,184,196,246,238, 54,135,188,180, 16,240,184,189,190,198,252,230, + 54, 11,120,138,162,192,104, 92,101,165,116, 85,151,112,147, 49,186,102,133,102,181, 66, 8, 17,227,233, 4,139,155, 69,182,113, +212,227, 17,110,174, 26,216,206, 81,165, 47, 64,157,186,214,232,218,158, 31,122, 58, 4,138,138,126,127,205,185,247, 96, 81, 74, + 34,232, 5, 8,168,178, 70,215,222, 98,188, 49,197,226,250, 6,213,100,131,198,244, 90, 34, 4,133,201,184,194,108,123, 11,213, +100,138,110,213, 32,186, 22, 77,211, 96,178,189,143,217,206, 14,154,235,115,168,178,198,100, 86, 67, 0, 88,221, 92,226,242,114, +133,213,202, 97, 53,191,194,238,193, 30, 38,147, 18,223,253,253,207,216,216, 61,198,230,206, 54,209,215, 58,135,222,146,192, 84, + 75, 64,203, 0, 1,143,227,143, 62, 67,223,182,216,185,247, 24,207,255,248,247,216, 57, 56, 68, 53,222,160,139,204,247,184, 58, + 59,227,142, 64, 18,221,203,148,216,216,217, 67, 61,219,194,242,234, 2,209,247, 40,235,113,198,238, 10,145, 92, 16, 18, 8, 17, +101,189,129,241,198, 46,198, 27, 91,119, 16,177, 2, 17,139,155, 43,180,171, 91,116,109,203,108, 4,178,235, 81,167, 73,130, 58, +199, 23,182, 9,140,239, 13,180,143,174,199, 35, 20,101, 65,130, 85, 79,222,226,166,105,208,181, 14, 33,244,240,174,135,119,150, + 39,123, 26, 62,114, 8,168, 20,136,142,199,229,190, 31,114,188, 19, 98,118,109, 26,151, 58,153,224, 29,123,200,117,182,199,105, + 83, 12,170, 98, 86, 47,103, 4,103,126,163, 1, 1, 14,107,201, 72, 83,121, 39,190, 53, 53, 3,153, 86, 23, 83,182, 53,103, 68, +228,201,161, 95,203,221, 14, 92, 20,251,187,221,153,243,119, 40,114, 67,188, 42,101, 78,104, 99,232, 89, 75, 28,240,161,103,201, +221,164, 54, 10,174,119, 67,106,152,146, 28,203, 26, 89,216, 55,208, 58,147, 77,147, 28, 45, 10,208, 34, 3, 73,132,212, 64,240, + 16,130,247,229, 84,237, 33, 4,199,162, 53,154,232, 56,231,169,251,244, 14, 69, 81, 65, 72, 74, 95, 75,197, 81, 76,217,223,108, +241,243,150,138, 62,173, 5,140,161, 9,134,227,142, 90,112,144, 83,138,185, 77, 98, 70, 74, 71, 11,128, 78, 23,172, 90,243,109, +135,193,107, 15, 64,200, 34,127,135,206,186,140,114,133,143, 57,245,207, 89, 71, 33, 53, 84, 39,144, 11,166,183, 28,154, 21,115, + 1, 73, 44,134,200,244,188,152,163, 82, 93,202,244, 96,235, 33,101, 90, 4,210,108,177, 80, 77,138,225,217,112, 46,240, 90, 97, +200,233, 80,235,119, 96,134,191,196,172,179, 32,171, 26,141,189,233,125, 27, 86, 53, 50, 39,153,138, 12,170, 1, 23, 49, 41,122, + 46, 77,128,242, 8,254, 79,167, 76, 2,195,152, 63,135,166,137,204,196, 87,114,125, 21,148, 70,244, 98,141, 31, 15,232,152, 57, +195,128, 18,244,229,105, 99,224,250, 62,123,116,189,115,104,219, 14,144, 11,148,245, 62,182, 14,143,112,250,234, 37, 95,228,100, +201, 72, 40,201,196, 76,246, 66, 66, 1,107, 15,131,200, 35, 23,165, 21,172, 13,208, 70,176,128, 67,101,108, 43, 85, 64, 52, 70, + 18, 49,162,170, 11,174,104,193,123, 58, 74, 10, 10,107, 97, 14, 41,214,111, 29,255,167, 20,129, 0,160, 35,188, 27,188,245, 69, +105,178,194,213, 24, 5,165, 37,250,158,147,209, 24,102, 17, 3,160, 10, 94,166,177,151,212,177,237, 44, 41,100, 7,107,159,227, +238,133,188,182,150,173,106, 84, 53, 3,182,109,112,118,114,130,235, 75,186, 24,202,209, 8,159,253,250, 11, 60,251,238, 39,156, +159, 94,230, 61, 76, 96,109, 66, 26,245, 71, 36,123, 27,161, 76,169, 59, 79,227, 59,130,244,132, 32,201,147,174, 13,148,162,202, +175, 44, 75,148,149,225, 85,130,166,128, 19,158, 76, 40,173,113,123,122,129,174,109,241,252,135,231,248,252, 87,159,161, 89,117, + 56, 59, 61, 71,201,152, 91,219, 59,152,162,197,171,103, 53,126,251,215,191,197,237,245, 77, 78, 23,147, 82, 97,181,106,112,125, +117,205,118, 64,122,201,118,246,183,243, 62,208,246, 84, 84, 77, 55,166, 88,220,220, 66, 74, 96,113, 59,199,206,225, 1, 86,139, + 22, 69, 89, 64,105,133,122, 84,147, 72, 17, 17, 69, 85, 66, 8, 42, 66,132, 4, 22,243, 21,121, 81,181, 68, 12, 36, 34, 76,123, +184,144,198,109,188,238,233, 91, 11, 93,141,177,177, 57, 65, 35,123,242, 73, 55, 13,234,233, 6,148,164, 98, 7,193,161, 40, 70, + 56,250,248, 19,172,110,151,152,110, 77,240,238,249, 91,152,178,198,241,227,143, 81,153,128, 27,215,161,154,236,192, 20, 6, 23, +111,223,224,228,205, 41,246, 30, 62,193,242,228, 5,170, 82,226,243, 63,251, 45,158,127,251, 7,168,162,194,222,241, 49, 68,232, +112,123,117, 13,168, 49,250,118, 5,239,123, 24, 21, 32, 88, 17,252,241,175,126,133,118,213,226,205, 15,255,128,157,253, 61,148, +163, 9, 89, 71,251, 6,215,103,239,233, 66,151, 10, 34, 58,120, 68,204,182,119, 48,222,216,192,213,251,247, 88,221, 94, 33, 10, +242,239,123,239,160,117, 65, 5, 35, 11,165,198,179,125,212, 27, 59,168,199, 27,121, 58, 4, 4,216,190, 67, 51,191, 66,223, 46, + 96, 45,141,215,251,190,135,117, 30,214,246, 40,202, 26, 34, 10, 8, 86,160,123,103, 9,194, 81,128,153,251, 53,170, 81,157, 11, +223, 16, 20, 92, 0, 11,104, 61,156,237,224,108,207, 29, 91, 68,144, 50, 31, 56, 8,113,109,108, 76,214, 46,107,187, 44,134, 26, +120,228, 76,210, 74,126,115,105,114, 42,155,214, 5, 95,154,195,101,155, 80,160, 96, 13, 13,117, 92,220,237, 59,203,211,181,225, +239, 77,148,174,192,232,215,164,203,241, 28, 67, 27, 19, 43,158, 59,230, 20,162, 65,120,211,116,198, 32,171,191, 19,188,132, 10, +121,149,189,216, 42, 91,120, 85,198,224,166,125, 39,216, 2,150,118,214,136, 49,195,168,164, 16, 89,123, 34,185, 8, 35,180,108, + 28,192, 57, 0, 77, 78,125,160,110, 44, 14, 28,130,248, 39, 1, 56,228,251, 6, 36,116,142,114,150, 82, 19,112,142, 47,130,100, + 1,165,149, 5, 6,212,106, 36,171, 94,112,142, 45,107, 58,123,180,125, 96,106,155, 72, 25,224, 67, 14,121,154, 50,166, 56,238, + 52, 97, 21,144,107,193, 86, 50,127,103,233, 76, 78,214,183, 36,255,114, 46, 48,224, 75, 12, 99,118, 73,225, 43,228,170,114, 40, +202,130, 38, 30,140,154, 78, 34, 7,197,196, 62,191, 38, 68,211,134, 9,162,220,197,219,174,203,164,204,224, 83,102,132, 96,154, +157,131, 86,130,182, 63,116, 83, 18,171, 33,241, 24,146, 74, 95, 82, 97,164,164,128,245,131,207, 92,138,181,196,190,108,181, 76, +186, 13, 22,155, 99, 0, 30, 37,119,198,154,174,157, 93, 12, 73, 32, 23,215,168,115,131, 22, 56,174,161,129,169, 51, 23,119,172, +222,105,242, 37, 56,194, 71, 32, 66,251, 8,136, 16,208,247, 46, 87,151, 49, 6,130,252,243,200, 47, 70, 7, 89, 80, 55,213,220, +222,160,156,110, 96,115,111, 23, 87,167,103,144,154, 82,147,188,247,208, 69, 65, 35,238,112,151, 10, 69, 94,248, 0, 93,208, 11, +152, 98,246, 28,127, 1,206, 57, 20,165,102, 75, 3, 95,114,145, 46, 7,239, 67,254,133,138,210, 12,133,129, 81, 40, 74,131,224, +169, 96, 72,160,137,244, 82, 36, 15,100,170,206, 83,117, 20, 98,164,145, 58, 87,190,214,122, 20,133,206,161, 50,233, 63, 9,144, + 66,191, 67,215, 17, 44,198, 24, 77, 48,127, 46, 16,218,142, 44,105,182,119,217, 95,158,241,126, 60, 33,160,238,138, 72,100,207, +191,255, 17,163,233, 12,251, 71, 7,248,252, 55, 95,227,197, 15, 63,227,245,203, 55, 89,156, 68, 47,249, 32, 64, 12,153, 34, 52, +132, 19,148, 5, 33, 96,149, 82,156, 9,110, 80, 85, 21, 66,112, 12,138, 49,180, 67, 23, 20, 16,208,181,116,104, 8, 14, 40, 48, + 69,129,197,237, 28,183, 55, 87,248,249,135, 26,247, 63,122,136,139,243, 75, 34,219,105,178,131, 20, 85,137,241, 88,195, 20, 21, + 54, 54, 3, 62,156, 92,161,240, 17, 93, 71,107,153,162, 44, 17, 53, 29,180, 93,211, 97,123,111,103,224, 70, 59, 15,105, 42,184, + 62, 96, 50,155,194,217, 30,183, 87,215,116,105,205,102,228, 79,143, 73,204,196, 35, 86, 37,161, 11,131,201,198, 20, 93,107,209, + 53, 29, 87,202,200, 33, 28, 66, 41,120,235, 88, 71,225, 16,225, 17,133, 69, 12, 17, 7, 15, 31,194,118, 29, 54,118,182,105, 71, + 43, 13,116,138,140,148, 64,189, 49,198,116,103,143, 39, 9,204,225, 15, 17,123,247, 30,162,170, 75, 52,183,103, 40,234, 49,234, +113,141,235,211,247,248,254,143,223, 99,247,193, 19,216,174,129,239,230, 56,122,244, 8, 34,116,184, 60, 61,197,222,131,167, 64, +116,184,185,188,198,124,222, 96,188,181,129,232,174, 33,130,165,110,183, 52, 56,254,228, 51, 76, 55,183,240,237,223,253,111,216, +216,218, 70, 49, 26, 67, 32,192, 54,115, 92,188,127,199,214,150, 8, 83,210,115,183,185,119,136,237,163,123, 56,123,243, 26,171, +155, 83,132, 0,152,178,130, 79,164,198, 16,121, 44, 45, 49,221,218,197,104,186, 13, 83, 22,176,150,170,126, 66,188,182,184,189, + 58, 71, 12, 62, 63,143, 93,215,161, 93,173,114,135,103, 93,200, 94,127,250,239,123,152,210, 67,235, 17,170,209,152, 66, 50, 64, +164, 47,231, 19, 48,132,132,137,237,106,145, 11, 86,109, 10,244,206,145, 26,217,210,232,218,135,152,173, 82, 16, 67,252,242, 58, + 23, 59, 93,160, 57,204, 34,217,189, 98,132, 49,101, 70,255,146, 50, 92,241,193,157, 18,171, 34,139,207, 56,115, 58, 14,216,224, +129,198,152, 66, 67, 88,221, 29,104,186,229,115,244,168, 92,243, 0, 71,246,134, 99,136, 64, 77, 16, 31,200,129, 62,151,244, 63, + 44,198, 74,227,248, 16, 34, 10, 38,146, 9,222,147, 74, 30, 3,123,230,204,135,148,105,159, 97, 37,200,204,134, 44,146,145,146, +213,223,200,205, 75, 26,217,166, 44,121,145,109,113,248, 19, 6,185,202,151,120, 20, 4,211,233,251, 46,175,178, 36,251,222,139, +162,204,211, 15,239, 2, 76, 65, 69,206,112, 49,113,190,124,246,141, 71,136, 56,232,144,168,192, 72, 25, 25,122,200,231, 72,238, + 4, 46, 24, 10,230,122, 80,129, 55,136,194, 98, 76,252,129,180,235,151, 57, 45, 16,136, 16, 74,128,148, 27, 49, 83, 8, 41, 31, + 39, 77,130,213,157, 0, 31,178, 84, 82,152,149, 76, 90,140,100,246,146,146,121,237,180,106, 72,197,171, 82, 50, 23, 90, 9, 11, +107,109,191, 54,251, 9, 72, 63,145, 96, 17,170,144, 18, 50,143,240,105, 4, 30,114,238, 73,164,169, 99,162, 33,176, 70, 34,198, +136, 32,249, 41,226, 6,109, 8, 91, 17,107,250,168, 20,200, 66, 43, 20,228,154, 78,220, 25,171,139,245,125,250,128,143, 27, 80, +180,156, 58, 71,246, 81, 46, 56, 50, 57,106, 77,158,239,172,207,216,191, 16, 28,148, 2,188,237,225,122, 78, 88,235, 41, 52, 99, + 52,157,210,216, 69,137,252, 97, 9, 1,138,105,228,202, 60,225, 11,201, 83,136, 76,159,114,172,118, 20, 28, 76, 79,162,139,144, + 5, 54, 49,146,189, 99, 64, 1,166,152, 77,172, 81,215,232, 23,166,203, 94,176,184, 44, 49,221, 99,142,119, 77,151, 90,218, 31, +101, 64,190,162, 81, 59, 21, 4, 50,143, 52,164, 38, 33, 90,219, 90,180,109,143,182,233,136,223,205,135, 37, 89,208, 92, 78,166, + 91, 71,246, 5,246, 57,230, 14, 60,146, 7,221, 89, 18, 23,157,159,188,195,183,255,252, 71,188,124,246, 22, 79,191,254, 18,127, +254,239,126, 59, 84,157,124, 49, 38,114,158,115,204,170, 22, 2,227,201, 8, 91,219, 27, 24, 79, 71,140,109,165, 16,153,178, 42, + 33, 21,113,239,139,194,240,239,197,222,125,246,147,123,103,115,180, 38,133,218,144,207,242,245,139,231,168,199, 83,220,123,112, + 12, 99,168, 40, 26, 79,106, 60,253,252, 49,219,220, 78,135, 14,211, 57, 24, 99, 80,141,106,212,227, 49,202,154, 84,254, 93,215, + 98,182, 57,227, 21,137,129, 46, 76,222, 73, 17,165,143,198,246, 74, 73,236, 29,237, 96, 52,169,115,247,166,180,132, 97,107,202, +104, 60, 66, 61,161,221,186, 50, 67, 64, 67,162, 77,133, 16,161,211,239,199,168, 97, 93, 24, 84,227, 49,182,182,103, 0, 34,166, +155, 83,132,224,177,127,124, 8, 41, 3,138,130, 88,248, 17, 18,219, 7,123, 44,192,163,169,204,206,225, 33, 70,179, 25,140, 38, + 16, 78, 61,221,132,109,110,240,199,191,255,103, 76,119,143,113,246,238, 29, 16, 3,170, 74,225,147, 47, 63,197,247,191,255, 61, +198,155,135,168, 71, 5,108,187,194,229,217, 25, 76, 89,211,229,101, 23, 64,236,104, 90, 34, 37,238,127,250, 21,190,249,219,191, +193,120, 58, 70, 61,157, 66,138,128,155,243,247,184, 56,121, 67,148,184, 24,178, 64,115,115,247, 8,219,199, 15,113,121,242, 22, +183,103,111, 97,187, 14, 2, 30,205,226, 6,182, 89,192,219, 6, 2, 17,163,233, 6,182, 15, 31, 96, 99,247,152,211,219,104, 42, +214,181, 13,250,102,142,213,237, 85,214,104, 56, 31,176, 90, 46,208, 53, 43,222,133, 15, 28, 7,154,246,248,220, 97, 43,173, 24, +205,107, 96,202, 2,210, 16,193, 76, 42,197, 92, 5, 7,103, 59, 90,141,241, 69,213,119, 61,171,210,177,230,195, 78,153, 2, 34, +143, 74, 37, 95,202, 41, 26, 51,249,194,147,231, 91, 96,192,206, 38, 85,119,100,248,139, 41, 6, 70,119,238, 85,248,123, 15,108, +159, 36,220,107,204,161, 29,193,199, 59,227,208,129,226, 62,248,223,115,154,162,144, 60,225, 72,145,151, 17, 62,184, 33,130,147, + 87, 6, 41,230,149,254, 29, 78, 13,147,195,184, 94, 74,197, 23, 20, 50, 14,122, 29,113,235,152, 67, 31,217,147, 79,222,243,248, + 39,194, 87,149, 49,210,169, 41,176, 46,228,117,165,231,209, 62,214, 58,116,173,239,238,242, 5,227, 96, 9,219, 76,140,125,231, + 61,217,216,216,250,149, 66, 99, 4,227,116, 29,231, 98, 68,112,241,193,154, 12, 58,119, 4,115, 40,100,230,102, 36,238, 65, 34, +214,133, 20, 4, 19,169,176, 72,164, 62,210, 5,164,103,130,240,182,166, 48,208,218,100,142, 72,224,110, 56,137, 21,210, 89, 25, +153,170, 55,196,228,138,252, 28, 40,142,242,150,107,211, 25,109, 24, 36,195, 58, 40, 99, 82,209, 23,178,160, 77,107,210, 22, 41, +153,224, 46,158,169,161, 60, 46,231, 41,237,250,189,169, 20, 89, 30,211, 26,118, 61,218, 90,166, 0, 21,158, 66, 32, 23, 88,244, +189,148, 69,137,170, 44, 9,164,147,161, 73,114, 96,188,139,132,146,101,166,189, 84, 80,202,228, 66, 86, 74,157,237,157, 41,240, +135,231, 43, 67, 70,123, 18, 75,166, 52,188,164,243, 16, 26, 90, 72, 9,215,219, 92,217,248,100,237,210,212,205,118,150,198,115, + 69,201, 31,150, 16, 80, 50, 0,162,192,104, 58,165, 78,193, 58, 72,197, 36, 56,164, 17,116,230,217,229, 17,125, 2, 38, 72,173, + 80,104, 5,231, 57,184,132,105, 75,166, 52,136, 33,102,158,175,247,196, 70, 79,162, 19, 41, 35, 32, 34,137,120, 66, 96,133,165, +204, 35, 16,165,249,197,230,234, 60,216,100,121,138,185, 66, 78,176, 5,109,210, 62, 95,176, 69, 2,136,158, 20,239, 67,134,122, +132,179,150,128, 58, 82,230, 78,223,246,238, 79,196, 9,100,111,203,123, 56, 68,182,224, 16,237, 42,117, 44,148,192, 6, 88,219, +225,213,207, 63,227,195,219,247,248,226, 55, 95,225, 63,253, 47,255, 9,223,252,211, 55, 56, 59,189,228,169, 3,249, 29,203,106, +204,194,189,146, 46,213,130, 68,134,213,184,226,253, 35,137,197, 52,115,243,211,216,191,239, 98, 14,195, 81,146, 42,212,219,171, + 57,186,206,162,105, 58, 20,133,193,120, 50,193,106,185,196,171,103,175,240,244,139,167,184,190,186,134, 82, 10, 95,253,230, 51, +108,238,108,226,250,226, 6,215,151,215,104, 27,139,167, 95,126,140,179,247, 23,252,251, 68,120,219, 99,181, 32,101,121,179, 92, +225,225,227,163, 44,248,162,196, 57,129,122, 92,195,118, 29,165,141,185,128,182,105,177,185,189,129,197,237,138,200,115,147, 10, +101, 93,178, 88, 42, 66, 23, 5, 20,231,173,147,243,129,158, 67,234, 58, 61, 11, 44, 89,248,164, 21,170,186,134, 84, 26,163,233, + 6,156,237, 49,154, 76, 32, 16, 81, 86, 37,198,155, 19,220,158,159,194,104, 9, 17, 11,220,251,228, 49, 78,222,156,162, 40, 12, +186,198,162, 30,213,112, 14,152,110,140,112,253,225, 45,198,179, 13, 24, 35,241,187,255,243,111, 81, 78,118,112,113,122,137, 66, + 3,182,153,227,248,241,199, 88, 94, 95,193,121,129,227,135, 7,240,221, 10, 39,175,223,161,235,122,140,183,106, 52,203, 5,224, + 87, 52,213,137, 17,159,254,229,127,196,234,234, 3,148,150, 40,138, 9,162,239,241,225,237, 47,152,223, 92, 33, 6,207,123, 62, +170,220,183,247, 15,113,240,209, 39, 56,123,251, 11, 46, 63,188, 38,123, 14, 71, 22, 39,157,139, 54, 6,163,233, 6,166,219,251, + 80,166,204,137,131,205,178, 69,112, 84,176,217,110, 5, 31,124,166,186, 17, 8,166, 33, 29,137,210,236,116,149,204,254, 86,108, +247, 41, 81,141, 70, 25,179, 25,185,168,140,105,212, 11,192,123,139,190,235, 50,221,203,121,143,200,187,222,222, 58,154,216,192, +231, 68,173,108,183, 97, 56, 71,138,181,164,105,109, 96, 31,179,230,188,241,130,242,160,133,132, 84,132, 35,206, 78, 93,230,187, + 43, 69,241,166, 50,147,231, 72,204, 69,239,176,231,145,172,200,182, 44,193,187,209, 20,226, 18,216, 6, 6, 17,179, 77, 73,102, +181, 53,178,205, 76, 10, 22, 30,242, 62, 85,112, 7,148, 46, 52, 41, 21,188, 72, 62,116,157,247,160, 73, 20,247,167, 59,124,234, +208,124, 30, 31,251, 28, 60,179,206,249, 30,192,226,142, 71,243,224,203,196,218, 62, 91,182, 2, 79, 54, 60,103,181, 39, 12,110, +200, 66,178,193,151, 13, 17, 73, 5,158,124,226, 66,115, 22,132,186,227,171, 87, 24,176,174, 49, 56,110,134, 6, 62, 63,120,127, +108, 45, 9,168, 83,145, 46,184,155, 22, 94, 32, 40,154,130,169, 28, 92,163,178,159,155,208,207, 5,159,207, 58, 79, 8,164, 34, +206,188, 90,195,119, 83, 40, 13, 83,229, 98,162,235, 13,192, 30,193, 5, 73,240,196, 63, 73,160,160,244,119,122, 79, 59,241,212, +225,165,162, 72, 41,106, 24,250,142, 10, 83,195,147,230,100, 31, 78,235, 44, 26,179, 7, 40, 41, 16, 83,115,233, 35,221, 37, 61, +161,201,147, 0, 47,248, 8,153, 62,131,136,188, 63,215, 90,103, 18, 94, 18,203, 73,165, 40,110,155,131,115,156,179,121, 58,146, +214,200, 89,119,225,104, 2,169,146,222,193,243,106, 51,242, 52,133,191,219,244, 14,164,172,122, 90, 91, 13,236,119, 2,178, 1, +186,172,106, 68,239,208,179,144, 70,241,254,105, 32,170, 9, 38,237, 68,232, 20, 88,210,117, 16,186, 64, 49,154, 80, 71,185,108, + 96,228, 16, 60, 64,227,117,159, 81,128, 9, 78, 34, 36,137,158, 82, 70,182,214, 18, 93,227, 32,184, 19, 91, 45, 59,218, 17,151, + 37, 26,142,127, 13, 1, 40, 11,197, 63,147,202, 29,119, 96,197,106, 98,238,210,136,110,136, 76,244, 46, 64,105,193,255, 59, 58, +116,232,126,143, 67, 88,189, 36,255,107, 8, 68, 94, 82, 37,211,149, 66, 64,111, 61, 71,164,130,225, 39,138, 49,134, 50,147,225, +144,130, 22, 98,200, 99, 37,170,170, 69,182,138, 40, 38,192,121,134,250,123, 55, 84,144,171,229, 45,254,229,239,254, 1,247, 31, +127,140, 95,253,213,111,177,188,189,193,179,239,159, 97, 49, 95, 0,145, 56,197,101, 97,104, 47, 54,170,214,126,223, 72,105,113, +117,205,244, 61, 42,164,156,117, 40, 75,138, 63, 44, 74, 3,215,211,190,191,239, 45, 22,243, 5, 63,172, 84,217, 77, 55,103, 40, +171, 2,125,183, 68,211, 56,124,241,171,207,224,108,143,195,251,135,232,218, 22,215,151,215,152,223,206, 97,123,139,219,155, 93, +204, 54,103, 88,204,151,208,133, 70, 81,149,232,251,130,145,187, 61, 70,147, 49, 62,188,121,159,139, 66,193,161, 33,105,157,162, +107, 3,215,181,144,106, 7,211,141, 9,250,174,103,198,190,230, 0, 31, 13, 83,210, 37,223, 44, 26,116, 29, 51,246,165, 64, 89, +167,138, 87, 3, 50,100,129, 75,194, 18,111,237,237,160, 93, 46,176,177,179,141,122, 84, 96,113,235, 81,150, 5,124,223,195,246, + 22,211,205,141, 28,106,113,123,117,141,141,237, 77, 78,214, 27,195,182, 11,148,117,141,201,214, 54, 94,124,251, 45, 2, 74, 72, + 83,225,234,195,115,124,242,197,231,144, 34, 96,239,248, 0,191,255,127,254, 22,219,135,247,160, 68,196,229,229, 53,154,166, 69, + 81, 20,136, 81, 34,118, 87, 64,116,136,193,224,147,223,254,123,220,127,250, 41,126,249,183,127,129,214, 6,221,242, 22, 31,222, +188, 98,245,125,184,147,230,180,123,252, 16,123, 15,158,224,195, 47, 47,112,123,254, 14,136,150, 59, 45, 13,111,123, 4, 41, 80, +143,167,152,110,239, 96,188,177,141, 32, 74,184,190,131,181, 14, 61,119,231, 49,116,153, 48, 70,182,196, 30,125,215,163,109,150, + 57,250, 50,197,127, 66, 12, 30,238,178, 26,161,170,107, 42,142,211,127, 39, 36, 44,243,219, 5, 8,255, 42,224, 6, 12,166,210, + 28, 15, 38, 96,249, 89,167,119,155,109,157,201,208,189,182,103,164,144, 23, 63, 8,227,114,142, 53,239, 11, 33, 81, 20, 21, 31, +124,195, 37,153, 14,200,152,119,221, 3, 68,138, 6,160, 49, 3, 83,136,168,231, 51,242,117,184, 56,195,208, 53,199, 1,254,146, +152,229,193, 15, 69, 65,196, 32,214, 74, 48,154,184,230, 15, 30, 48,187,129,227,123, 85,222,241,166,127,150,138, 6,210,223,244, +121, 95,186,206,163,207, 88, 83,173, 50,139,194,123,151, 39,144, 57, 15, 62,117,188,233,240, 22,226, 14, 89, 51,217, 3, 99, 76, + 23,188, 31, 40,108, 60,237, 83, 74, 67, 41, 74,108, 76, 22, 52, 98,144, 15,241,178,217, 2,151, 59,229, 0, 4,129,162, 48, 84, + 0,230, 93, 56,205,122,140, 97,242,158, 88, 15, 89,137,121,109,160,185, 96,204, 35,105,102, 11, 4,206,102, 72,224,172,116, 79, +101, 45, 68, 72,255, 27,234,198,147, 24, 89, 41,149, 5,137, 67,116,116, 2,245, 80,169,154,152,244, 3,152, 37, 77,113, 67, 62, +191, 3,175,131, 36,187,148, 92, 31,120, 92, 46,178,110, 33, 9,235,250,222, 66, 73,158,114,112,172,111,223, 91,210,128,112, 1, +144,224, 53,233, 57, 37,146,167, 88,227, 21,208,180,195, 20, 37,103, 94,184,252,157,144,248, 84,178,224,155,222,155, 52, 37, 39, +190,125, 88, 35, 61,242,190, 60,229, 26,179, 88, 51, 66, 64,172, 5,129, 70, 36, 33,105,132, 20, 17,218, 7,192, 20, 37,198,101, +137, 16, 2,218,213,138, 40,110,236, 61,167, 47, 64, 66, 72,234, 2,148, 54,204,118, 39,142,177,212, 5,180,182,136,145, 46, 47, + 17,169, 99, 80, 74,195,139,136, 66, 42,194,196,114, 37,104, 45,231, 26,243, 15,175, 12, 85, 57,130,129, 41, 66, 8, 22, 70, 81, +215,166,140,129, 9,128, 54, 50,195, 35, 8, 84, 66, 2,138,132, 2, 84, 33, 32, 74,145,163, 95,181,161,195, 95,115, 85, 43,152, + 44, 68,126,104, 26,221,219,222, 35, 32,217,227, 72,160, 17,124,228, 47, 49, 50,162, 53,220,137,106,181, 61, 85,224, 57, 2, 84, + 2,109,235,242,225, 64,145,175,130,145,178, 30,158, 5,116,116,241,115, 90,143, 36, 62,212,184, 46, 33,165,196,205,229,123,124, +255,199,136, 39, 95,126,130, 63,255,239,255, 2, 87,231,103,120,245,211, 75, 88, 22,146,164, 66, 36, 41,129,137,158,100, 56, 92, + 39, 32,136, 1,183, 27, 65, 85,239,114,209,112,172, 45, 33, 39,235, 81,153,171, 80,109, 10,196, 24, 48, 30, 87, 88, 46, 86,184, + 56,125,143, 79,191,250, 12,136, 29,234, 81,137,139,211, 11, 98,152, 3,232,187, 30,111, 95,253,130, 79, 62,255, 12,101, 85, 34, + 6,186,140, 77, 81, 32, 40,207,151,108,204, 65, 54,206, 57,192, 35,239, 8,181,209,217,210,226,125,128, 41, 10,222,183, 70,138, + 95,245, 49,119, 52,218,104, 52,171,150, 1, 60,150, 70, 82,156,157, 93,148,134,149,206, 18,101,173, 32, 85, 1,169, 13,170, 90, +163, 89, 74, 24, 45, 49,153,141, 96,109,100, 13, 67, 11, 83, 22,216,189,119,132,159,190,249, 25,186,168, 80,215, 5, 54,247,247, +224,173, 69, 61, 46,225,187,136,143,191,124,138,151, 63,189,198,243, 31,158, 97,239,193, 19,188,248,238, 91,200,216, 98, 60,157, +224,248,227, 7, 56,125,253, 22,197,104,134,201,164,192,252,234, 10,103, 31, 62, 64, 68, 15, 37, 43, 82,148,135, 6,136, 1,143, +190,250, 11, 60,252,252, 43,220,158,189,131,136, 30,243,139,247,184, 60, 61, 97, 48,138,202,246,188, 24, 35,118, 14, 31, 98,255, +193, 19,124,248,229, 57,174,207, 94, 67, 42,147, 99,107,165, 4,170, 81,141,241,108, 3,179,237, 61, 20,147, 77,120, 79, 7, 67, +111, 61,230, 87, 87, 48, 58, 0,209, 34,184,142, 98, 61,237,144,127,221,247, 45, 95,154, 10, 92,231,210,238, 91, 72, 24,173, 48, + 30, 79, 96, 10, 42,160, 82,241,222,119, 22, 33,118,116,217,112,212, 36, 21, 32,138,223,191, 10,161,109, 0, 73,196, 57,169,136, +179,160, 25, 18, 37, 89,230, 35, 32,114,192,137, 75,120, 77, 33,115, 55, 79,217,227,116, 17,211,133, 68,216, 82,114,162, 80, 17, + 96, 10,147,243,167,105,111, 46,214,132,110, 33, 43,220, 83, 39,159, 58,151,164,189,161,113, 50, 51,221, 65, 23,174,231, 16,167, +116,232,167, 49,104, 42, 62,192, 59,229,117,156,107,222,107,243,254, 58, 5,192, 40, 73,107,174,161,120,145, 25,218,147,128, 33, +233,239,167, 2, 95,102, 1, 47, 21, 65, 1,209, 49,131,222,135,124,224,167,253,123,162,177, 9,222,207, 43,169,178,165, 78,222, +137,134, 93,179, 59,201,245, 52, 74,197,251, 87,228,204,134, 84, 96,173,255,254,185, 48,224, 96, 29,191,246,231, 56,134,179,200, +245,177,189, 34, 7, 74,102,185, 67,228,144,149,148,151,145,196,126,169,211, 38,191,250, 58, 45,110,208, 3,144,211, 64,229,127, + 63,196,200, 59,244,192, 19,193,181, 53, 78, 90,203, 96, 16,159,165,247, 41, 21,103, 52,253,145, 16,156,216, 23, 67,128, 49, 18, + 93,155, 44,106, 4, 57, 2,167, 0, 58,206,160,160, 14, 92,112,222, 68, 63,100, 16, 68, 90, 75, 39, 55, 3, 61, 71, 22, 76,105, +134,214, 20,116, 37, 4,177, 77,164, 90,123,158, 82,194, 28, 63, 23,180,170,226,159,129,113,188, 73, 59, 33,132,192,218, 12, 39, +143,233, 9, 36, 35, 6, 77, 10, 63,179, 50,125,181,136,119, 28, 90,233,131, 9, 16,208,193,118, 8,122, 68,106,116, 45, 80, 86, + 21, 7,176, 36,218, 16,243,125,215,176,164,125,219,210,158,164,174, 81,212, 99,184,222,114,101,162,160,184, 75, 78,158, 77,107, +125, 6, 53,152, 66,163,235,232, 0,191,163,226, 19,131,221,197,249,196, 55, 15, 40, 42,195,161, 6,244,210, 22,212,148,163,172, +139, 33,114,149, 85,152,214,210,151,106, 10,197,122, 0, 30,171,173, 81,124,214,125,243,182,231, 23, 78, 9,230,108, 75, 74,110, +227,206, 62,219, 30,108,132,228, 84, 60, 2,120,208,165,158, 14,147, 36, 30,162,240, 2, 53,216, 13, 25,108,161,180, 68,215,217, + 28,235, 10, 68,148,101,193,255,254,144,122, 22,125,135, 23, 63, 60,199,253,199, 15,176,185,179,139,221,131, 61,188,121,254, 18, +103, 31, 46,201, 67,201, 5, 22,237,228,136,210, 37, 49,236,133,210,170,192, 57, 71, 93, 22, 67, 32,202,210,240,197, 74,135,200, +252,118, 9,173, 53,138,162,128, 98,184, 78,179, 92,225,226,236, 10,159,125,245, 17, 98,180,184, 60,191,166,201, 77, 4, 70,147, + 26, 49, 16,152,230,248,225, 61,124,120,251,142, 4, 35,252, 28, 0,164, 86,175, 70, 21, 81,250,170, 10,171,149,135,102, 94, 62, +237, 5,233,103,187,189,186,197,116,115,132,243,211, 11, 76, 54,122, 6, 60, 68,190,236, 13,170,186,162, 23, 75, 72,130,221,240, + 62, 73, 42,137,122, 84,175, 81, 6, 13,148, 41, 49,217,220, 66,183, 92, 97,107,111, 27, 27, 91, 99, 72,165, 81,141, 71,232,154, + 37,180,209,152,110,111, 97,126,115,139, 85, 99, 97,172,199,211,175,159, 80, 49, 18, 35,108,215, 98,247,232, 16, 93,211,226,197, +247, 63,227,224,209, 83,188,255,229, 53,124,191,194,108,115, 3, 27, 59,219, 40, 10,141,197,124,137,173,221, 45,244,203, 91,188, +127,253, 6,193, 89,148, 69, 68, 49,154,160,109,110, 32,162,195,163, 47,255, 18, 71,143,159, 64, 9,143,235, 15,111,113,242,242, + 25,110, 46, 47, 88, 33,173,242, 4, 71, 10, 96,247,222, 35,236, 61,120,130,211, 95,158,225,226,228,121,238, 64,133,210, 64,244, + 24, 77, 54,176,181,183,143,241,108, 3,194,140,208,117,148,166,119,123,117, 13,111,123,128,139,102,239,122,138,202,116,148,249, + 76, 99,114,166,162, 41,149,189,237, 29,115, 20,170,170,194,120, 58, 33,101,112, 89, 80,168, 8,135,125,208,191, 67, 66, 38,173, + 37,234,209, 56,219,198, 98,136,104,181, 70, 89, 87, 20, 35,220,247,104,150,171,220,109, 11, 80, 39, 36,214,210, 16,147, 55, 89, +240, 37,161, 85, 68,231, 59,166, 0, 42, 22, 88,233, 97,116,155,178, 34,148,202,151, 70,242,142, 75, 41,137,180,151,186,234, 48, +172, 9, 37,147,180,172,181,119,118,219,142, 69,122, 82, 12, 30,241,144, 89,217,156,123,158, 58, 73, 46,166,210,229,146, 84,224, +169,235, 78,228,176, 68,143,139,172, 86, 55,133,200, 5,118,178, 27,230,128, 24,206, 10, 23, 98, 16,111,209,207,200, 33, 43, 96, +198,120, 34,120,250,161, 73, 32,161,161,204,135,182,103, 91, 97,242, 55, 99, 13, 43, 42, 88, 40,152, 16,161,169, 43, 78,233,229, + 69, 81,146,208,145,139, 69,250,188, 67,238, 10, 35,168, 35, 77,186, 29,154, 72,168, 60, 53, 32,146,155,134, 20, 42, 91, 74, 83, + 65, 36,181,102, 49,239,186, 16, 50,102,198, 64,228, 21, 7, 77, 53, 56,145, 51,130, 59,222, 8,159, 18,237,210, 90,211,179, 53, +205, 72, 38,210,201,156,180,151,154, 46,210, 68,173, 41,200, 64,201,148,105,101, 44, 57, 42, 91,128, 38, 72,116, 78,135, 12, 41, + 74, 65, 40, 73,128,172, 53, 53,144, 4,137,241, 67,247,238, 98,158,170,133, 32,200,194, 6, 32,166,252,116,165,120,194,164,115, + 48, 79, 90,137, 8,230, 40, 24,109,184, 96,147,153,151, 32,132,164,102,215, 57,130,104,113,163, 75,147, 15, 46, 80, 84,202, 13, + 96, 83,104, 18, 21,134,225, 25, 75, 54,236, 52, 13,137,172, 19,201,137,114, 49, 88,216,213, 45, 34, 20,140, 25, 81, 69, 95, 20, + 80,146, 67, 53,248,133,115,214, 67,245,150, 71,117,158, 60,162,144,168,199, 53,132, 54,176,140, 50, 21, 66,192, 84, 21, 98, 8, +140, 55, 77,123,236,228, 79, 47, 16,133, 92,171,236,144, 97, 41, 97, 45,234, 81, 39, 44, 37,127,121, 85, 85,228, 2,195,246, 14, + 69,161,179, 42,147, 46,104,129, 32, 4,250,206,195,176,181,129,212,143, 33,171,225,211,184, 69, 58,228,241,123, 42, 0,136,206, +196,217,202,158, 70, 77, 62,210,206, 94, 96, 77,100, 22,134,240,137,190,239, 81,148,134, 11, 10,126,248,210, 62,159,247,192, 36, +158, 32,134,121, 93,151,192,136,216,236, 5,199, 1,198,181,211, 49,120,139, 55,207, 95,226,240,254, 49,198,211, 26, 71,143, 30, +225,232,225, 49,126,252,230, 39,172,150, 43, 8, 65, 73,119, 85, 61,226, 64, 14,218,240, 36, 15,254,250,202,132, 20,242, 50,123, +124, 83,145, 17, 99, 68,219,118, 40, 37,189,240,198, 24, 96, 84,227,230,242, 28,109,251, 0,219, 59, 99,104, 45, 49,219,152,194, + 24,205,238, 0,131,102,185,196,252,102,137,201,108,130,235, 11, 66,198, 6, 31,208,119, 29,218, 85,131,217,108,132,190,187,225, + 0,155, 0,111, 36,250,222, 35,248, 62,119, 7,229,168, 67, 8, 99, 24, 35,176,156, 47,233,165, 98,204,238,120, 50,202,130,168, +178, 42, 56,118,181, 36, 48,145,184,203, 89, 78, 99,189,241,116,140,219,243, 83, 28,108,207, 48,219, 24,243,129, 76,127,166, 41, + 75,108,238,110,227, 15,127,247, 47,168,234, 9,142,238,109, 67,168, 2,163,105,141,110,213,192, 69,141,217, 70,141,111,255,240, + 2,202,148,184,185, 90,160, 89,222,194,200, 30,123,247,191,196,222,209, 46, 78,158,255, 12, 85,142, 32, 5,240,250,197, 43,180, +171, 57, 36, 58,152, 98, 3, 54, 40,192,222,226,225,231,127,142,135,159,127, 5, 41,129, 15, 47,126,196,243,111,254,136,190,107, +160,180,204, 2,168, 84,183,238, 28, 61,192,225,227,207,240,238,217,143,184,124,255,156,125,179, 2,193, 91, 40, 93, 96,247,232, + 16, 59, 7, 71, 48,229, 24, 62, 10,172, 22, 45,250,174,199,106,185,132, 82, 32,138, 99,136,236, 63,119,104,150, 13,250,182,201, +188,117,197,137,129,145, 57,221,222,121,148, 85,141,241,100,138,162,164,142,205, 20, 5,132,210,208, 50,165,102,121, 78,131,147, + 57, 98,183, 40, 74,164,249,158,237,123, 20, 53,241,227, 37,119, 93,180, 51,173,168,176,235, 58, 4,132, 12,216,240, 44,178,202, +110,242,224, 0, 57,128,132, 72,212, 86,242, 84,203,100, 37,177, 76,118, 37,214,243,120,111, 51,104,133,138, 34,151, 69,174,132, + 11,101,193, 85, 82,219,243,127, 58, 22,133,166, 66, 42,161, 55, 37,119,150,206, 58,154, 84, 33,194, 40,205,246, 35,149, 17,163, + 3,220, 37,230,105,147,228, 98, 36, 9,210,210,207,147,253,218,220, 21, 39,143,188,231,130,196,187,200,147, 50, 57,236,189,121, +196,238,108,207,251,122,172, 81,196,100,118, 28,100,142,100, 22,193,145,158, 8,121,143, 79, 19,147, 64,140,235,220,188,100, 91, +154, 80, 57,202, 52,135, 44, 5,127,135,224, 41, 88, 48,155,108,130, 41,143, 62, 51,234,249,220, 3, 8,240,229,157,131, 42, 10, +206, 11,240,204,130, 23, 57, 30, 58, 1,106,210,100, 84,240, 51, 9, 68, 18, 87,106, 18,129, 57,219,147,146, 94, 15,222,242,180, +230, 76, 80, 49,154, 40,234, 76, 0, 77, 50,240, 0, 1, 37,210, 69, 42,115,103, 79, 80,150,192,200,223,192,223, 15,187, 14,192, +232, 86,163, 56,209, 82, 32,114,183,206, 28, 58,166,187, 33,175,114,144, 47, 79,228, 61, 57, 57,120,169, 24,213, 70, 17,235,128, +145,226,146, 3,111,164, 20,240, 98, 88,243,172, 23,124,105,125, 18, 66, 64, 76,147, 19, 49, 76,135, 36,107,169,148, 20,185,163, +207,171,101,201,174,130,228,248, 72,228,188,204,243, 32, 65,162, 64,128,250, 95,255,221,151,255, 25, 28,190,210, 55, 13, 43,142, + 53,116, 89, 82, 44,106,170, 30,217, 79,158, 42,188,100, 89, 81,166,100, 21, 40, 43,194,189,207, 21, 88,206, 10, 14, 41,144,132, +189,157, 28,188,146,246, 75,235,135,117, 82,132, 70, 38,167,165, 17,156, 41, 56, 13, 72,145,160,206, 51, 22, 54,253,114,130, 61, +179,148, 10,231,225, 92,128, 41, 82,178,208, 16,249,152, 24,247,195, 37,145,170,229,228, 73,101,133,163, 98,224,190, 24, 8, 64, +233, 75, 75,179, 18,219, 19,253,136,112,165,180, 31,206, 94, 85, 12,222,115, 41, 73,157,174,148, 68, 89, 21, 48, 70,231,204,245, + 52,190,211, 70, 51,201, 14, 88,220,222,210,193, 89,104, 92,158,221,226,241,167,143,161,181,196,245,229, 13,164,162,208, 19, 64, +101,253, 64, 96, 47,187, 82, 18,117, 85, 65, 27,153,247,103,121, 55, 21,239,230, 74,175,150, 43, 20, 69,145, 71,228, 52, 14,140, + 56,184,119, 8,103, 59, 2,210, 88,246, 91, 50, 45, 46,196,136,253,227, 3,172, 22, 11,234, 12,217,223, 42,149,196,246,222, 54, +110,175,111, 41,206,117,105, 81,143, 42,220, 92, 93,195,246,125, 46,172,250,214,162,158, 76, 33, 4,133, 51, 20,165, 65, 8, 2, +166, 80,144, 74, 96,186, 57,193,219,151,239, 0, 86,205, 86,117, 5, 33, 5,166,155, 83,156,190, 61,201,105,118, 49, 0, 69, 85, + 97,182, 69,244,186,135, 31,223, 67, 89, 42, 44, 23, 45,177,167,109,139,122,182,129,247,175, 79,176, 92, 58,236, 29,238, 98,247, +112, 15,136,132,225,237, 86, 11, 22,209, 88,188,251,229, 20,214, 70, 92,188, 63, 65,236,231, 48, 69,137,207,255,226,191, 67,183, +184,194,124,194, 95,203,230, 0, 0, 32, 0, 73, 68, 65, 84,222, 96,107,119, 19, 31, 94,191,193,201,203,159, 33,209, 67,138,128, +241,230, 61,116,109,139, 39, 95,125,134, 71, 95,124,141,118,126,137, 24,128,127,253,155,255, 3,182,111,120, 5, 28,134,112, 36, + 68,236, 30, 61,192,209, 39, 95,226,195,171,159,113,245,254,101,142,186, 20, 66, 96, 60,219,194,246,193, 17,118, 14,143, 81,142, +166, 8, 80,152,223,174,176,156, 47,176, 90, 46, 96,180, 34,194, 89,116,232,218, 14,182,235,209,174, 86,104,155, 57, 11,164, 20, + 36,219,212, 34, 20, 76, 81, 33, 70, 5, 93, 84,152,206, 54, 81, 86, 53,234, 81,141,122, 50, 70, 61,158,160, 30,141,249, 80, 20, +124,168, 59, 62,112, 76, 46,226, 35,119, 95,158,157, 35,214,122,230, 89,176,237, 50,210, 62,214,100, 52,180,202,157,164, 88,139, + 53, 77,239,209, 96,183,165,191, 71,240,168, 81,105,197, 29,154,225,241,169,228, 81, 61,231, 87,139,200, 90, 18,145, 93, 48,138, +243,222, 83, 72, 82, 12, 3,239,253,110, 6,186,200,227, 99, 26,137, 91, 14,141, 42, 88,137,205,148, 75,165,249, 60, 81, 67,164, + 42, 68,126,231, 5, 79, 17,232, 48, 47,242,152,149, 20,232,242,142,133, 54,169,169,251,174, 91,203,114, 7, 39, 46,130, 5, 83, +142,189,244,110,141, 64,150, 82, 35, 7, 6,248,250,229, 10,129,156, 24,150, 89,239,108, 43,148, 60,113, 24,138, 7,193,211,184, + 50,239, 99, 53, 95,174,169,208, 36,100, 52,137,200, 82,103, 44, 48, 92, 16,105, 82, 33, 57,121,141,206, 42, 82,101, 27,147,184, + 2,169,115,231, 17, 57,239,254, 11,190,248,179,115, 33,112, 51, 23,227, 26, 40,140,249, 19, 82,102, 61, 69, 74,181, 11, 65,100, +162,158,100, 34,159, 82,114, 8,215,210,138,187, 88,106, 12, 13,223, 83,136,137,127, 16,185,123, 13,204, 8,240,249,179,142, 49, + 18,139,221,219,181,104,108,159,195, 81,144, 45,140,126, 45, 91,157,125,240,218,100, 87, 70,202,117, 47,202,146,159,155, 20,216, + 66,206,138, 36,142, 86, 74,174, 9,170,195,157, 81,121,130, 27, 73, 12,157,248,192,162,137, 67,252, 56, 63, 11,201,117, 33,114, +145, 44,114, 49, 60, 20,158, 17,154,210,141, 60,208, 19, 50,210,245, 45, 91,176, 8, 32, 33,181, 64, 33, 21,154, 85,131,190,235, + 81,141, 8,114, 32,148, 70,187, 90,161, 26,143, 33,148, 65,223,175,178,197, 65,178, 42,144,246,222, 68, 91,211,236,163, 83,114, +216, 17, 75,169,209, 91,199,185,182,100,117,171,106,195,227, 11,149, 71,230, 73, 80,145, 68,114,206,133,129,252,163, 9,128,163, +139, 33, 70, 50,141,250,155, 85,143,122, 84,160,239, 28,137,171,164,224, 67,102, 77, 45,201, 16, 4,103, 73, 33, 25,121, 76,238, + 24,134,147,130, 9,232, 75, 85,252,162,210,180, 96, 52,174, 97,173,227,220,239,132, 60,180,100,203, 83, 30,179,205,146, 53, 2, +142, 87, 4, 14,136,180,179, 79, 41, 70, 41,125,174,168,104,124, 45,165, 70,215,182,184, 56,253,128,190,235,112,255,241, 61,188, +127,123,130,233,230, 22,254,250,127, 60,194,139, 31, 95, 98,181,234,179,146, 85, 74,137,209, 88,175, 9,129, 18,167,217,103, 61, + 68,218,131, 59, 22, 18,165,223,101,181, 92, 98, 52,153, 64, 10,133,217,230, 12,182, 91,225,246,102,137,251, 31, 63,194,251,183, +103,164,214,103, 65,206,252,102,142, 8,133,103,223,191,196,209,253, 93,156,188,254, 0,128,166, 49, 55,151,183,240, 46,162,107, + 58, 98,224,247, 14, 93,219,163,109, 90,226, 23,104, 13,229, 28,138,138,170, 76, 83,148, 88,221, 46, 81, 86, 69, 22,242,213,149, +201,137,112, 33,112,140,175, 37,184, 72, 10,126,145, 2,112,150, 84,212,213,120, 12,215,117,216,222,223,195,116, 99,140,102, 62, +207, 69,100,111, 61, 74, 3,188,250,249, 23, 28, 60,252, 8, 7, 15,246, 97, 20, 0, 89, 34,184, 14, 87,167,231,120,250,171, 79, +241,203,203,115,248, 40,112,254,225, 61,130,107, 80,213, 21, 54, 15,238,163,172, 52, 94,126,247, 14,187,199, 71,232,155, 6,239, + 94, 60,131, 8, 43,132,232, 81, 77,183, 17,100,133,207,190,126,132,199, 95,126,142,179,151, 63, 96,180,185,143,239,255,241,111, +232,160, 64, 68, 12, 22,144,164, 61, 9, 66, 96,239,248, 35, 28,126,242, 5,222, 61,251, 1, 87, 31, 94,178, 40,199, 64, 42,141, +122,186,137,205,221,125,108,237,237, 67,232,146, 98, 94,111, 22,104, 22,115, 74,129, 27, 23,176, 93, 15,192, 99,185, 88,161,235, +122,116,109, 11, 4, 75,116, 49,190,212,133, 80,144, 90,195,176, 5,107, 60,157, 96, 52, 38,117,187, 41, 52,138,170,206,133,179, +179, 14,190,245,232,154,134,195, 51, 40,230,210,135, 0, 21,129,224, 60,164, 74, 35,216,196, 59,160,116, 65, 41, 53, 7,104, 36, + 81, 83,207,157,149,187, 51,125, 3,191,187,129, 5, 70, 50, 45,227,133, 96, 7,128,201,135,165,224, 93,177, 74,172,137, 4, 86, +201, 10,113,234,248, 53,239,221, 35, 43,129, 93,186,212,152, 93,225,172,205,163,244, 28,169,137, 33, 79,130,254, 46,250,220, 41, + 79, 60,230,203,147,236,175,252,115,112, 1,145, 14, 79,191,182,191, 78,118,178,192,150, 83,250, 93, 68, 38, 79, 38,157, 11,141, +230, 61, 95,232,150,167, 1,100, 17, 78,133, 20,145,232,104,146,225,108,128, 80,106, 45,130,150, 16,184,105,186,182, 30,128, 66, +169,114,138, 87, 7,195,170,115,216,151,199,236,153,166,207,108, 8, 40, 9,193,231, 9, 0, 31, 33,217,169,148,206,185,200, 23, + 53, 5,194, 68, 8,107,185,216,163,207,167,183, 14, 90, 83, 87, 78, 19,211,130,223, 83,133,200, 12,117,145, 2,119,148,202,238, +131,244, 25,248, 56,140,142,133, 76,169,156, 67, 30,121, 18, 61, 75,254,190,211, 94, 93,240, 24,156,118,253,224,240,146, 36,130, + 19,185,168, 74,221,174,227, 49,186,227, 17,188,179, 14, 8, 52,250,246,108,109, 91, 23, 94,130,239, 20,210,123, 36,203, 31,113, +225, 37, 11, 15, 83, 22, 72,166, 91, 98,232,202,105,161, 31, 50,240,102, 8,167, 73, 43, 16,153,113,221,137,217,160,185, 24, 77, + 22,211, 12,167, 17, 18, 2, 41,180, 70,241,247,193,120,228, 44,236, 84, 3,127, 37,144,192, 85, 72, 9,221,183, 45, 87,207, 58, +251, 56,219,229, 2,202, 84,144,154,201, 73, 34,162, 30,141,177, 92, 44,209,182, 61, 76, 81,102, 32,189,237,122,168,162, 32,132, +157,214,180, 71,144,146, 51,184, 35,103,236,154,252,210,100,145, 6,239, 65,162,143,232, 92,207,228, 56, 78,162,194,176,107, 87, +185,154, 86,140, 6,148, 52,118,207,153,232,220,189,229,221,124, 28,198,236,138, 70,192, 34,221,204, 16, 89,125, 14, 33, 32,194, +176, 11,215, 70,101,159,104, 26,249, 8,164, 75, 6,168, 71, 69, 70, 5,146,237,138, 42,250,201,116,196, 42, 77,112,124,170, 66, + 81,146,205, 66,105,218,151, 59, 99,209,119,150, 31, 4,112,226, 21,141,235, 72,109, 73, 66, 19, 24,112, 87, 82, 96,164, 42, 64, + 56,188,125,241, 26,199, 31,221,199,252,234, 18,167,239, 78,241,248,179, 39,176,125,139,147, 95,222,179,207,152,108,107, 82,130, + 68,136, 0,218,182, 69,215,244, 48,165, 97,124,162,231, 49,182, 68,219,119, 84,109,106, 5,215, 91, 72, 17, 80, 20, 37,180,210, +232,125,192,201,235,183,120,244,228, 99, 28,222, 63,194,247,127,248, 14, 93,215,193, 57,135,178,170, 81, 84, 21,218, 85,139,186, + 46,177,119,184,139,243, 15,231, 28,105,216,145, 85, 69, 43,132,166,163,189, 86,162,251, 97,240,128, 42, 37,208,183, 45,198,179, + 17,172,189,165,162, 81, 18, 94,247,240,222, 46,141,215, 82,117,206, 99,247,164, 75,144, 9, 32,196, 10,211,241,116, 12, 37, 34, +202, 81, 77, 80,164,166,207,150,149,241,108,134,111,127,247,175, 40,199, 19, 28,220,219, 71, 89, 26,132,224, 49, 42, 13,158,127, +251, 51,102, 91, 91,184,185,188, 65,215, 5, 92,157,158, 33,218, 6,211, 73,133,241,108,138,143,127,253, 27,188,251,249, 39,232, +106,132,186, 54,248,238,159,126, 7,219,220,144,154, 95, 2,155, 7, 15,177,125,252, 16,143, 62,123,132, 87,255,250,207,184,190, +186,193,126, 44,112,125,246,150,119,190,169, 83, 32, 14,250,254,253,143,112,239,233, 87,120,243,227,119,184, 62,123, 77,122,129, +241,152,253,254, 51, 76,183,246, 80,140,198,136, 82,225,242,236,134, 46,237,213, 18, 70, 43, 24,163,208, 53, 45,101,160, 91, 75, +144, 25,246, 44,247,158, 16,189, 36,222,145,128, 32, 8,148, 49, 5,166,155,155, 40,170, 17,202,170,164,105, 12, 79,205,156, 15, +112,182,199,252,150,236,141, 49,112,182,128,117,112,118,137,182,105,217,230,166,249,189,167,195,189, 89,181,196,123,119, 30, 82, +218, 12, 30,233,154,150, 69,144,228,118,232,186,150, 15,110,143,232,135,224, 21,193,150,209,144, 48,155,137,194, 38,239, 18,185, +214, 53, 48,169, 59,141,129, 2,103,210,128, 58, 9,145,172,237, 57, 43,124, 8, 29, 25,114,198, 19,201,114,152, 14,164,238,151, +226, 49,145,113,177, 90,203,204, 33, 23,217,214,199,194,152, 48,228, 78,164, 66, 33, 83,191,132,160,203, 90,136, 53, 27, 22, 93, + 14,129,111, 28,173,117,142, 45,246,193,211, 52, 44, 4,238, 34,211,126,153,127,126,169, 32,133,100, 91, 94,204,157,158,231,247, +150, 56,228,142,181, 10,116, 89,164,213,157,214, 50, 67, 95, 66,182,247,234, 53,117,250,208,236, 36, 94, 65,136,116,142,197, 53, +209,224, 0, 58, 26,160, 71,145, 27, 31,136,245,245, 30, 53, 35, 82, 41,152,178,204, 34,201, 44,116, 76, 29,168, 44,184,120, 41, + 96,123,230,171, 39,112,139,144,252,115, 11, 40, 61,100,207, 19, 95, 68,231, 85, 69,114, 18, 37,160,142, 86, 42,219, 91,147, 67, + 65, 10,192,246,221,192, 38,136, 64,136, 62, 67, 92,148,146,112,125,207,202,114,138, 2, 22, 8, 8, 8, 16,209, 35,101,240,144, + 16, 55, 2, 97,136, 53, 77,147, 78,154,236,232,204,206,144,140, 38,150,236,211, 31,124,236, 84, 96, 66, 8, 8,170,103, 51, 23, + 34, 5, 28,137, 72,192, 33,164,244, 63, 38,205,173, 23, 9,108,136, 24,248, 10,158,210,243, 82,227,150,206,193,152, 50,217,215, + 20,244, 58,237, 88,104,180,206,177,150, 70,163,111, 87, 16,202,162,168, 70, 80,198, 32,122,159, 61,173, 96,117, 39, 98, 68,223, +181,208,130, 4, 95,203,155, 57,191, 4, 60, 86,103,128, 64, 85, 21, 76,102, 98, 94, 57, 63, 48,105, 36, 81,148, 6,206, 7, 14, + 48,136, 57, 82, 53, 56, 82,249, 86,163,138,247,198, 68, 15,138, 38,100, 94,111, 8,128, 41, 20,251,216, 69,198,149, 6, 71,204, +121,219,211,151,102, 74, 3,219, 57, 72, 53,228,175,139,181, 49,122,224, 15, 43,219, 44,248,131, 83, 90,163, 46, 52,139,226,124, + 78, 28, 10,222,163, 40, 77,174, 56,201,222, 16, 1,209,161,111, 3,202, 42,117, 4, 36,140,211, 76, 41, 10, 33, 18, 1, 46, 6, + 86,125,151, 8, 33,162, 30,215,148,252, 22, 3, 95,208, 14,174,179,232,186, 30, 63,125,243, 61,238, 63,254, 8,251, 71, 19,252, +242,236, 21,182,118,119,241,213,159,127,129,179,147, 15,152,223,204, 89, 28,131,108,201,208, 90, 33, 50,246, 85, 42,133, 98,205, + 6,179,177, 53,205,107, 4,107, 29,130,243,104,154, 6,189, 53, 48, 90,226,234,236, 18, 49, 42, 60,250,228, 30, 46,207, 46,240, +234,217, 47,100, 99,100,139,152, 16, 2,111,127,121,141, 7,143, 63, 66, 89, 85, 88, 46, 87,144, 34, 98,126,179, 32,155, 88,239, + 16,110, 27, 24,163,184,115, 10, 57, 15,216,249, 6,166, 90, 96,107,127, 27, 74,179,200,101, 78,147,139,122, 92,163, 89,172, 16, +188,135,239, 57, 67,192, 59, 8,153, 70,155, 67,117,106,202, 10,245,168,100, 15, 45, 49,248,151,139, 14, 82, 6,212,147, 49, 46, + 46,174,112,121,126,129, 79,126,253, 91,140,167, 35,148,165, 70,211, 10, 92,159,159,227,236,253, 5,158,124,249, 20,207,126,250, +128,147,215, 39,240,125,131,157,221, 41,170,186,194,222,131, 71, 8,206,195, 71, 96,119,127, 11,207,190,249, 22, 55,103, 39, 52, +222,147, 2, 7, 15,159, 96,118,248, 9, 30,125,124,132,239,254,246,255,198,135, 55,175,240,213,255,240, 63,227,167,223,253, 87, +128,213,253, 66,106,182,177, 4, 28, 61,120,138,227,167, 95,225,151,239,254, 21, 23,239, 95,163,172, 42, 76, 54, 54, 80,141, 39, +168, 70, 99,140, 55,182,160,203, 10,203, 69,139,249,205, 21,150,243, 37, 34, 4,170, 82, 67, 10,160, 89,182,104,150,215,132,187, +100,206, 67,228,164, 49,178, 94, 37, 40,136, 66, 81,141, 48,154,204,136,221, 94, 85,128,160,195,198, 5, 1,219, 81, 7,219, 44, + 87,104, 87, 43,172,150, 43,120,103, 9,253,234,108, 22, 60,201, 68,225,140, 21,130, 50,168,106,147, 35, 39,243,247,152,157, 49, +242, 14, 12, 37,117, 80,150, 19,174,148, 78,217,210,145,113,155, 2,202, 80, 1, 26,185,147, 81, 82,194, 7,199, 99, 69, 12,105, +111,121, 43, 38,216, 33,225, 73, 41,157,188, 80, 89,157,158,210, 30, 61, 81,227,228, 48,130, 79,107, 45,234,142, 7,171, 27,161, +230, 19, 86, 58,193,172,100, 78,151, 20, 89,152,148, 70,181, 46,179,199,227, 90, 18, 88, 12, 1, 85, 89,101, 75, 85,234,150, 98, +230,122,243,197,203,204,138,224, 61,156,103, 71, 76, 74,128, 75,145,176,130,166, 24,222,246,156,120, 38, 73,139, 16,147,159,222, +103,189, 2, 69,157,174,169,164,249,207, 17,156, 17, 63, 16,222, 6,178,102, 86,133,179,245,113,157, 70,135,100,151, 98,215,140, +128,128, 34,248,251, 64,247, 12,180,226,136,146,236,109, 74,129,214,155, 82, 83, 35, 35, 40, 63, 36, 5,244, 36, 39,130,148,180, +218, 75, 94,255,212,171, 41,182,130,229, 44,119,182,188,185, 52,121, 13,195,218, 65, 51,199,222, 20, 58, 95,236,137,221, 47,147, +157,143,197,213, 82, 1,222,122, 40, 25, 33,160,178,179, 9, 89, 36,137,129,252, 7,186, 36,109,144,128,167,188, 13,199, 12,254, +168, 98, 94,105,106,105,184, 72, 50,195,103,198,235,134,100,234, 79, 76,248,180,246,137, 49, 34, 56,186,192,101, 66,231,230, 33, + 66,204,107,170,196,247,207,142,139,212,245, 43,126,206,179,176, 47, 50,228, 39,174,129,211, 84,158, 10,136, 20,222,195, 69,136, + 38,118,176,228, 47, 27, 25,223,233,125,132,140,228,137,173,148,134,245,128, 46, 43, 4,230, 69,135, 72,213, 90,187,106, 49, 50, + 21,164, 50,136,130,246, 42,214, 54,240, 94,210,195, 1,129,182, 35, 40,127, 4,189,120,101, 69,118, 26,107, 29, 87,221,142,120, +190,102, 80,167,199, 96,201,211,206,241,126, 16,148, 81, 29, 50,122,146,141,255, 38,137, 37, 56, 96, 65, 9, 98,185,131, 64, 12, + 89,101, 24,104, 55, 71,127,118, 24, 34, 93,185,211, 15,150,232,109, 62,120, 72,198, 73,166,113,189,229,209, 61,217,226,168, 26, +214, 70,177,199,154,246, 43, 33,103, 81,243,232, 37, 14,135,130,247, 97,240,230, 27,137,209,120, 4, 83,106, 74, 35,242, 36,192, +243, 62,162, 44,201, 86,209,181,224,157, 33, 41,228, 99,140, 56,125,119,130,221,195, 35, 60,252,248, 1, 46,207, 46,241,211,191, +189,192,241,131, 67, 76, 55,166,120,251,234, 29,143,136, 56,147, 93, 72,196,160, 88,173,108,185,232, 32, 37, 60, 21, 42,134,113, +145, 6,171,206,178,117,175,131,209, 52,117,152, 95, 95,226,230,122, 11,159,255,230,115,216,222,226,226,244,156, 69,104, 52,234, +236, 59,139,235,203,107, 28,222, 63, 66,215,117,240,206,162,107, 91,108,223,219,197,205,229,156,127,102,160,107, 91, 56, 71, 32, + 21,197,159,241,252,230, 6,171, 69,203,251, 69,143,190,181,136,158,246,117,109,211, 17,247, 93, 42, 88,171, 96,138,146, 57,229, + 28, 41,107, 72,113,187,119,111,135,139,166, 2, 69,161,178, 7,117,113,187,192,100,115,134,127,251,167, 63, 98,231,224, 0, 59, +251, 59,216,216,172, 96, 93,196,106, 62,199, 79,223,252,136, 79,191,254, 20,167,239, 47,120, 92,212, 97, 54, 51, 24, 79,198, 24, + 77,102,152,108,110,227,197,247, 63, 99,239,112, 15,190, 91,224,252,221, 11,120,215,161, 28, 79,112,239,227, 79,177,125,252, 17, + 84, 89,227,159,254,247,255,130,235,211, 95,112,244,228,207, 48,191,248,128,213,252, 42,131, 73,210,129,126,252,201,231,184,255, +244, 75,252,244,251,127,128,109,111,177,185,179,131,201,198, 38, 76, 89,195, 84, 35,140,102, 27, 80, 74,225,246,250, 6,151,103, + 87, 88,173,104,140,173, 24, 90,209,183, 43,244,171, 57,156,235,216,231, 92,242, 20, 67, 32, 66,113, 26, 33,185, 4, 38,179, 45, + 76, 54, 54,161,139,146, 46,127,126,159,173,165,245,200,114,190,192,114,126,141,102,181,204,182,169,236,115,102,155,153, 96, 86, +117, 58,152,148, 22, 28, 56,194, 34,199,170, 98,113, 23, 80, 20, 5,218,182, 67,219,246,212,149,135,144,195, 72,214,119,190,105, + 34, 38,121, 84,159,160,214, 42,163, 67,233,208,166, 49, 61,237,200,169, 27,241,185,251, 13,140, 75, 13, 49, 64, 75, 13, 31, 1, +111, 45,139,201, 34, 36, 6, 10, 27, 97, 85,185,168, 15, 49,239, 74,215,173, 70, 82,146,126, 36, 41,243, 7,210, 92,204,187,115, +235,124,158, 28,120,102,116,211,138,158, 67, 96,188, 35, 82, 27,159, 93,138, 39, 75,217,206,149,226, 96,185,227,115, 12,226, 73, + 16, 25,242,135,179,162, 94, 25,102,202, 71, 22,126,177,127,221,245, 44,208, 26,172, 79,196,100, 71,142,245, 76,227,247,116,193, + 36,145,113, 2,113,101, 38, 0, 51, 51,242, 78,251, 14,198,151, 67,162,214,206,255, 20,178,149,246,235, 73, 67,161,197,160, 51, + 80, 58, 21, 9,116, 14,230,120, 93, 22,186,165, 84,203,212,100,209, 10,128, 26, 65,145, 83,218, 36, 11, 98, 11,132, 53, 37,123, +226,139, 36,178, 95, 82,122, 15, 9,159, 41,152,199,243,231, 32,224, 29,232, 12,207, 32, 32,100, 7,148, 15, 46, 59, 57,232,169, +185,235,160,128, 20,185,200, 35,254, 72,210, 78, 81, 39,158,246,232,164,211, 42, 56,234,155, 51,229,249,254, 32, 61,130, 97,122, +167,128,133,205, 93,116,188,147, 83, 34, 51,163, 63,229,212, 39,126,129,200,239, 77,200,223, 93,210, 55,104,222,205, 75,214,174, + 12,223,157,200,132,217, 4, 71,211,224, 89,189, 79, 35,167,100,247, 98,190,110,116,116,177,235,178,134, 84, 42, 99, 81, 83,202, + 16,124,128, 92,181, 40,170, 34,251, 33, 5,143,166,132, 0, 66, 20, 40,100,193, 20, 39,201,221,125,207,227, 33,133,162,160, 14, + 22,140,220,115,142,170,174,192,187,231, 52,170, 19, 34,162,107,237, 90,136, 2,141,179,156, 5, 76,169,184, 35, 87, 3,232, 70, + 96, 16,197,113,222,185, 41, 12,161, 44,178,234, 62,162, 44, 73,225, 77, 54,154,152, 99, 84,165,162, 23,167,239, 60,202,146, 58, +224,224, 99, 22,232, 8,118, 9, 72,165, 80,214, 37,217,221, 92, 92,143,184,205, 73,112,169, 90, 53,102, 8,156, 17, 66,162,170, + 13,199, 84, 18, 29,111,181,108,208,181,100, 37,211,172, 14, 77,197, 5,132,198,114, 62, 71, 8, 1,251,135,123,184,189,190,196, +201,235,183,152,110,110,224,233,215, 79,113,117,118,129,211,147, 51, 56,107,209, 54,109,126, 64, 35,232, 97, 15,158,211,174, 66, + 98,218,211, 83, 81, 86, 5,116,160,221,104,211,180,168,170, 10,245,184,192,213,233, 41, 54, 54, 31,225,171,191,248, 26,175,126, +122,142, 23, 63,189,162,207,171, 42,208,119, 61,150,243, 57,220,222, 14,238, 63,186,135,247,111, 78, 16,131,199,104, 58,198,104, + 90,163,109,105,186, 50,153, 77,208,247,150, 0, 28,145, 34, 28,131,119,104, 86, 45,102, 91,179,204, 40,183,182, 71, 81,149,131, +103, 55, 6,218, 39,177,224, 37,143,150, 66, 68, 57, 42,113,244,224, 16, 90, 11, 78,132, 51,184, 60,189, 6,221, 41, 18,191,252, +248, 28, 82, 41, 60,253,245, 23, 56,186,191,131,162,212, 88,126, 56,135,235, 59,104,173,112,239,241, 61,188,248,249, 20,243,171, + 83, 40,225,115,116,237,214,209, 49,174,206, 46,161, 53, 80, 21,192,183,127,252,158,197, 70, 83, 60,254,242,215,216, 57, 56,192, +237, 66,224,245,239,255, 47, 44,175,222,194, 84, 19,220,127,250, 41,254,240, 95,255, 75,166,165,165,124,235,251,159,254, 26,199, +159,124,134,103,127,252, 29,162,239, 48,221,220,198,230,222, 30,132, 42, 32,149,193,120, 54,131,247, 1,151,167,167,184,190,188, +197,114,213,211,174, 58, 68,184,126,137,198,245,100,165, 98,225,146,179,150,187, 7, 64,177,184,108, 52, 25,163, 40, 43,148,117, +141,233,230, 6,237,252,140, 65,215,210, 97,237,251, 22,205,106,137,249,213, 53,218,102, 65, 43, 18,107, 9,100,164,147,118,164, + 32,119, 70, 81,102, 33, 87, 58,176,104, 52,108, 32, 4, 51,224, 99, 96,228, 51, 3,108, 0,116,109, 15,107,195, 90,126, 55,238, + 80,207,146,165, 71,107,157,163, 82, 83,113,156,118,211, 96, 56, 13, 97, 94,193,217, 10,158,247,133, 34,143,174,181,210,112, 41, +143, 90, 8, 0, 84,188,166, 76,132,129, 22,135,124,161, 43,222,181, 39,220,170,100,113, 87,140, 84,120, 17,199, 28,252,217,115, +184, 6, 59, 74, 72,137, 61,136,100,135,221, 41, 29,222,105,178,153,199,238,236,225,167,151,219,231,142, 62,217, 95,243, 46, 59, +195,191,215,132,193,220,169, 57,182,195,145, 45,174,207, 5,135,207, 68, 78, 49,172, 27, 89,116,151, 84,249,116, 97,123, 70,243, + 38, 34, 40, 77, 37,227, 26,150,150,252,216, 22, 62,144, 74,156,214, 17, 97,136,125, 69, 18, 11,167,220,111, 90,167,138,236,215, +143, 48,122, 56,199, 2,187,143,180, 1,199, 35,203, 76,175,139,105,125, 38, 21, 32,124,234, 69,121,205,192, 13,136,210, 16, 74, + 66,229,192,159,200,154, 38,159, 97, 55, 80,131,182,130,100, 25,130,109,207, 92,204, 33,228,201,130, 20,128,139,241, 79, 20,236, +130, 84,243, 18,204,125,119,100, 57, 68,224,120,121, 5,231, 44, 23, 28,128,201,110, 18, 3, 33,117,206, 15, 49, 12,181,145,153, +227, 32, 0,153, 64, 64,244, 89,101, 81,157, 49, 25,243, 45, 5,152, 57, 34,243,133,157, 98,105,165,144, 60,221,137,185,128, 34, + 37,189,203,162, 71, 33, 4,156,119,220, 24, 15,197,229,157, 96, 23, 33,115, 76,175,238,219, 30,138, 5, 27, 66, 72, 88, 86,100, +251, 64, 99,179, 16, 41,245,170,132,132, 52, 37,117, 3,145, 66, 76,162,144,240, 44, 62, 8,193,160,172, 10,172, 22, 43, 40,182, +154, 45,110,151,208, 69,193,127,153, 98,254, 47, 77, 2,172,245, 89,221, 71,176,170,128,182,233,121,164, 77,123,231, 84,142, 80, + 87, 73,169, 93, 33, 50,118, 22, 33, 39,251, 8,250, 62,160, 84,100, 47, 32, 21, 28,100, 39, 0,171,105,101,102,110,167, 42, 71, + 41,201,140,101,218,127, 11, 31,179,224, 36,240,200, 40,137, 95, 82,227, 65,236, 97,197,176, 21,170,226,124,136,232,173,131,237, + 44, 89,102,248, 50, 46, 42, 82, 36,107,222,249,167, 21, 31,113,227, 29,218,166,203,135,148,115, 30,101, 89,146, 74, 28, 49,127, +153,137,215, 76,118, 85,202, 74,254,112,242, 1,187,251,187, 40,171, 10, 55,151, 55,255,141,171, 55,253,177,236, 56,211,252,158, +136, 56,235, 93,115,207,202,202,218,201, 98, 21,119,145, 90, 90,234,150,166,183,105, 55,166, 1, 3,246, 7,255, 63,250, 99,108, + 3,254, 98, 24,240, 96, 96,140,167, 61,221,211,238, 77, 82,107, 33,197, 18, 89,100,237, 91,238,121,247,179,196,230, 15,239, 27, +113,110, 89,128, 32,138, 44,102,230,205,123, 79,196,187, 60,207,239,193,119, 15, 22,216,187,186,143,219,119,111,225,187, 63,124, +199,209,175,107,248, 74,222,105, 55,117, 67,254,127,198,241, 66, 8,164, 65,168,199, 43,130, 96,103, 20, 41, 48,185,152,161, 63, + 40,112,237,246, 77, 24,227,113,242,230, 28, 16,136,118,188,211, 55, 71,120,231,222, 29,204, 38,147, 16,167,192,106, 89, 21,199, +157,105,170,232,189, 98, 21,181,247, 30,245,106,133,157,189, 3,194,161, 22, 53,230, 19, 66,199, 86,171,134,220, 13, 25,225, 99, +179, 60,163, 66, 72, 9,244, 6, 61, 8, 41,113,239,227,123, 24,140, 74, 52,181,198,214,246,128, 67,118,128,233,197, 20, 27, 59, +219,248,250,183, 47,241,163, 63,251, 49,118, 14,246,209, 27, 20,168,150, 21,102, 23,151,176,214,225,227, 31,125,140,197,162,133, +209, 6,203,249, 28,112, 30,109, 99,209,223,232,163,174, 13, 94, 61,125,129, 27, 55,182,240,252,225, 67,212,203, 37,198, 59, 87, +112,235,222,187,216,220, 26,225, 98, 42,240,244,193,175,176,186,120, 3, 41, 4,110,127,242, 99, 60,255,195,151,176,166, 37,244, +169,167, 81,219,181,247, 62,194,141,251, 31,224,197, 31,190,128,146, 30,155, 87,174, 96,184,181, 67,130, 35,149, 32, 47,251, 88, +205,103,152, 93, 94, 98, 49,175,209,180,244, 96,215,213, 10,158, 61,182, 73,194, 30,111,169, 32,189,224, 3,220, 96, 48,218, 68, + 86,246,184, 91, 72, 81, 14,135,108,247, 73, 80,215, 6,122, 86,147, 38,102, 85,161,105, 42,232,166, 37,247, 1,191,215,144,148, +186, 21, 16,147,225,179,110, 57,188,133, 14, 82,178,203, 4, 68,175, 88,251,243, 73, 34,162,115,132,124,203, 10,109, 75,187, 72, + 99,153,228,103, 45, 43,226, 93,228,147, 59,238, 98,211, 44,141,100, 46,197,151, 8,133,172,116,162, 84, 90,211,216,152,205, 16, +166, 0, 70,107,206,108,183, 81, 72, 22, 26,136,208,157, 82,175, 99,163, 15, 57,100,117, 43, 37, 98, 83, 65,142,148,148,145,181, +235,224, 24, 48,197,142,178, 43,140,214,188,183,117, 29,251,157, 99,179, 20, 59, 48, 56,216,141,245, 66, 30, 82, 40, 88, 71,226, + 61,218, 73,187,136,245, 21, 44,146, 10, 30,115, 26,195,202,152, 80, 23, 70,196,206, 27, 34, 5, 58, 27,187,229,128,207, 13, 22, + 68,203, 66,198, 64,224, 51,166, 75,200, 19,252,251,114,156,116, 22, 34,181,105,103,237,215, 20,223,230,173, 11, 33, 20, 39, 65, +189,110, 12,137,225, 18,149,197,179, 66,172,161,178, 45,175, 75,211,148,166,127,225, 53, 72, 25,236,148,107,223,151, 11,242, 96, +219, 10, 86,227, 16, 98,101, 45,193,197,242, 44, 69,211,208, 58,133, 40,146, 34,158, 87, 81,180,236,124, 92, 63,133, 4, 56,203, + 2,100,185, 46,246, 11,224, 35,103, 67, 8, 48,140, 15, 90, 41, 42,220, 32, 82,178, 52,243, 94, 61, 20,114,130,155,168,144,154, + 25, 45,199,236,227,239,252,249,136,211, 94, 33, 68,116,180,144, 45,218,162,213,154,137,143,158, 5,180, 33, 38,152,184, 29, 97, + 58, 22, 86, 73, 34, 94,206,157,216, 83,112, 62, 65,152,158,120,248,183,248, 46, 62, 40, 30, 41, 1,135, 58,117, 47, 4,234,170, +137,161, 42,212, 85, 10, 56,163,153, 21, 77,213,210,114,177, 64,217, 7, 20,199, 14,166, 60, 42,150, 82,146,111,214,203, 40,106, +112,108,129, 18, 74,195, 57,131,182,182, 4,253,176, 52,174,234,245, 83, 88,215,249, 18, 85,154, 64, 88,199,214, 42, 17,109, 36, + 36, 54,145,104,219,182,195, 49, 66, 66, 42, 11,107, 13,242, 44,137,227,247, 52, 75, 72,172, 39,120,223,147, 42,180,173,225, 93, + 11,121, 70,137,167, 30, 0, 12,140,224,243, 68, 80,202,178,132,118,239, 89, 18,225, 57,142, 83,215,232,162,225,104, 89, 86,144, +135,144,145, 0,186, 80, 74,194, 41, 9, 41,211, 88,221, 11, 33,145, 23, 52, 82,146, 0,145,234,188,135,110, 45,172, 49,140,143, + 37,173, 2, 5,148, 36,232,245, 89,248,197,190,116,170,218,200, 3,106, 12, 21, 83,240, 22,175,158,190,196,254,225, 30,182,247, +182,113,113,122,134,151,143,159, 66,165, 5,110,223,187,139,179, 55,175,241,236,241,139, 72, 33, 50,198,162,169, 91,222,163, 91, +180, 53, 21, 88, 66, 10,152,150, 98, 55,203, 94, 17, 63, 68, 69, 47, 71,154, 37,128,112,200,138, 18,211,139, 11,220,124,247, 22, + 84,146, 98, 54, 89, 0,222, 98, 49,155,195, 57,224,252,108,130,195,155,135,120,241,248, 57, 22,243, 21,122,131, 18,243,233, 34, + 34,117,219,150, 82,240,106, 75,239, 69, 94,100,112,166,133,243, 18,195,113,129,201,197,156,191, 23,231, 44,199, 0, 4,122,239, +133, 32,133,109, 94,100,184,118,235, 26,198,219,155,104,235, 26,101,127,128,162,204, 96,116,139,186,106,201,133, 33, 5,174,221, +186,134,209,214, 22,242, 50, 35, 23,193,241, 41,140,241,104,170, 10,131,241,109,188,124,113,142, 55,207, 95, 64, 55, 21,117, 51, + 82, 97,188,179,141,199,223, 60,197,230, 70,134,201,201, 27,204, 47,207,177,127,253, 58,110,221,123, 15,194, 53,104,108,129,111, + 31,124,137,122,250, 18, 66, 8,244,198,251, 40,122,125,124,247,226,219,184, 6, 18, 82,225,218,123,159,224,238,167,159,226,241, +151,191, 6, 0, 92,185,113, 27,229, 96,128,106,213,192, 11,129,188,200,177,184, 60,193,124,186,192,116,178,130, 23, 18,206,104, + 52, 77,197,170,126,135, 68,121,104,175,144,164, 34,142,135, 71, 91, 59, 40,202, 30,146,188, 7, 15,133,162,223, 67,154,151,104, + 27,141,186, 54, 48,139, 58,218,118,172, 53,168, 86, 21,140,110,249, 0,118, 81,120, 20,216, 85,244, 44,122,246,183,211,129,170, + 91,222,239,242,239, 63, 16,253,178, 92,118, 59, 60,136, 8,101, 82, 82,178, 0,182,129,118, 38,226, 48, 73,196,229,226, 90, 43, + 20, 4,193, 74, 21,138,216,208,233,136,181, 81, 52, 93, 20, 84, 12,132,112, 36,218,187,187,104,113,242,140,215,140,132, 57, 65, +140,247,132,197,179, 93,164, 43,171,217,185,107,148,107, 93, 49,229, 40, 20, 93,183, 25, 71,193,116,120,251,112,254,160, 99,155, +135,160,145,160,196,118, 14,111, 69,145, 38,172,130,247, 28, 35,234,227, 56, 21, 17,158,133,117,250, 87,100,219, 39,124,177, 16, +219,194,217, 22,214, 52, 29,131, 29, 93,154, 28,209, 40, 69, 12,201,161, 2, 42,139, 42,255,112, 73,202, 88,188,136, 24,225, 44, + 61, 53, 59, 20, 51,205,144, 22,246,247,203, 8, 79,177,209,190, 22,118,246,142,237,104,225,194, 14,247, 4, 17, 44,147, 40,250, + 13,207, 0, 77, 73, 12,114,230,138, 68,177,108,162,232, 44,224, 64, 19, 23,126, 63,142, 97, 92,144, 12, 68,146,112,130, 83,222, +132,100,253, 83, 23,217,170, 50,201,168, 86,254, 12,121, 7, 47, 37, 44, 58, 75, 97,154, 42, 52,181,101,110, 59, 56,103,158,226, + 83,157,227,169,141, 84,252, 59, 0,148, 32,198, 9,216, 70, 45, 84, 22,243, 6, 98,230, 7,175, 60,188, 23,240, 74,112,178, 90, +135, 47, 22,204,155, 8,152, 92,163, 27,184,176,198,145,226, 45,124,113, 40, 32, 73, 56,137, 40, 0,246,126,253,107, 98,141, 41, +192, 69, 3,115,232,201,101, 2,218,255, 7,174, 0, 55,111,214, 58,168,255,238,227, 59, 63,239,178,208, 73,120, 99,152, 8, 21, + 30,164,182,165,125,170,209,134,121,210, 33,120, 65,160,213,186, 19,195, 40,178, 44,101,121,142,162,223, 7, 98, 76,169, 92,179, +163,177,133,198, 24,228,101, 22,253,135,158, 61,148, 34,170, 10, 59,175,159,224,139, 90,188, 69, 40,242,232, 68,242,244, 11, 23, +107,213,164, 20, 96,187, 73, 96,183, 75,174,216,193, 35,254,142, 91, 44,214,194, 28,194,195, 29,254,126,160,177, 5,192, 5, 89, +227, 36,131, 60, 18,142,139,164,192,129,176, 23, 11,194, 9,176,122,222, 59,135,186, 38,161, 89,181,106,216,207,239,226,247, 15, +127, 38,178,208,249,225, 12,104,217, 36, 77, 57, 11,185,203,236, 85, 74, 96, 49, 95,192, 67, 98,231,202, 46,234,213, 10,243,233, + 4,199, 47,143, 48,218,218,193,245, 91, 7, 56, 61, 58,129,110, 27, 34,144, 89,170,102, 45, 7,212,232, 86,195,106, 98,172,143, +198,253,232,115, 15,221, 74, 96, 51,215, 28,128,242,252,209, 11, 28, 92, 63, 32,141, 65,211, 96, 57,159,193, 90,129,225,168,143, +254,112,132, 52, 21,104,106,141,141,173, 1, 38,231, 19, 36, 89,129,249,228,156,119,180, 29,167, 64, 74,170,128, 7,227, 13, 12, +134, 61,172,230, 75,232,182,197,173,119,174,227,232,197,107, 92,158,207, 99,210, 91, 86,228, 72, 18,129,241,230, 24,109,221,224, +131,207,238,163,109, 61,137,228,242, 12,214,106,204, 47,151,112,206,160, 55, 32, 72,204,198,238, 54,154,214, 35, 77, 8, 14,244, +229,191,254, 14,155, 59,219,232, 13,250,152,205, 26, 92,158, 93,224,245,227, 71,132, 68,174, 91, 92,191,251, 46, 78,143, 46,144, + 39, 22,189,204,226,201, 31,254,128,107,119,239,225,206,251,119,177,154, 76, 32,139, 13, 60,127,252, 26,171,179,167,144, 32, 32, +202,189, 31,253, 12, 79,126,247, 11,180,245, 50,138, 41,223,249,228, 71,184,247,249,103,120,246,224, 11, 40,165,176,123,120, 13, +121,175,143,229,124,201, 12,135, 6,243,139, 83, 76,207, 47, 49,155, 46, 81, 55, 6,109, 85,197,108,113,103, 26,250, 12,242,251, +156,102, 57,134, 27, 27, 24,109,108,160,236,143, 72, 16, 39, 83,100,101, 15, 66, 16, 66,121,185,172,176, 90,172, 80, 87, 21,146, + 68, 98,181, 92,162,173,170, 72, 39,243,188, 59, 14, 66,195, 36, 80,217,120,244, 27, 49,175,146,194,149, 28, 83,195,194,161, 27, + 88,232,193,218,149,114,232,138, 99,177,207,106, 89,113, 2,162,140,121,225, 97, 12,166,216,195, 29,158, 87,143,110,135, 74, 86, + 78,217, 89,177,162,114,157,189,216,108, 65, 90,207,172,118,188,211, 50,214, 67, 72, 58,163,224, 29,100, 12,246,176,112,206,112, + 34, 29, 56,225,138,185, 12,232,136,107, 50, 38, 98,137,181, 24, 86,196,162, 37,194,170, 44,117,111,193,130,228, 29, 98,242,156, + 84, 10,137,234, 40,120,116, 94,209, 25,170, 56,136,133, 28, 33,221, 24, 62, 48,250,169, 8, 48, 72, 84,202,158,127,196,125,185, +115, 13,253,215,191,157,244,230,187, 96,238,232,185,239,254,185,143,202,113,242,163,103, 17, 50, 20,184, 14, 33, 85,204,152,110, + 53, 26,214, 2, 65, 11, 17,206,187, 48, 18, 14, 13,150, 16, 10, 9,159, 11,129,247, 30, 2,181,162,176,142,221, 63,235,226,184, +184, 71, 86, 18,150,225, 88, 97, 93, 41, 24, 62, 70,127,173,162,181, 45, 0,199, 44,139,251,194,170, 34,124, 78,163,194,156, 11, + 75,201,163,111,199, 7,204, 58, 24,140,175, 59,242,167,115,250, 94,244,174,139, 0,114,233,112,192,221,207,148, 32, 77, 20, 79, + 55, 85, 44,226,194,101,179, 78,117,147,129,164,232,232,251,208,159,243, 44, 66,237,182, 45, 2,235,105,187, 29, 74, 55,128, 93, +169,224,246,107, 86, 78,185,166,127, 8, 96, 28,177, 70,210,235,108,214,241,125, 8, 22, 78,239,161,254,230,243,123, 63,119, 14, + 16,124,185, 82, 88, 67,120, 81, 34,218,202,172,115,220, 93, 26, 40,153,176,165,139,195,238,153,209,174,141, 67,145, 43, 52,181, +198,120,107, 27,123, 87,247,161, 91,141,186,170, 24,172,224, 98,119,238,128,152,208, 22, 66, 8, 66,213,155,102, 73,204, 56, 79, + 18,197,190,110,242, 29,210, 78,221, 71, 49,154,148,212, 69, 19, 28, 71,118,126, 82,116, 2, 11,231,232,123,133, 3, 41,116,172, +214, 56,126, 64, 68,164, 69, 57, 30,213,123,142,169, 12, 29,134,179, 62,142,123,214, 67, 39,164,146,209,194, 17, 46,113,240,142, +196,104, 11,221,104, 26,123,183, 38,230,173, 19,241, 45,137,235,141,162,200,248,161,167,175, 91,148, 57, 71,205,242,229,238, 56, +162, 86,144,234, 51, 77, 85, 20, 91,172, 22, 43, 84,203, 26, 59, 87,246,224,140,198,106,177,192,197,233, 41,154,198,225,163,239, +127, 4,107, 53, 86,139, 85,247, 51,146,247,133, 80,178, 82,144,221,139, 49,134,180, 30,161, 98,167,170, 26, 76, 47, 23,104,170, + 10,144, 25,122,165,196,139,167, 47,113,112,227, 26,122,253, 18,147,179,115, 90, 45,100, 5,140, 54,216,189,178,143,197,116,138, +221, 43, 59,152, 93, 78, 96,140,160, 12,238, 86, 71, 27,144, 49, 97,215,234,145, 21, 61,236,236,109, 98,114, 62, 69,181, 92,225, +250,237,171,120,245,236, 21, 22,179, 5,211,166,232, 18,241,222, 99,123,119, 19, 91, 59, 99,228,101, 9, 15, 79,234,110,239, 80, + 45, 87,104, 27,210, 74,204, 39, 83,140, 54,199,112, 62,193, 96, 88, 64,183, 53,190,250,197, 23, 88, 45, 87, 24,109,140, 0,149, +227,226,244, 18, 47,190,251, 22,213,124,134,106, 89, 99,107,111, 31,101, 47,199,106,213, 96,103, 51,195,171, 39,143,113,120,247, + 30,246,174,236,224,248,249, 51,244,183, 15,112,121,122,137,201,217, 57,164,157,193, 89,141,131,119, 63,130,109, 91,156, 60,255, + 22,240, 30,195,241, 22,222,249,228,135,184,253,193,251,120,250,224,247, 40,251,125,236, 28, 92,133,115, 36,220,115,166, 69,189, +156, 99,122,118,130,203,179,115, 44, 87, 6, 77,107,225,116, 75,227,108,103, 96, 77, 27,227, 73,243,162,192,112,188,129,254,112, +140,178, 63,128, 80,212,197,120, 86,191, 11,198,186, 86,171, 58, 70,125, 54, 77,139,106, 73, 34,184,182,105, 33, 19, 5,168, 52, +218,153,200, 11,108, 33,147, 16,184, 33,184,123,113,112,158, 5, 87,150, 70,232, 49,249, 47, 77,249,210,162, 75,126, 48, 28,112, +103, 41,163,200,149,242, 13,124,116,109, 68,215, 8,119,161,129,239, 79,194,174,128, 17, 37, 17,149,231,238, 56,116, 92,186,109, +105, 95, 25,237,143,170, 99,189, 59,207, 59, 79, 5,169,114, 62, 68,109,188,144, 98, 39, 99,130,165, 77, 70,171,103,188, 4,189, +131, 74, 56, 87, 60,248,158,101,200,187,150,220,109,170,181,172,190,198,229, 0, 0, 32, 0, 73, 68, 65, 84,130,200, 69,219, 44, + 47, 94,249,245,228,113,191, 29,138, 36, 64, 69,192,147,247,228,151,175,235,154, 95, 35,249,163, 29,191, 22,107, 53, 18,149, 34, +205, 10, 90, 3,176,242,220,152, 6,186, 93,145, 86,136,153,222, 42,234,111,186, 8, 89,110,159, 34,126, 54,140,123, 37,127, 54, +210, 44, 67,154,102,111, 1, 91,162,163,151, 69,131,148,232,215,240,153,199,174, 36, 15,116, 91, 26,201,103, 84, 78,226, 88, 46, +244, 67,204,104, 0,134, 37,105, 26,197,196,105,146,118,196,180, 53,139, 21,233,205, 72, 81,239, 57, 46,184, 43,134,232,126, 9, + 5,149,224, 98, 47,224,126,195,229,253, 54,217,111, 77, 40,103, 76, 92,221, 80, 50, 27,243, 9, 44,211, 67, 89,215, 69,157,172, +103, 46,188, 99, 4,111,232,188, 93,188,235,168,169, 73, 25,172,163,162,112,149,196,162, 29, 80, 77, 37, 50,218, 12,131,242, 60, +176,225, 3,181, 47, 92,240,225,247, 64,192, 28, 78,239, 20, 62, 70,184,146,194, 95,118, 65, 99,113, 13,229,209,173,204, 69,215, +193,179,109, 77,188,197,192, 23,111, 33,132,213,223,124,126,255,231,209,182, 16,186,237,240,129, 89, 99,178,211,159,233,124,117, +214, 1,131,113, 31,166, 53, 12,165, 80, 8,233,130, 2, 30,203,197, 2,179,233, 18,229, 96,136,253,195, 43,176,124,224,132,138, + 48,196,249, 81,236,159,139, 66,157, 32,142, 8, 59,139, 16, 63, 25, 46,227,132,149,213, 97, 60,187,230,106,141, 54, 57,201,151, +185,209,102, 45, 76,190,235, 10, 2, 39, 55, 88,228,156,113, 93, 56,138,113,209,150, 17,130, 36, 66,197, 25,118, 25,132,104, 37, +225, 68, 0, 37, 80,183, 78,222,207,166,106, 57, 31,222,172, 1, 46,168,232, 8, 31,232, 80,105,173,255, 76, 68,205,163,241, 34, + 29,172, 9,172,161, 17,127, 0, 33,132,170, 63, 88, 53,156,117, 48,186,193,229,249, 4,219,251,251,232, 15, 10,172,230, 75,212, +213, 2,199,175, 79,113,112,227, 38,174, 94,223,199,249,241,121, 12, 82, 8,149,127,150, 37,196,178,214, 52, 69, 0,128,186,226, +157,243, 98,197,163, 59, 58,136, 54,119,118, 49,189, 56,199,217,201, 37,118, 15,246, 48, 24,245,112,118,116, 2,231, 37,250,131, + 30,154,198, 96,107,103,136, 44, 47,176,156,205,161, 53,160,155, 21,116, 75, 89,244,180,163, 83, 48,218,146,170, 93,166,216, 61, +216, 65,189,170,161,155, 26, 87,174,237,225,197,163, 23, 56, 59, 57,143,163,197, 32,226,185,249,206, 33, 70, 27, 3, 92,156,205, + 24, 93,235, 0,111, 49,189, 92,208,248,210,181, 80, 73,138,254,104,128,182, 53,144,176,120,242,205, 51,252,254,151,191,198,193, +205,235, 72,139, 18,167,175, 79, 97,173,197,235, 39, 79,200,114,153, 21,248,232, 7, 31,227,233,183, 79,113,120,109, 27,182, 93, +225,224,214, 45,100, 10,120,240,171, 95,225,230, 7,159,226,244,205, 49, 46, 47, 43, 36,152, 35,145, 10, 69,127,128,171,119,238, +227,201, 23,255,202, 24,218, 61,220,249,228,251,184,254,206, 29,188,121,252, 29,198,219,219, 24,108,108,161,174,106,204, 47, 47, +176,154, 78, 48,187, 60,195,244,252, 4,243,217, 2,181, 86,108,199, 1,148,240,240, 86,195,123,218, 91,247,135, 35,108,110,111, + 99,184,185, 9,149,150, 80, 73, 22,243,207,165,162, 75,217, 26, 11,109, 61,211,221, 2,231,160, 37,145,226, 96,136,222,112,140, +254,198, 54,242,222, 8, 66,165,112, 70,243, 88, 84,210,251,187, 86, 52, 59,215, 93,188, 97,183, 76,251, 80, 65, 28, 8,246, 43, + 43,149, 96, 48,236,211, 1,206,207, 64, 93, 53, 88,204, 22,145,103,238, 61, 61,163,186,109, 72, 96,154,132, 56, 96,234,196, 2, +159, 33, 32, 86, 67,232, 72,240,165,119, 34, 50,183,102,243, 66,236,224,233, 2, 79, 1,208,228,128,246,179, 14, 64, 23, 26, 19, + 68, 99,193, 58, 37,184,128,143, 52, 46,165, 32,101,218, 49,179, 89,132, 20,120,236,225,194,164, 84, 50, 18,225,218, 72, 33, 35, +171,162,146, 10,105,154, 33, 81,148,156, 24, 83,212,194,193,202,206, 1,231, 60,180,110,187,231,148, 37, 98,134,153, 2, 73,154, + 83,134,124,156, 94,182,176,182,133, 53, 93,228,106,119,110,137,216,235, 69,184, 84,180,159,117, 23,100,216,237,167,105,198, 22, + 60, 23,131, 76,194,104, 87, 5,240,144,209,107,136, 82, 22,205,114,215, 25, 38,117, 89,150, 69,101,125,196,183,134, 16,175,181, +240,173, 44,207,120, 18,154,196, 34, 34, 9,172,247, 64,157, 11,189,132,144,164,226,142, 28,125,106, 36,194,138, 36, 20,123, 88, + 31, 41,135,137,146, 39, 87, 81, 32, 13,134,230,131, 10, 58, 31,147,236, 8, 84,197, 41,154,108, 41,148,188,147,150, 17,112,131, +184,122, 13, 52, 56,114, 12,100,145,114, 24,168,124, 33, 98, 55,236,210, 73, 15, 96, 58,244,182,119,172,244,183, 81, 32, 26,132, +210, 97,141, 20,252,231, 42,192,207,248,210, 15,175, 49, 18,129,227,223,119,111,209, 76,197, 26,109,181, 19,138, 50,108,200,135, + 0, 29, 17,233,138,234,175,191,247,222,207,195, 33,159, 50, 54, 84, 8, 9,190, 51,200, 95,169, 13,143,151, 17, 1, 4,121,145, +147,141, 45,170,205,187, 12,227,144, 83,110,140,193,106,185,192,244,146, 44, 61,251,135,251, 28, 3,186,138, 56,200, 32,186,176, +142,246,204, 20, 85,216, 61, 28, 89,158,196,135,178, 40, 11,238,100, 51,246, 93, 50,194,145, 63, 32, 42,236,107,172,139,251, 89, + 18,106,173,193, 5, 68, 7,160,161,106,207,161, 40, 67,192, 74, 26,225,251,228,179, 94,247,187, 34,238,134,194, 88, 47, 97,155, +131,181,142,240,157,173,102,150,188,125,203,195, 75,214, 61,172,165,253,216,168,109,112,214, 70,212, 97, 83, 53,145,157,236, 61, +208, 31,148,124, 96, 25,172, 22, 43,142,148, 37,111,113, 16, 96, 4,171,131,110, 91, 92,156, 93, 64,169, 28, 87, 14,247,112,121, +118,129,197,108,134,163,151,175,208,106,137,251,159,220, 71, 83, 45, 49,155,204, 32, 0,148,189,156,252,236,222,193,180, 6, 77, +211, 98,181,168,176, 92,172, 80, 85,117,196,204, 38,105, 18,187,200,157,253,109, 28,189,124,131,229, 98,133,205,157, 45, 12,199, + 3,188,124,246, 10, 89, 94,192, 91,131,114, 48,160,175,233, 52, 22,139, 22,186, 93, 97, 62,153,118, 92,110, 77, 64,150, 36,203, + 33, 85,130,173,221, 45,232,182,197,228,124,130,189, 43, 59,120,246,232, 25,166, 23,211,136,250, 36, 1,154,195,247,126,252, 1, +206,142,207,209,212, 36,116, 20, 82, 98,181, 88,160,170, 12,202, 94,134,233,249, 57, 84, 90,162, 63, 44,225,172,193,244,114,138, + 95,252,215,127, 64, 85,213,248,232, 71,159,163,173, 45, 22,139, 10,179,179, 83, 44,231, 43,120, 41,241,217, 79, 62,199,235,199, +143,177,123,245, 26,110,222,218,197,112, 99,132, 87,223, 61,194, 31,254,237,215,248,248,167,127,138, 55, 79,159,161,110, 20,164, +157, 33, 81, 30, 42,205,112,253,254,199, 56,122,244, 0, 74, 41,108,237, 95,193,173, 15, 63,193,104,107, 19,179,179, 99,108,238, +239, 35, 45, 74, 76,206, 47,112,252,236, 25,166,103, 39,152, 93,156, 97,181,152,163,213, 30,173,205, 34,224,137,114,125, 40, 23, +188, 28,140,176,177,179,143,225,230, 22,100,146, 3,130, 66,143,218,150,236, 98,253, 65, 15,105, 86,160, 24,140, 32,147, 2, 42, + 45,144,247, 70,128, 76,225,124, 2,235,147,152,144,216,214, 75,172,230, 83, 52,171, 41,218,122,201,105,135, 50,142,223,227,152, + 50,164, 47,198,157, 97, 39,214, 36, 49, 83,202, 4, 45,133,225,120,128,222,112, 16, 17,204,100,185, 36,140,112,216,111, 7,149, +121,240, 63,211,168, 53,141,160,148,176,139,149,188,135, 15,137, 97, 82,201,181,241, 54,141,207, 3,139,187, 3,177,112,192,137, +204,227,179,225,156,129,247, 58, 62,103,214,248,184, 14,148, 66,118, 7,124, 72,100, 99, 69,177,103, 64, 86,184,112, 2,250, 51, +230,136,115, 83, 78, 60,137, 96,145, 99,128, 73, 0,230,168,132, 69,131, 10,130,139, 19, 1, 25, 15, 99,173,153, 24,199,211,132, +160, 82,247,156,208, 37,164, 64,150,151,244, 51, 50,175,220,232, 6, 70, 87,111,173, 19,215, 17,214,235,227,241, 40,144,242,126, +205, 50, 5, 22, 38,166,132, 47, 13, 40, 87,190, 20,173, 49, 72,148,138, 77,134,181,250, 45,194, 91,154,166,112, 76,126,164,105, +161,138,159, 9, 26,227,119,145,179,105,154,208,185,144,165, 76,251,148,113,114, 17, 68,101, 49, 73, 45,224, 92, 67, 17, 23, 19, + 51,101, 36,176,169,128, 13,231, 41,128,136, 36, 24,250,247,146, 68,114,177,193,223, 43,172,107,172,139, 23,171,209,134,154,209, + 48,241,101,182,186,247, 54, 22,101,235,132,191,216,125,243,248, 61, 88, 29, 3,180,135, 62,251, 50,174,104,128,128,123,117,156, +147,160,162,179, 42, 10, 16,215,198,243, 42,104, 15,156,225,189,191, 71,192,228, 19, 4,108,109, 30,207,133, 1,173, 21,124,252, +126, 33, 35,190, 35,198, 5,148, 45,253, 30, 3,102, 57, 38, 43, 5, 12,173,148, 72,194,155,224, 29,141,212,194,152, 39,176,217, +121, 76,207,246, 7,122, 48,154, 86, 35,105, 53,188,108,145,229, 25,178, 60, 35, 91,152,117,208,198, 34, 97, 98,158, 74,168,171, + 18,176,120,241,248, 9,164,202,112,245,198, 33, 54,183, 55,113,122,116, 74,233,101,193,203,152, 38,176,142, 70, 87,109,211, 34, + 73,105, 47,164, 91,205, 5,132,231,194, 35,137,132,178, 48, 57,114, 33,103,214, 3,186, 49,200,178,224,211,228,168, 84, 14, 44, + 80,137,236, 34, 8, 5,229,162,135, 3, 73,113,126,119,168, 6, 3,127, 58, 48,218,165, 16,104, 26, 3, 41,124,156,155, 52,117, +139, 36, 75, 99, 32,130, 19, 54,126,152,171, 21, 17,142, 90,246,129,135,110, 31,232, 24,242, 89,158, 80,132,165,146,168,150, 76, + 24,242, 6,222, 73, 24, 3, 12,199,212,189,247,250, 5,230,211,121, 76, 95,211,186,229, 42,156,130, 22,218,166,141, 86,152,147, + 87,207,177,156,111,226,206,251,247,241,234,233, 99,188,121,113,132,151,143,191,197,233,155, 55,248,224,179, 79,176,177, 53,198, +183,191,127,200, 15,134, 97,132, 46,117,124,117,221,196,228,181,237,221, 45,244,250, 61,148,174, 7,153,150,152, 77,102, 72,146, + 29,108,108,142,112,113, 62,195, 87,255,246, 5,110,190,123, 27, 31,125,254, 62,254,240,229, 99, 92, 61,220,199,155,231,175,209, +255,240, 61,100,121,142,106,113, 2,103, 52, 38, 23, 23, 44,168, 34,174,184,169, 43, 64,164,208, 6,120,253,252, 20, 69,161,176, + 90,174, 80, 87, 13, 86,179, 25, 46,207, 79, 81,148, 3,200, 36, 69, 94,246,112,237,230,117,212,171, 26,151,103, 19,140,182, 54, + 96,180,195,246,118, 15, 47,190,123,138,114,184,129, 44, 19,232, 13,123, 40,250, 5, 86,139, 26, 2, 22,223,126,249, 13, 38, 23, + 23,184,125,239, 62,146,172,196, 98,122,142, 44,207,241,250,226, 18, 42, 77,112,229,218, 1, 36, 12,146, 98,136, 79,127,116, 15, +237,114,142,127,250,191,254, 22, 71,207,159,224,135,127,245, 55, 56,122,250, 12,218, 42,212,245, 12,131, 92, 35, 47,123,232,111, +238, 34, 77, 36, 70, 27, 35,136,237, 77, 92,189,115,151,118,229,109,133,225,214, 46,172,213, 56,126,246, 24,199, 47, 95,160, 94, + 46, 96,218,154,182,122, 34,135,151,228, 44,144,240,144,194, 66, 41,135,254,112,140,254,120, 19,105, 65,162, 55, 10, 72, 34, 5, +119, 62, 8,118, 43, 82,255, 46,170, 6,122, 66,216,216,197,108, 10,219,214,144,138, 46, 88,235, 40, 25, 43,203, 19,142,149, 12, + 41,133,164,138, 38, 59,140,141,105,130, 84, 40, 43,134,153, 56,230,102,139,104,103,163, 75,139,152,214,101,175, 92, 75,237,162, + 34, 53, 20,229,225,114, 9,201,101, 16, 64,146,101, 16, 96,244, 37,186,216,212, 46, 93,143, 38, 6,100, 71,210, 16, 49, 86, 82, + 68,101, 51,224,226,232,221,180,150,213,225,105,164,172,145,100, 73,199,110,149, 70,163, 84, 36, 43, 25,188,245, 96, 31,178,137, + 23,161,243,221, 97,174,164,128, 76, 18, 18,148,113, 91,165, 20,173,180, 40, 26,154, 14, 95, 66,197,202,200,237, 8,148, 54, 33, + 2, 28,139, 52, 8,172, 27,163, 66, 66,209,179,219,241,239, 77,252,122,222, 59,100,217, 32,138,239,192, 29, 37,145,226, 92,156, + 40, 70,168, 73,156,242,185,152, 24, 22,109,109, 66,197,208,156, 32,214,234,244, 64,157, 21, 79,241, 10,211,114,243,224,226,247, + 10,151,137,138, 98, 96,199,238, 32, 25,168,105, 28,136, 34, 3, 99, 0, 29,179, 92,196,156,119,143, 44,149, 49,143, 93, 73,209, + 89,241,140,133, 72, 21, 60, 67,101, 84,146, 64, 59, 48, 33,178,139,196,142,124,124, 19,108,192, 50,250,211,131, 37,205,179,123, + 65,128,126, 86,203,163,104,103,233,236,215,173,142,161, 44, 33,119, 97,125,231, 28, 58,106,173, 91,178, 82,231, 42,174,167, 58, +240,144,138,220,255,240,255, 45, 76,220,133,211,221, 64, 32, 53,239, 16,161, 68, 36,250,211, 76,129,163, 75, 94, 90,194,254,122, + 96, 77, 88, 29,194, 90,120,204,174,130, 40, 92,172,241, 29, 2, 78,214,114, 39,206,200,239,183,130,118, 68, 23, 65, 44,197,154, +163,130,232,139, 9,120,252, 98,172,129,144, 52,134, 14, 16,128,245,220, 97, 10, 79,113,108,237,242,168,150, 43,130, 19,100, 36, +248,128,183,236, 49, 76,209, 86, 75,228,101, 1,107, 13,227, 87,233, 23,215,214, 21, 94, 60,126,130,178, 63,194,245, 59,215,177, +154,207,113,126,122, 14,107, 61,169,186, 25,254,146,112, 5, 31, 72, 77, 90,183,124,177,211,248,173,236,147, 66,147,216,225, 65, + 96,227,185,226,108,187, 17, 60, 87, 66,121,158, 50, 27,218,241,254, 67,178,114, 52, 89,243,215, 34, 70,128,134,191,159,231,164, + 56, 15, 62,245,162, 76,121,106,225,216,206,166, 98,116,104,128, 70,144, 96,131,194, 74,170,101,133,166,161, 49, 92,146, 38,112, +181, 91,219, 91, 9, 44,102, 75,138,187, 76, 21,119,228, 52, 98, 47,122,189, 24, 59, 89,148, 25, 91, 60,136,197,236,172, 69,150, +166, 92, 29,174,161, 12, 25,224, 1, 8,172,230, 19, 60,252,253, 28,119,238,189,139,254, 96,128,151, 79,158, 67, 74,135, 7,255, +246, 43, 92,187,115, 23, 63,254,139,159,226,193,175,191, 64, 93, 53,164,110,150,134, 68, 61, 86,199,196,174,201,249, 57,135,182, + 88,244,134, 4, 93, 56, 61, 58,195,193,181, 67,204,103, 43, 8,175,240,219,127,254, 39,188,255,217,103,248,228,243,247,241,250, +229, 49,178, 84,226,252,248, 12,239,189,127,136,239,190,126,129,172, 40, 8,151, 10,178,167, 20,101, 14,107,233,103,205, 50,133, +179,147, 11, 92,187,121,192,211, 11,131,186,170,120,191,108,225,173,196,214,206, 38,238,127,122, 23,231, 39,103,104, 27, 67, 41, +101, 90, 66,194,225,242, 98,142, 43, 55,174,193,154, 26,229, 96,132,209,120,128,249,116,142,201,229, 4,223,124,249, 37,156,115, + 56,184,125, 11,105, 2, 44, 87, 45,154,229, 28,198, 2, 89,145,225,222,199,239,224,193,191,125,129,143,254,232,135, 88, 92,156, +225,191,253,199,255,140,229,124,134,207,255,226, 63,224,245,147,167, 16, 66, 98,177, 52,216,236,183, 40,202, 30,202,225, 24, 59, +135, 55,176,188, 60,193, 96,107, 23, 59,135,215, 32,188, 67,219,212,144,105,129,213,124,134,231, 15, 31,226,236,205, 43, 34, 49, +178,192,198,203, 28,214,167,240,198, 35,203, 60,138, 50,195,120,139, 88,239, 89,111,136, 86,211,186, 99,190,170,176,154, 77,224, +109,139, 52, 75,145,151, 37, 7, 19, 81,145,235, 33, 97,181, 70, 53,159,161,173,150,144, 66, 64, 91,130,113, 36,114,109,146,228, + 28,107, 98, 36, 11, 29, 69,244,250,135,201, 87, 0,129,132,233,151,243, 64,154, 40, 56,109, 98, 14, 65,175,223,195,104, 99, 28, +167,105,225,130,208,218, 80, 33, 97, 45, 95, 82,157, 26, 40, 73,168,131,211,186,133,177, 14, 57,175,174,136,253,175,226, 24, 55, +164, 76, 5,135,131, 4,217, 91, 37,139, 82,219,166, 1, 64,116, 52,165, 50, 14,138,161,130, 92,183, 53,188,111,187,236,241,120, +137,201,183, 50, 26, 66, 7, 39,215, 70,150, 30,226,237, 11,217,122, 56, 56, 46, 98,200, 98,100, 3, 59,156,207, 15,195,213, 0, +253, 44, 10,134, 1, 45, 97, 42,232,215,162, 60,165, 19,107,108,111,209, 37,149,113, 92, 50,188, 67,158,151,132, 27,230,209, 53, + 65,109, 52,193, 81,214, 66, 64,240,214, 82, 17, 49,168, 35,230, 59, 64,192, 11,199,239,113,208,243, 56,166,120,242,207,195, 54, + 53,112,247,166,148, 88, 91, 7,116,109, 98,224, 89,132,226, 43, 4,132, 40,158,172, 64,116,254,126,163, 53,178, 44,141,121,233, + 97,180,236,248, 44,117,206,147,111,219,218,168,152, 23, 16, 16,220, 56, 57,103,226,190,154,214, 64, 41,103,119,248,120,214, 83, + 33,196,171, 2, 67,121, 28,138,249, 7,164,159, 73, 56,166, 21,113,173,167,184,187,183, 12,251,114, 1, 48,230, 77, 92, 95,208, + 36,192,113, 2,161,136,186,167, 0, 36, 11,171, 14,149,210, 51, 65, 27, 9, 15,145,136,200, 66, 88, 31,173, 27,126,207,164,232, + 38,179,244,108,241, 74,136, 5,211, 33, 46,214,161, 19,230,209,244,201, 67,248, 48,101,246,172,225,178,140,124, 70, 55,134, 15, + 77,168, 20,240,150,197,175,107, 48, 27,191,150,116, 42,248,223, 81,127,254,225,221,159, 83,158, 47,143,182, 2, 97, 40,216, 53, + 66, 21,195, 16,132, 80,217, 82, 40, 1,117, 9,126,141,145,171,141,131,227,144,142,144,248, 20, 44, 31, 70, 27,120, 16,189,236, +226,236, 2,189,209, 24,215,111, 31,194, 26,141,197,124, 25, 37,253,158,199, 94,129,197,174, 4, 98, 36,106, 24,217, 9,182,106, + 56,222,245, 36,108,173, 72, 82, 21, 71,128, 20,249,103,214, 34,232, 17, 63,148,244, 48,119, 98,186,144,138,230,172, 71,150,167, +204, 11,247, 17, 79, 24, 4, 27, 74,169,152,180,230, 92,247,243, 88, 99, 59,224, 76, 84,210,139,184, 79,215,173,137,175, 47,140, +209,129, 46, 23,183, 94,145,103, 61,205, 83,100,121,142,173,157, 13,140, 54,250,196,104, 55, 6,139,217,146, 15, 1,215,129,255, +185, 18, 77, 83, 69, 92, 1,238,116,156,243, 16,222, 97, 62,155,162, 28,108,226,234,141, 3,204,103, 51,234,234,171, 37, 38,151, + 43,220,251,244, 35,228, 69,134,201,197,132,108,137, 85, 69,241,132,225, 97,149, 18,166,213, 48, 28,212,145, 38, 2, 73, 86, 64, + 27,224,224,112, 23,203,197, 28,205,106,137,227, 23,207, 49,220,220,198,246,222, 46,102,147, 57, 18,101,145,230,125,180,245, 18, + 42, 73,113,244,226, 57,237, 85,147, 20,101,175,135,188, 40, 33,211, 28, 89,158, 17, 38,183, 55, 64, 91,205,177,115,101, 23,175, +159, 61,195, 98,182, 68, 94, 20, 40,202, 18, 63,248,233,247, 81,148, 25, 46,143, 79,145,247,250, 72, 19,137, 36, 43, 48, 57, 59, +131,117, 18, 87,175,239,192,121, 2, 22, 25,163,177, 90,212,248,226, 95,126,133,201,249, 57,174,221,126, 7,159,252,232, 19, 60, +254,230, 57,210, 44,195,203, 71, 79,225,225,240,147,191,248, 17, 38, 39,199,184,122,231, 46,124, 51,199,255,251,159,254, 11,180, + 49,248,236,223,253, 25,222, 60,121, 2, 37, 61,106, 55,192,168,172,177,185,189,129,241,246, 22, 54,174,222, 2,108, 3,165, 20, +174,220,190, 13,225, 12,180,110,225,173,197,209,179,151,120,244,229, 23, 56,125,253, 28,186,169,233, 0, 73, 82,228,131, 77, 20, +163, 61,236, 94, 61,192,193,205, 91,216,185,122, 3,219, 7,135, 72,178, 30,230,139, 26,151,103,231,184, 60, 61,193,228,228, 53, +170,233, 41, 18, 5, 12, 70,125,228,101, 1,231, 58,251,163,181, 14,213,114,137,106,185,160, 93,168,247,107,217,224,180,255, 14, +112, 35, 15, 31,247,114, 65, 68, 71,105, 88,102, 45,143, 91, 70,187, 18, 89, 88, 83, 62, 32,104,212,222, 31, 12,208, 31, 14, 40, +141,139,241,200,173, 54,104, 26,141,249,108,129,106, 85,175, 5,150, 16, 43, 34, 97, 37,179,214, 26, 41,123,211, 61, 79,223, 98, + 66,160,144,209,119,222,141, 67, 93,156, 42,184, 64, 90,179,150, 65, 46, 41,164, 76,217,109, 35,136, 61,175, 87,113, 60,233,215, + 94,135,115,126, 77,120,239,187,102,196,117,190,236, 52,205, 35,162,154, 88, 12,138,137,105,174,179, 18,121,234,148, 44,175,208, + 58,252,109,216,173, 42, 22, 18,118,251,230,120,201,250,208,124,107,166, 68, 26,238,252, 53,129,114,164, 68, 94,148, 40,202,146, +181, 13, 14,186,109,209, 54,171, 72, 33,131,192,218, 37,164,186,221,255,218, 8,222,175,169,229,101, 4,253, 36, 72, 84,130, 44, + 47, 88,124, 72, 69,144, 95,163,182,133,223,145,229,148, 56,202,159, 71, 71, 89,243, 64,194,182, 54, 74,111,100,230,121, 12,211, +146, 88, 27, 34, 16,139, 0, 34, 22,130,130,153, 30,193, 85, 33, 99,154,152,140, 59,255,176,182,164,236,137,132,247,226,136,169, +157,146,113,219, 93, 40, 77,103, 91, 3,139, 59,105,133,234,201,114,205,211, 73, 17,211,212,104,173,234, 29, 97, 95, 85,194, 74, +118, 25, 18,227,232,119,172,184, 0, 13, 9,154, 73,154,208,132, 65,210, 84, 74,138, 80,236, 80,163, 70,171,140, 14,224, 35,163, +192, 50, 88, 48,101, 20,234,201, 32,228,139,153, 23, 93, 30,201,250, 14,189,219,165,119,197,154, 20,162, 11,103, 17,235, 2,185, +110, 37,211, 33,149, 69, 20, 36,250, 24, 31, 75, 95, 39, 9, 92, 97,194,224, 17,206, 85, 27,131, 52, 33,223,119,240, 90,134,145, +117,216,169, 27,235,224,234, 26, 89, 93, 65,165, 84,253,228, 57,219,161, 32,185, 99, 33, 5,165,243, 30, 86,115,132, 99,107,152, + 31,236,240,230,249, 75, 92,156,158,227,198,157, 27, 24,140, 6,120,252,240, 25,171, 63,195,155, 36, 80,150, 57,141,101,156, 71, +154,121,142,215,163, 24, 79, 98, 40,147,176,161,232, 21,200,101,134,166,214, 49,114, 21,144, 72, 50,245,255,123, 13,244, 11, 33, + 31,173, 66, 94, 4,132,161,103,173, 64,134, 52,227, 14, 94,113, 22, 47,171,234,193,194, 18, 99, 60,219,116, 64, 59,127,134, 10, + 40, 41,208, 52,154, 70, 77,150, 30,134,178, 95, 66, 8,234, 82, 41,188, 69,196,145, 73,168,112, 33,128,225,184,223, 29, 26, 25, + 89,253,234,138, 18,243, 22,179, 10,186,181, 12, 63, 16, 0,123, 91,163, 26,159,193, 31,244, 64, 16,168, 97,181,168, 97,141,198, +233,235, 23, 88, 14, 55,112,247,163, 15,113,254,230, 53, 86,171, 10,206, 52,120,244,213, 55,216, 62, 56,196,247,126,242,125,124, +249,139,223, 32, 73, 18,164,101, 22, 63,132, 90, 27, 24,163, 81, 45,151, 92,245,122,236,245, 7,200, 82, 1, 47, 83,220,185,247, + 46,234,197, 20,103, 77,141,135,191,251, 13,222,251,244, 71,184,241,206, 13, 76,207, 78,241,230,213, 25,174,222,188,134,227, 87, +199,140,140,181,177,154,117,214,162, 24,100, 40,202,146,194,129, 18,201,171, 22, 58,100,210,140, 98, 49,239,127,124, 15,155,219, + 99, 76,206, 39,152, 77, 23,184,241,238, 14,230,211, 21,242, 66,227,228,205, 5, 9,224,178,148,214, 59,173,197,236,114,129,217, +229, 5,158,125,251, 29,250,195, 33, 62,252,225,103,168, 87, 45, 22,243, 26,171,249, 20,198,106,124,255,143, 63,197,104,220,195, +120,235, 46,154,101,133, 95,254,237,191,194, 58,135,207,254,221,207,240,228,171,175,209,214, 11,244,118,110, 99,148, 52, 56,188, +126, 3,229,160, 7,153, 13, 88,131,225,112,112,251, 54,154,170, 66,219,106, 76,207, 47,113,244,236, 25,142,158, 61,129,110, 42, +164,121, 15, 59, 7, 7, 24,109, 31, 64,230, 3, 44, 23, 13, 86,243, 25,170,249, 28, 48, 43,100,121,134,138,133,106,213,114,137, +201,197, 37,164, 20, 40,122, 61, 12, 70, 27,228,155,206,114,180,117,131,182,165, 14,196,104,141,122,181, 36,207, 56,143,126,173, +235,162,134, 11,238,232,227,120,207, 75,120,173, 97, 76, 23,108,208,212, 13,141, 9,189, 71,146,164, 81,241, 29,176,182,101,175, +100, 59,160, 88,139,138,164,195,180,169, 53,140, 49,168,171,154, 64, 52,188, 43, 20,130,212,234, 66, 10, 20,105, 6,173, 13, 36, + 4,178, 44,235, 28, 38,194,115,192, 71, 70,157, 5,103, 13, 40, 41,216, 73,210, 93, 40,130, 47, 5,163, 53, 36, 43,195,157, 23, +236,221,183, 92, 64,181,124,169,249,184, 55, 15,151,155,128,143,238,149,117,212,117,236,212,217,126, 22,138,151,232,151,103,159, +116,216,181,122,111,187,110,157,155,154, 48, 5, 64,220,203, 19,140,138,108, 94, 76,195,228,157,170,143,123, 78, 42, 10,180,110, + 57,105,205,160, 63,218, 64, 89,246, 34, 82,212, 57, 11, 99, 90,104,163,185, 0,233, 44,187,129, 25, 31, 46,219,104, 87, 18, 88, + 27,199, 11,134,166, 40, 56,111,145,167,148, 29,145, 40,193,107, 70,135, 60,235, 44,136, 36,110,166,255, 77,147,132,121,242,146, + 59,125,186,140,156, 11,132,197,110, 63, 28,176,175,130,155,185, 14, 46, 21, 68,205, 68, 79,147,188, 94,244,140,245,150, 41,103, +156, 59, 15,227, 40, 79, 36, 77,211, 46,128, 71, 10,202,179, 23,142, 93, 71,100,127,118, 28,132, 99,140, 1,156, 99,107,181,232, +178,197, 5,133,128, 37,105, 2,237, 56, 80,199, 91, 88,109,160,164, 71,107,117, 12,124, 33,124, 44, 77,139,117,107, 88, 32,202, + 64, 33,129,142,149, 32, 37, 28, 36,132,243,148, 81,207, 14, 33,169, 58, 43,155, 74, 82, 72, 31,104,127, 54,166,141, 58, 31,216, +239, 22, 16,116,249, 75,120,120, 25,132,107,156,144,105, 52, 43,222, 37, 0,194,130,203, 64, 18,134,224,224, 45, 29,167, 10,244, +185, 52,111,249,213, 3,142,216,123, 25,227,171,237, 90, 46,187, 15,128,156, 63,123,255,157,159,167,105, 2, 47, 58, 83,187,115, +158,149,228,164,120,215, 81,216, 37, 40, 1,172,105,153,129,238, 96,157, 71,158, 23, 49,147, 55,136, 54,170,170,238,222,112, 70, + 2,194,139, 40, 30,241, 8, 41, 70, 6,151,231,151, 72,210, 2,119,238,222,192,229,217, 37, 85,183,107, 99,106,199, 98, 28,169, +136, 72, 71,150, 12,226,125, 27, 22,218,232, 86,163,174, 27, 14, 53, 49, 60, 98,235,124,231,138,247,228, 70, 91,190,136, 61,171, +220, 61,235, 7,232,114,145,188, 91, 15, 85,143,228, 49, 40,188,103,165, 62,162,218, 61,236,236,131,119, 18,126,221,247, 78, 15, + 76,208, 28,132,238, 95, 8,129,188,200, 80,148, 57,137,160,210, 20,189,126, 73, 99,215, 34,135, 82, 73, 36, 40, 89,107, 81, 87, + 45,150,139, 42, 90, 92, 2, 44,194,240, 88, 51,140,133, 36, 91, 73, 4, 64, 74,103,129,120,225, 59,219,162,109, 53,118, 15, 15, +145,101, 9,218,166, 69,221,104,212,243, 41,102,211, 26, 31,124,254, 49,132,119,168,171,154,208,136,236, 78,160, 7,131,162, 19, + 87,203, 21,188,179,216,220,217, 38,168, 78,111,128,126, 63,195,209,139,151,176, 70,227,236,248, 24,219,251,135,216, 63,220,131, +183, 45,138,193, 8,222,123, 28, 63,127, 76,182, 54, 31, 60,254,164, 32, 54,142,166, 38,135, 55, 15, 80, 47,230,216,222,223,198, +155,231, 47,209, 84, 53,222,251,232, 62, 62,254,193,135,152, 92,206,136,231, 62, 26, 96,188,217,199,114,105,104,175,149,102, 56, +188,117, 5,139,249, 10, 27, 91,125, 28,191,186, 64,146, 9,252,227,127,254,175,104,234, 37, 62,251,147, 63,193,254,181, 67, 60, +121,248, 20, 89,150,226,249,163, 39,184,121,235, 0, 63,249,203, 31,195, 91,135,243,211, 57,190,251,221,111, 49,155, 76,241,131, + 63,255, 83,124,251,197, 3,204,206, 79, 48,216,189,131,225, 32,197, 59,247,175, 49,204, 38, 67,211, 2,182, 93,226,224,157,119, + 48, 57,155, 96,126, 49,193,209,179,231,120,253,232, 59,120,239,113,245,206, 61, 92,185,115, 31,253,141,125,172, 42,135,215,207, + 95,225,244,245,107,184,102,134, 50, 7, 70, 27,125, 36, 89,138,166,110, 49,187,184,192,217,209,107, 84,203, 5,210, 60,199,230, +206, 14,134,227, 49, 32, 82, 64, 38, 4,147,105, 52,116, 83, 81, 65,176, 88, 68,186,161,103,228, 39,161,107, 51,244,250, 37, 11, +143,104, 71,105, 76, 8,137, 48,107,220,232,176,231, 77, 98,234, 86,146, 40,100,121,142,254,112,136,225,104,128,209,120,136, 60, +207,186, 24, 76,134,164, 88,235,208, 52, 13,163,139, 27,222,253,209,148,201, 88, 27,229, 80,212, 41, 74, 78,124,115,220,221,203, +110, 10, 22,146,205, 66, 65, 26, 5,164,142, 5,100,156,238,231, 45,210,180, 64,154, 21, 76,213, 18, 48,186,134,179, 13,116, 91, +117,138,120,102,182, 75,149,196,157,174,181, 38,226, 54, 37,199,187,190,149,103, 45, 4, 18,182,179,165,105,182,214, 0,117, 99, +110,247, 22, 48,198,199,208, 21,120, 25,137,117,244,250,242,136,127,166, 51,196, 67,201, 36,234,122,180,209,208,186, 69,219, 52, +112,206,192, 57,131,178,215, 71,127, 48,140,128, 26,103, 29,218,182, 70,181,154,115,113, 34, 35, 6,245, 45,194, 88,232,210, 61, + 98,144, 84,248,143,146,114, 77, 64, 7, 74, 90, 76, 18,158,188, 72,238,154, 69,103,235, 11, 97, 37,174, 91,107, 70,205, 3, 43, +227,133, 16, 49,213, 79, 73,196,233, 39,233, 42,232,146, 83, 44,122, 3, 11,182,140, 54,113, 12,111,173, 99,206,198, 90, 12, 54, +119,172,193,190, 28,196,104,105,154,196, 21,104, 88, 27, 90,227, 98,132,117, 96,186,171, 68, 69,219,163, 35,172, 38,233,191, 90, + 29, 45, 96, 96, 1, 98, 32,126,146,235,163,179, 46,166, 89,194,231,177, 96,202, 28, 5,105,137, 56,213,232,196,147, 97, 39, 79, +103,106,167, 79, 8,159,113, 68, 11,180,165,241,126,244,205,175, 9,248,194,234, 34, 80, 2,215, 34,175, 61, 3,160,186,162,179, + 3,205, 36,172, 37, 9, 5,222, 26,178, 38,138, 92,165, 72, 24,190, 35, 99,242, 81,151,209,206, 58,138,191,250,244,222,207, 67, + 46,113,144,243, 91,103, 35,114, 15,162, 27,137, 88,235,208,182,148, 25,109,157,231, 64, 18, 98, 66, 39,172,118, 5,128,182,165, +234,190,105, 26, 78, 54, 18,209,167, 76, 20, 53, 19, 31,148, 32, 32,171,171, 21,154,198,224,189,143,222,195,124, 50, 99, 62,188, +140,251, 49,218,245,231,108, 21, 32,138, 93,240,248, 89, 30,125,132,224, 2,218,123,119,227,109,185,198,128,167,145,160, 68,171, +187,176,135, 32, 12, 12, 34,158, 80,120, 0,158,249,214,134,217,239, 20, 66,226,217, 27,218,212, 45,217,225,140,161, 67,128, 71, + 78, 49, 88,129, 71, 63, 73,150,162,236, 23, 72, 57,219, 58, 60, 84, 70, 91,198, 72,130, 15,220, 36,142,168, 0,143,213,178,166, +177,187,181,204, 67,166,170,175,105, 90, 54,224,128, 31,228, 36,238,151,116,211,114, 92,172,139,175,175, 44, 11, 56,107, 48,187, +156,162, 63,222,196,214,238, 38,170,197, 2, 70,183, 88,206,166, 56, 59,190,192,246,193, 33,110,222, 57,196,197,233, 5,163, 34, + 83,228,236, 54, 8, 48,145,166,170, 80,215, 26,163,241, 8, 73,154,226,240,214, 1, 22,147, 9,166,231,151,240,182,198,100,178, +196,230,238, 62,174, 92,219,133,119, 30,147,139, 37, 38,199, 47,161,155,138,149,164, 22,214, 1, 66,229, 40,251, 37,138, 34,199, +246,254, 46,202, 66,162, 63, 28,226,244,213, 43,100,121,142,159,253,245,207,208,182, 6, 79, 30,190, 64,150, 37,216, 61,216,131, +105, 91, 88, 43, 81,246,115, 0, 10, 82, 2,101,153,227,242,244, 18,109,107,240,244,155,111,241,237,239,191,192,237,247,222,199, +157, 15,223, 71,219,104, 92,158, 77,112,126,116,130, 44,245,248, 15,255,211, 95,227,226,232, 4,175, 94, 92, 98, 53, 57,193,171, + 39, 79,241,233, 31,255, 49, 30,253,254,107,204, 46, 78, 48,218,189,141,209,214, 8,239,188,119,128, 0, 99, 66,210, 67,191, 84, +216,191,117, 11,207,191,125,142,217,197, 4,203,217, 2,121, 89,162, 28,239,162,109, 29, 94, 63,254, 14,111, 30, 61,192,236,236, +136, 52, 10, 69,129,157,221, 13,108,108,111, 34,239,245,160,219, 22,151,199,199,184, 60, 61, 66,189, 92, 0, 34,193,112,115, 7, + 27,219, 59, 40,251, 61,180,154, 4, 64,214, 81, 38,194,114,122,137,102, 69,163,118,201,194, 47,201, 46,142,178, 63, 32,242,159, + 12, 23, 85, 26,237,151,193, 67, 75, 98,182,150,221, 39,154, 71,207, 25,146, 52,193,104, 60,194,104, 99, 3,131,225, 0,253, 97, + 63,218, 99, 2,117, 48, 68, 1,207,102, 75,180,173, 70, 83,119, 2,204,112,248, 74,118,151,208,202,206,241,116, 73,173,141, 51, +213, 91,118,172,144,193, 16, 14, 46,207,123,195, 40,146, 82, 20,220, 67,151,165,130,214, 52,213,169, 86, 11, 88, 83,195,232, 38, +178,174, 3,218, 54, 60,179,214,146, 29, 44,142, 47, 37,251,169, 5,214, 14, 75, 64,202,148,133,178, 89, 44, 50,194,121, 22, 58, + 98,183,134, 87, 37,245,187,125,139,203, 30,132,118,105,146,178, 98, 62,116,191,142, 67, 67,248, 28,224, 66, 69,183, 13,156,163, +117, 68,175, 55,164,181,159, 74,226,216,189,169, 43,104,221,242,104,223,199, 2,129,205,120, 76,196, 67,140,123,117,145, 1,176, + 54,162,231,137,133,146, 9,178,172,224,212,194, 36,122,201, 37, 67,189,104,247, 43,161,117, 27, 71,150,138, 47,235,224,217, 22, +188,131,151, 2,113,255, 28, 4,194,193, 69, 32,197,250, 72, 57, 96, 83, 37,175, 51, 4,210, 60,143, 83, 5,106,116,194, 94, 94, + 70,168, 17,157,193,235,191,191,142,135,223,217,189,214,232,110, 66, 34,225,181, 77,224,237,119,156,119, 2, 38,121, 22, 97, 2, + 36,148,203,178,148,166, 2,252,243, 73,142,166, 38,221, 9,133, 24, 17,194, 88, 68,181, 58,216,203,174, 98,247, 46,214,130,116, + 34,234, 39, 6,174, 56,214,126, 5, 91, 36, 21, 11, 62, 42,254, 59,193, 99,199, 81,232,120,239,161, 1,166, 51, 58,156,177, 16, +190,179,182,133,116,190,168,222,239,148,248,240, 93, 32, 82,224, 42, 4,199, 20,224,145,208,129,160,216,159,232,227,152, 73,107, + 67,111,132, 20,252,129, 34,191,180,148,114, 13,106, 17,248,198, 46,190, 65,121,158, 65,240, 62,189, 93, 53,104,155, 26, 66,130, +115,112, 37,140,145,172,234, 37,120, 69,194,236, 96,231, 4,166, 23, 23,248,253,175,151,248,248, 7, 31,226,197,163,199, 56,122, +117, 2,159, 18,132, 36,236, 87,156,163,142, 82,176, 31, 62, 84,216, 90,211,133,103,195,190, 90, 8, 20, 69,134,214,121,254, 62, + 4,123,161, 93,185, 68,150, 37,107,108,117, 21, 45, 20,212,245,155,248, 65, 51,198, 68,107, 90,107, 52,211,182, 26,194,109,166, + 60, 38,226,106, 84, 70, 10, 18, 21, 61, 65,252, 35, 4,225, 93,179, 60, 35, 69,121, 47, 71, 83, 53, 88, 46, 42, 30, 5,185, 88, + 48, 72, 9, 52, 77, 75,254,237,182,141, 29,191,146, 68,111, 11, 97, 53, 77, 93, 83,120, 1,167,192,209,184,150, 3, 47, 82, 5, +173, 61, 63,144,146,173, 97,244,187, 58, 63,122,131,172, 28,226,198,221, 59,120,253,228, 49, 39, 21, 89,188,126,242, 8,211,241, + 14, 62,253,241, 15,240,251, 95,254,154,226, 53,185, 66, 77, 18,138,133,244, 0,172,174,113,250,230,152, 1, 62, 35,188,255,217, +247, 80, 45,230,120,253,236, 25, 76, 61,195,147,111, 30, 98, 56,254, 28, 59, 87, 54,112,126,124,142, 79,126,248, 61,252,227,255, +253,183,212, 1, 58, 11,143, 4,206,232,184,159, 19, 2,216,187,186,135,172,200, 49, 28, 15,240,254,247, 62,196,238,213, 93,252, +211,127,249, 37,154,166, 1,196, 0, 89,150,224,244,104,130,131, 27, 87, 49,189,152, 67, 72, 2, 28, 37,194,224,205,203, 51, 12, +199, 37,126,249,247,127,135, 94,127,128,155,247,238,161,105, 28,142, 95,188, 66, 81, 22,104, 86, 51,252,213,255,240, 23,248,234, +151, 95, 96, 62,175,177,119,176,139,175, 31,124,131,143,254,232,143,240,240,139,175,208,174,102,184,118,247, 3,136,116,128,187, +247,118,169,200,114, 30, 50, 31, 96,123,123,132,180, 40,113,118,116, 10,149,230,176,190,197,217,241, 37,206, 95, 61,130,109,102, +113, 79,221, 27,237, 96,180,189, 7,149, 80,241,150,101, 41,166,231,231,152, 95,158, 97, 57,187, 36, 91,147, 21, 24,108,108, 97, + 99,123, 7, 73, 94,192, 26,139,166, 49,208,218,193, 57, 13,221,172,208, 86, 43, 22, 67,178,245, 47, 85,200,203,140,159, 79,197, +249, 82, 93, 7, 98,121, 52,106,184, 19, 8,148,194, 64, 4, 27, 12,169, 59, 84, 73,138,140, 73,133,161,240,180,142,166,108, 82, + 73,212,117,131,166,110, 40,203,189,169, 33, 32,248, 89, 87, 8,124, 23,203,187,239, 16,195,170,148,130, 89, 3,200, 4,159, 78, + 56,244, 73, 12, 69,207, 56, 77,104,152,197, 13, 27, 19,255,138,178,207,187, 90, 18, 69,105,173,209,182, 45,172,174, 88, 17,206, +186, 30,107,162, 29, 48, 48,191, 29,143,205, 41,132, 73,178,162, 92,112,114, 24,251,168,249,107, 11,149,240,107, 15,135,122, 18, +161, 45, 97, 39,171, 34, 96,133,192, 91,218,120, 30,149,130,199,238, 4,177, 10,235, 11,250, 26,157, 38,198, 59,178,179,133, 67, + 24,220,225,229, 69, 31, 69,175, 68,202, 54, 49,195,200,235,186, 94,242,101, 67,194, 90, 47,125,196,224,134,137,103,128,225,184, + 53,222,119, 92, 35,132, 92,122,120,158,134, 74,214, 18, 73, 4,203,146,181, 38,218,212,130, 10,223, 58, 19,255, 92,152,116,168, + 36,141, 25,222,206, 57, 4,205,182,226, 80, 43,193,221, 96, 56,115,165, 96, 95,123,196,222, 58,200, 36,227, 54,212,137, 20, 0, + 0, 32, 0, 73, 68, 65, 84,132,179, 48,153, 9, 43, 32, 25,109,196,105,158,116,162,184, 64,145,227,104,101,176,210,221,123,250, +158, 68,221,244,200, 50,210,132,196, 88, 81, 5, 88, 72, 72,203,193, 46,169,130, 1,119,199, 94,198, 66,210, 26,139,172, 72, 89, +216,109, 1, 39,161,148,103,109,133, 90,179, 8,242,142, 89, 3, 70,251,152,214,230,121, 85, 40,164, 66,154, 10, 82,215, 71, 24, +146, 65,154,210, 26, 70, 41, 17,103,223,222,185, 24, 29, 30,120, 11,158, 19,214, 52, 55, 90, 74,137,206,229, 33,101,164,222, 1, + 30, 54, 76, 61,224, 99, 83,234,215,162,171, 59,170,157,231,226,166,187,216,195,107,161, 78,253,179,251, 63,119,220,250, 75,165, +128, 53, 27, 74,164,169, 57, 31, 85,240,214,145, 66, 62, 50,125,165,228,176,150, 28,105,158, 34, 77, 51,174,182, 29,172,209,208, +218,196,232, 58,197,226, 15,165, 36, 7, 77,128,209,178,158, 15, 41, 11,107, 53,222,188, 56,194, 59,239,223,195,106, 49,163,135, +220, 6, 86, 59,141,174,210,148,186,234, 0,176, 65,136, 52,140, 70,124,207, 16, 40,201,182, 20, 17,217,216, 93,210, 93,103,101, + 17, 12,232, 8,222,206,132, 59,108, 58,144, 12, 7, 26,208,179,162,181,137, 59,241, 36,149,100,107, 99,191,119, 40, 48,140, 89, + 31, 79,186, 46,160, 70,116, 21, 92,209, 43,137, 83,156,165,221,206,139,193, 34,186,105,249,112,119,208,198, 64, 8, 31,109,115, +129, 56,151,176,218, 52, 73,187,239, 45, 98,199, 96,217,142,151, 32,205, 11, 86,210, 19,238,209, 90, 15,221,172,112,113, 58,193, +193,205,155,200,243, 4,245,138, 48,163,109,189,196, 98, 78,227,120, 88,141,229,108, 1, 33,169, 0,138, 1, 16,158, 70,193, 77, +181,130,247, 18, 59, 87,246,176,181,187,137,217,229, 57,170,197, 12, 42, 45, 88, 39,144, 35,203, 37,246,174, 29,224,217,215, 15, + 99,129,146, 23, 61, 36,105,129,114, 56, 68, 81,228,216,216,222,194,198,230,128,210,226, 36,112,243,189, 91,104,107,131,135, 15, +158, 33, 77, 19,148,189, 30,198, 27, 61, 76, 39, 21, 54,183,199, 56, 59,153, 32,205, 82,140,199, 57, 30,252,230,107,236, 93,187, +138, 95,253,221, 63,224,226,244, 8,127,244,151,255, 30, 16,196, 28,104,170, 6,171,217, 5,254,234,127,252,115,124,245,203,223, +227,233,183, 79,240,238,199, 31,226,249, 55, 95,227,206,135, 31,224,219, 47, 30, 64, 9,135,155,247, 62,128, 21, 61,220,186,181, + 73,218,140, 34, 67, 90,150,216,189,186, 7, 33,115,188,120,242, 26,143,190,122,136,175,127,243, 5,142,158, 62, 66, 53, 61,129, +211, 43,210, 8, 8,137,225,214, 1,246,111,220,134, 76, 83, 12,198, 99,140, 54, 7,152,157,159,226,232,217,183,152, 93,158,195, + 56,137,180, 24,226,234,205,155, 24,109,109,195, 11,137,166,110, 88,192,214, 98,122,126,142,213,108, 26,249, 14, 89,145, 33,205, + 82,100, 25, 9, 38, 3,221, 13, 60, 38,148,124, 89, 17, 1,204,243,123,157, 32,205, 72,136, 88,246,123, 40,202, 2,101,175,135, +193,104, 64,132,177, 60,237,116, 36,137, 66, 83,183,252,223, 26,171, 85,133,197,108, 73, 17,186,214,194,104, 13,173, 45,175,130, +212, 91, 0, 18,240,243, 79, 43,174, 54,118, 59,145,104, 38, 3,125, 75,198,103,147, 62,183, 34,138,195,104,252, 95,160,236, 15, +160, 84,202,221,182, 70, 93, 87,168,171, 37,116,187,130,179, 6,218,104, 14,126,210, 72,146,140,120,245,174,243, 49,203, 53, 43, +143,228,115, 42,244, 69, 9, 39, 64,134, 41,163,224,110,177,139,190,244,113,138, 17,166,147,142,139,255,160,253, 96,150,110, 76, +125, 11,157,155, 82, 20, 85, 27,166,140,134,207, 3,186,120,232, 34, 13,151,104,146, 36,216,216,220,142,161, 39,214, 26,198,251, +206, 98,209,132,152, 35, 47, 98,199, 28,208,182,235, 64,216, 32,156,147, 82, 34, 77, 50,222,111, 43,162, 16,230, 57,148, 10,221, + 41, 23, 28, 60, 82, 15,190,237, 16, 25, 27, 46,111, 17, 38, 31,220,201, 10,129,216, 96, 73,238,146, 3,170, 85,112,148,233,186, +222, 34, 52, 67,137, 82,113, 90, 24,145,220, 74,197,176,171,160, 75,144, 74,198,207,148, 7, 11,144,215, 44,101, 73,188,236,192, + 64,154, 46,192, 37, 32,190,131,203,200, 51,163, 35,136,232, 18, 14,136, 81, 28,227, 27, 40,118, 0,117,249,130, 61,224,244,236, +168, 14,108,198,211, 34,103, 44, 28,199,119,119, 25, 55,226,173,207, 25,193,176, 4,167, 70,118,239,147,228,105, 71,180,197, 5, + 15, 62, 23, 53,225, 57, 16,107,112,156, 88,160,189,229, 32,241, 29, 74,214,117,126,123,210,123, 8,158,164,119, 92, 2, 90,169, + 81,215, 46,217, 58, 23,154,114,245,151, 31,191,247,243,144,172, 19,196, 56,142, 67, 8, 8,191,199, 30, 70,134, 75, 68, 38, 45, + 13, 59, 98,114, 77, 94,228, 16, 50,137, 17,170, 84,113,235,168,116,165,209, 92,231,181,107, 27, 13,163, 45,199,245,117, 73, 52, +129, 96,246,250,229, 17, 62,250,252, 19,156,188, 57,226, 29, 49,209,173,130,153, 31,222,198, 12,224, 64,125, 11,222,109,242,226, +166,145, 54, 21, 73,108, 65, 1,202,190,221, 48,106, 11,200,215,240,161,164, 48, 2,102,112,115,170, 16, 21, 5,238,109,127,174, +243, 81, 89, 76, 20, 41, 77,217,232,188,102, 48,173,137,241,123, 70,155,136,141, 36, 59,134,129,115,130, 59, 8,137,170,106,217, +135,142,232,157, 79,178, 4, 9,143, 46, 35,144,197,119, 99,119,126,239, 33, 3,221,142,127, 7, 89,150,240,200, 43,101,191,163, +140,170,232,182,213, 52,178,242, 14,147,243, 11, 12,183,182,177,181, 61,198, 98, 58,229,223,173,197,233,209, 57,246,111,220,198, +214,206, 8,147,179, 11, 38, 85,209, 69,227,173,142,175,127, 62,153,160, 24,110, 96,255, 96, 23,253,225, 0, 23,199,199,104,235, + 6,253,209, 24,189, 94,129,171,183, 14,113,122,116,137,221,253, 77, 28,191,124,137, 52,205,144,230, 5,178,178,143,178,236, 99, + 56, 30,160, 28,244,177,185, 61, 66,209, 43,177,179, 55,194,112,123,140, 63,252,250, 27, 44,230, 53,146, 68, 98,255,112, 15, 74, +210, 8,121,114, 62,129, 67,138,225, 48,131,105,150,152, 76,106, 56,221,224, 23,127,255,223,112,239,211,239,161, 28,108,162, 63, +218,192,233,235,215,184,125,247, 58,126,242, 23,159,227,241,131,239,240, 47,255,207, 63,224,179,159,253, 12,245,236, 2,227,221, + 61,188,248,238, 49,198, 27,125, 92,123,247, 46,102, 43,129,237, 13,133,141,173, 1,146, 52,161,228,179,172,143,227,151,167,248, +195,175,126,131,239,190,248, 18,147,179,115,138,194,116, 45,224, 90, 8, 1,140,119,246,112,251,195, 79,177,177,127, 21, 69,175, +132,146, 10,109,181,196,197,209, 49,166,147, 25, 21,190, 73,142,157,131,107,216,222,191, 2,161, 82,180,154,156, 24,198, 58, 44, + 39, 23, 88,205, 39, 16,222, 65, 42, 32,205, 51,148,172,173, 8, 43,162,136,230,148, 29, 35,155, 28, 18, 57, 79,124, 74,244, 6, +125,244, 6, 67, 66,122, 38,157,229,134,124,182,116,112, 6,161, 91, 85,213,168, 86, 53,150,139, 37,218,150, 62,111,142,253,188, + 66, 72,180, 60,233,113, 28, 91, 42,100, 39,152, 10,221,177,110,219,183,192, 31,164,248,237, 86, 70, 73,150, 70,198, 69,228,119, +115,131, 80,244, 74,148,189,126, 92,189, 57,103,209,182, 13, 86,203, 57,150,179, 41, 44,219, 81, 67,244, 46, 9,133,152,183, 46, + 21,137,149,100,200,244,102,235,152,239,186, 88,186,120, 85,156, 72,120,116,207, 87,244, 61,115,128, 76,236,202, 89,252, 27,248, +223,206, 59, 74,253, 90,227,170, 7,191,179,247,130,249,247,244,191, 65, 44, 72,151,185, 69,221, 52,244,215,134,120,227,101,217, + 71, 89,150,200,242, 12,150, 29, 65,213,106,133,138,109,137, 65, 85, 30, 83,216, 56, 35, 35, 73, 82, 30, 99, 73, 30,139,171,248, + 26, 67,234, 93, 71,145, 83,200,243, 2, 9,243, 5,194, 94, 56, 52, 15,193,118,103, 35, 3,157,116, 82,235,255,190,231,117,155, +148,130, 5,128, 29, 7, 36,184,136,194,254,154,233,167,252,254,178,226, 61,114, 77, 4,239,161, 69, 44,138, 60, 11,146, 19,166, +112, 26, 75,141, 76,128, 22,133,140,145,112,223,208,185,106,163,126, 34,122,212,215,114,198,233,226,103,183, 19,175, 86, 83,214, + 76,209,159, 67,167, 11, 34, 91, 87, 20,134, 6,219, 30, 53,153,178, 19,107,242, 62, 59,144,241, 98,248, 25,251,245, 41,163,193, +133,212, 19, 64,120,182,214,137,104, 39, 77, 88,157, 31,236,126,240, 29,254,188,163, 24,250, 14,159, 27,214, 14, 2,111, 21, 25, + 1,158, 20, 98, 94, 41,205, 77,198,105,140, 16,201,218,103,231,237, 61, 61, 0,168,127,255,189,123, 63,199, 26,140, 31,108, 83, + 8, 86,136,240, 67,173,135,144, 88,235, 57, 37, 38,196, 29, 10, 56, 47,162,208,139,160, 51, 76, 47, 98,184,125,224,164, 19,176, +223,197,108,218,136,109,236,214, 87, 52,246,214, 45, 46,206, 38,248,252, 39,159,225,248,245, 17,140, 37,208, 10, 89, 36, 4,218, +166,129,224, 72, 69,165,100, 4,222,199,196, 37, 17, 34, 34, 13,117,242,198,194,114,156, 97,168,120,194, 1,145, 36, 50,142, 23, +157,247,240,150,160, 49, 97,213,224,215, 42,229, 16, 74,211, 54,154, 14, 56,126, 88,155,186,161, 67,210, 57,190,208,201, 14, 6, +143,248,207, 40,235,156,124,190, 77,163,185, 75, 97,241, 88, 78,151,166, 99,161, 4,141, 93, 68,215,161, 51, 66,209,178,205, 66, +183, 6,101,191,232, 48,142, 28, 82,227, 25,163,153,102, 41,137,239,242,140,198,184, 28,105, 27,198,247,214, 16,249,106, 62,185, +132,245, 9, 14,111,221,128,110, 27,202,183,118, 6,243,203, 75,164,229, 24,239,125,244, 46, 46,207, 46,224,217,166, 67,156,125, + 7,235, 20, 18,233,225,156, 64, 90,148,216,218, 25,163, 55,232,227,236,245, 75,168,180,196, 96, 52,194,104,107,147,247,123, 41, +102,231,103, 76,126, 74, 33,100,138,188, 71,107,136,225,198, 8,227,205, 17,250,195, 30, 18,229,225,173,199,111,254,249, 43, 8, +149,161, 63,200,176,119,176, 3,173, 29,246, 15,183,112,126,182,132,181, 14, 7,135, 27,248,250,183,223,224,240,206, 77,124,245, +203,127, 67,219,180,120,255,179,207, 80, 55, 2,195, 81,142, 44,203,240,241,231,239,224,252,232, 12,255,231,255,252,191,225,253, + 31,252, 16, 91, 59, 27, 72,211, 28,167,175, 94, 97,255,234, 46, 6,155,187, 56, 57,173, 80,164, 26,251, 87,119, 80, 14,199, 48, + 46,193,217,217, 10,213,228, 18,175, 30, 61,194,201,155, 83,212, 53,197, 96, 38,146, 32, 74,189, 65, 15,215,222,189,143,119, 62, +249, 30, 54,247,247,208, 31, 14, 80, 47,231,120,254,245, 3,188,121,254, 20,117, 99,145,100, 57,198, 91,219,216, 63,188,138,162, + 63,132,245, 2,121, 73, 66, 45,167,107, 84,179, 11,152,182, 33,247, 69,153, 33,205,115,190,204, 21,243,197,179, 40,112, 75,210, +140, 58,240, 94, 15,253,193, 0,189, 65, 15,227,141, 49,146, 52, 67, 94, 20, 49, 50, 85,107,205,162, 54,214,128, 52, 13,234,170, +198, 98,190,192, 98,190,192,124, 54, 39, 72, 81,204,225,150, 49, 60,137, 66, 41, 92,100, 62, 52,220,133,147,239,150,159, 47,185, +246,112,138,181, 98,217,117, 74, 98, 33, 9,100, 19,172, 81,222,131,114, 12, 84, 66, 41,115, 44, 46, 19, 18,168, 43, 42, 46, 86, +139, 41,234,106,249, 22,225, 44,140,197,169,227,167,174, 59,240,198,131,131,130, 16,206, 6, 82, 38,177,112, 13, 99,101, 33,232, + 34,207,152,144,153,132,131, 26, 29,150, 57, 64, 87,130,127, 63, 8,173, 92,164, 92, 82,244, 40,173,223, 28,143,253, 85,236,208, + 35,159,157,247,240, 36,112,162, 68,194,209,198, 24,195,209, 8,189,126,159,166, 36,108, 55,213,218, 96,181,154,195,152,150,187, +116, 25, 87, 26, 88, 11, 60, 10,205,136, 74,210, 24,152, 18, 19,227,184, 32, 10, 62,116, 41,201, 46, 26,172,137,225,207, 6,145, + 91, 72,105, 19,204,157,151, 81, 96, 23,194,118, 4,217,251,164,228,125, 50,226, 74, 35,101, 54, 6, 21,117,116,193, 5,134,121, +152,230,166,108, 11,139, 22, 70,182, 49,135, 88,109,239, 61, 57,160, 2, 60,134,187,246, 0,247, 10, 14, 43, 56,191,198, 95,231, +207, 29, 59,133, 20,211, 67,193, 0, 24, 21, 73,129,157, 72, 76,112,240, 9,229, 87, 36,107,220,116,178,105,147,245, 90,196, 53, +169, 15, 43, 82, 41,223,186, 15, 16,217, 3,134, 87, 90, 54, 22, 67,129,244, 38, 85,128,147, 37,107,107, 9,172, 9, 84, 93, 12, + 97, 9,194, 83,193, 95,179,203,169,247, 81,247, 68, 77,167,141,240, 25, 31,138,169,184, 14,151,107,137,127, 60,149,224, 6, 60, + 60, 55, 65,191,224, 1, 36, 97,143, 76, 23, 51, 85,222,150, 5, 48, 66, 42,120,211, 81,210,188, 1,224,108,180,112,208, 78, 78, + 49,238,208,243,168, 61,143, 99,136, 80, 37,183,124,128, 5,118,123,128,219,228,121,138,182,181,252, 11,202,226,139,247, 44, 68, +168, 87,115, 60,248,221,183,184,255,241,251,120,240,197,195,184, 14,168,235, 22,222, 58,184,186, 69, 89,230, 81,101, 24,114,124, +243, 60,225, 75,151,128, 26,228, 21, 5,127, 16, 61,146,132,118,248, 33,109, 39,218, 90, 18,234, 18,180, 51,104, 27,141,182, 17, +156, 78,231,226,197,158, 21, 25, 18,235,121, 52,175, 97,195, 46,138, 71,122,186,109,163,250,215,121,162,206,101, 44,142,131, 79, +161,148,131,214,154,236, 72, 10, 40, 10,234,176,116, 75, 86,140, 81, 49,132,209, 26,139,249, 2,166,213,113,236,231,215, 18,165, + 76, 75,233,106,245,170,134, 74, 9,107,216, 27, 80,114, 87,154, 1, 90, 39,236,149,183,157,110,128,187,166,178,228,176, 25, 67, +147,140,182,110,177,156,156,225,121, 93, 97,239,240, 16,205,242, 18,211,203, 9,146, 4, 88, 92,158,224,241, 98,137, 15,127,248, +125,124,243,155,223,162, 94, 46,209,212,164,103, 72, 83,234,132,230,151,231,152,158, 21, 72,147, 93, 92,189,121, 3,203,233, 12, +143,190,126, 12,113,231, 38, 22,211, 57,180,118,216,216,222,196,251,159,127, 15,255,250,183,127, 31, 47,130, 94,175,196,120,163, +143, 44, 85,209,167,122,113, 50,229, 93,189, 65,191, 55, 64,209, 43,176,177, 53,192,108, 90,209, 7, 91, 41,228, 9, 96,218, 10, + 50, 43, 33, 4,101,186,127,254,211,159,224,226,108,134,235,239,222, 70, 53,155,224,240,250, 14, 38,103,151,248,143,255,235,255, +129,253,107, 55,241,206, 7,239,193,180, 45,206,207,222,224,224,250, 1,156, 87,184,156, 25,236,239,245, 48,222,222,132,245, 2, +203, 69,131,186,177,176,245, 2,199,111,142, 81,173, 26,234, 6,157,129, 18, 22,105, 34,177,127,235, 14,250, 91,123,200, 7, 99, +100,101, 15,186,105,112,244,236, 25,158, 61,124,136,182,174, 33,100,130,225,120, 3,123,135, 7, 40, 7,189,152, 92,166, 26,131, +106, 49,199, 98,114, 1,163, 27, 40, 37,209, 27,246, 98, 80, 4, 29,132, 2,121, 89,210, 52, 35, 75, 33,147,148, 87, 67, 9, 83, +170, 2,186,217,163,105, 73,164,105,180, 70, 83,215,104,234, 6, 85, 85, 97,181,172,208, 54, 13,235, 97, 36,143,196, 19, 70,136, +210,133,209,237, 30, 73, 80, 68, 19, 38, 27, 15, 5,173,117,236,186,105,164, 41,214,242, 26,152,210,230,201,202, 89, 85,134,159, + 41, 23,161, 37, 65,253,222, 47,250,145,194, 38, 5,120,221,230, 24, 50,180, 66, 91,175,208,182, 13, 5,139,240,165, 70, 69,183, +103, 65,156,139,118, 35,201,156,118, 26,115,202, 40, 14,164, 75, 95,177,210, 94,198,104,102, 82,167,103,176,204, 88,232, 60,190, + 12,218,114, 93,202,153,144, 18,112,150,162,153,215,186, 24, 41, 84, 76,148, 4,119,226,196, 6, 95,183,199, 10,142,122,165,203, +101, 52, 30, 97,123,119, 59, 82,210,170, 85,133,166,174,163, 99,160, 90, 45, 81,215, 21,251,239, 17,109, 74, 88, 19, 86, 9, 65, +156, 3,203, 13, 65,135, 49, 85,241,194, 94, 7,228,164, 89,142,162, 40, 34,165,142,132, 95,221,159,243, 76,203,164,156,136,183, +131, 83, 66, 81, 34,208,117,247,244,125, 68,164,124,250, 32, 50,230,182, 82, 55, 84,240, 89, 4, 66,160, 65,209, 75,227, 94, 95, +196,236, 13, 68,123,161,230,192, 47, 99, 44,178, 76,198, 29,176,103,191,187,140, 14, 15,207, 83, 81,221,121,195, 57,204, 42,161, +192, 4, 10,113,225,215,104, 13, 17, 6,147,132,166, 38, 42,205, 35,138,151,214, 66,136,209,225,142, 83,247,188, 99,151, 23, 73, +213,161, 50, 82,240,211,180, 94, 1,158, 84,229,164, 98,167,207,175,110,216, 39,175,212, 90,116,111,202,202,127, 74,103,247, 96, + 32, 18,211, 89,101,128,204,128,172,120,193,229,224,157,141,214, 60,138,130,181,177,232, 2,243, 71,226,215, 18,146,223, 11, 9, + 48,216, 6, 80, 72, 56, 35, 36,120,238,125,200,228,241, 14,176, 64,146,164,105,103, 33,123, 43,252,132, 66,215,141,145, 12,141, + 65, 84,136, 74,239,121,199,173,162,133,204, 89,131,213,146,252,184, 25,143,227,225, 45,154,138,144,151,186,109,209, 31,244, 96, +141,229, 44,111, 10, 82, 0,108,167, 48,101,113,153,136, 33, 2, 22,151,167, 71,216,220,217,193,104, 60, 68,211,180, 40,138,140, + 59, 86,139, 44, 73, 99,106,148, 99,133,160, 74, 84,236, 72,228,218,248, 48, 91,131,200,180,141, 65,146,102,113,188,232,156, 67, + 94,228,188, 11, 39,202, 87,216,187, 47,231,154,223, 60, 25,247,154, 1,170,161,188,143,182, 50,147,104, 26,239,120, 27, 71,157, + 33, 20, 38,120, 38, 61,175, 5, 72,136,168, 1, 77,111,120,238, 67, 68, 34,197,133, 74, 73, 56, 82, 82,201, 54,104,235,102,109, +245, 1,120,225,209,212, 13,178, 60,131,240, 14,121, 89,196,202,158,128, 25, 13,113,135,185,144, 18, 0,178, 60,141,171, 6,107, + 45,178, 34,135, 53, 6,131, 97, 31,214, 88, 44, 23, 21, 38,167, 71, 24,110,237,224,206,253, 29,188,122,242,130,185,255, 19, 60, +252,178,193,237, 15, 63,198,229,209, 43,188,126,246,130,185,225, 18, 89, 57,128, 51, 26,213,114,133,211,215, 39,104, 55,199,184, +253,193,125,204,167,115, 28,191, 58, 70, 57, 28, 97, 48, 30,194,122,137,221,107, 55,112,237,246, 13, 76, 39, 43,140, 54,183,176, +177, 61,130, 82,138,236, 82,134, 24,229,163,173, 49,126,251, 79,191,139,187,175,162,215, 99, 27, 23, 48,155, 17,247, 96,115,187, +143, 71, 15, 30, 97,103,111, 27,147,211, 83, 92,189,117, 3, 77,109, 48,216,216,194,181,155,187,104, 86, 3, 56, 83,227, 95,254, +246,159,209,182, 26,127,250,103, 63, 69,154, 38, 88, 92,156, 98,115,103, 19, 85,101,224, 85,142, 59,239,238, 98, 54, 89, 96,181, +172,113,245,230, 21, 44,230, 45,218,203, 83,232,122,129, 52,241, 56,157, 92,194,182, 21,242, 76, 98,247,224, 0,219, 7, 7,112, + 72, 96, 29,137,126, 22,211, 25, 46,142,142,112,246,230, 13,138, 94, 15, 27,219, 91,232, 15,134,216,218,219,133,151,105, 92, 39, +173,230,115,218,153,155, 22, 89,166,144,164, 5,171,127, 5,185, 11,210, 20,189, 65,159,139,221,140,152,225, 12,159,161,144, 29, +139,229,178,134, 49, 22, 77, 85,195, 24, 67,169,127,198,193, 90,205, 59, 95, 62, 24,216, 27, 78,147, 24, 7,175,136, 51,175, 84, +178,214,141, 18,191, 60,144,229, 8, 48, 18,128, 82, 34, 30,178,161,107,141, 93, 42,251,171,233,121, 51,168,170, 38, 78,215,194, +215,206,139, 2, 66, 40,244,250, 37,255, 60,134,159, 99, 13,221, 54,104, 27, 18,206,134,184, 73,163,117,204,121,160,221,183,136, +194, 84,178, 76,165,145,136, 22,187, 32,103, 32, 5, 11,196,162,246, 39,229, 91, 86,241, 69,201, 96, 41, 36,209,199, 31, 58,125, +218,141,170,152, 87,225,152, 38, 22,162,151,201,239, 31,118,182, 10,102, 45,135, 34,201, 72, 12, 71, 94,238,238,172, 12,214,212, +254,160, 71,218, 16,110, 30,136,223,223,237,111,155,166,130, 82,105, 36,244,117,148, 50,214,247,112,192, 84,244,187,175,229,185, + 99,109,205,208,141,197, 57,215, 62, 73, 72, 16,200, 69, 11,237,212, 45,159,175, 20,181,234,124, 23, 93, 26,134,176, 1, 45,154, +102, 93, 20,109,112, 42,132, 88, 81,143,144,112,166,162,224, 43,232,143,132, 36,123,100,152,218, 4,142, 1,130,191,159, 53, 12, +150, 49,177,224,120,106,107, 67, 99,229,160, 88,131,225,215,178, 50,194,251, 18, 18,217, 58, 49,164,132,204, 83,180,117,179,246, +251, 96,182, 61, 91,228,194, 36, 39,176, 18, 72,114, 37, 33,184,206, 17,158,197,108, 0, 84,145,145,163, 40,203, 34,184,198, 69, +126,136,138, 19, 27,165,100,180, 72, 67, 72,214,130,152,168, 57, 9, 59,243,208,177,135,226, 23, 76,140, 11,246,228, 68, 41, 88, + 62, 23, 4,200,147, 79,194, 87, 17, 87, 14, 60,217,231,176,165, 0, 14,226,137,144,103,147, 27,239,209,109,176,150, 70, 37,189, +132,148, 14, 73,194,185,199,224, 95, 54,249, 46, 85,252,101,102,121,142, 52,203,208, 54,196, 96,119,150,230,215, 52,134, 7, 95, +164,244, 3, 40, 37,226, 88, 33,100,130, 75,149,192,235,144, 0, 86, 33, 43, 10,134,176,240,155,190, 62,250,224,253, 70,162, 36, +124, 66, 92,116,107, 29, 94, 60,121,130, 79,126,240, 9,190,125,240,144,199,209,116,184,180,141,166, 46, 63, 37,161, 16, 97, 79, +243, 40,242,160, 85, 12, 43, 22, 61,199,167, 42,129, 44,167, 46,200,104, 7,149,208, 97,209,182,134,217,209, 44, 82,115,136,212, + 32,242,212, 90, 22,197, 72,222,173, 81, 5,152,229, 84,165,102, 69,142,188, 40,162,234, 49,205, 51, 88,163,177,156, 87,104,185, + 99,203,243, 20, 43, 94, 35,164,144,144,138, 58,249, 0,191, 8, 35,246,188, 8,113,168, 18,253,193, 0,121, 81,160,169, 43, 52, + 85, 77,147, 20, 67, 31,162,128,236, 52,134, 70,181,244,186, 36,202, 94,193,106,202, 54,146,237, 60,127, 16, 72,152,199, 0, 33, + 29, 40,124, 41,210, 60,135,213, 6,205,114,138,137, 29,224,230,123,239, 97,118,113,130,102,181,130,243,192,201,203, 23,216, 62, + 56,196,222,225, 21, 60,255,246, 41, 85,221,101, 31, 82, 0,171, 85,131, 52,149, 88, 44, 27, 12,198,125,252,224,207,127,134,135, +191,251, 10,105, 74,193, 30,205,106,133,141,157, 77,124,242,147, 31,226,193,175,190, 68,222, 27,112,150,178,224,152,202, 22,179, +203, 57, 70, 59, 3, 28,191, 58,129,177, 41,178, 44, 65,127,212,195,235, 23,103,216,218, 25,226,242, 98,137,188, 32, 34,158, 19, + 41, 86,243, 41, 38,103,151, 56,188,125, 19, 47,159, 95,224,243, 79, 14, 49, 59, 59,195, 96, 99,136,111,191,126,142, 39,223, 60, +196,191,251,239,255, 6,163,205, 17, 46,222,188,193,120,115,140, 55,175, 47,161, 93,129, 60,111,241,232,235,103,184,118,251, 0, + 87,111, 94, 65, 93, 25,204, 47, 46, 32, 92,131,182, 90,225,228,245, 17,140,174,177,119,120,128,157,131, 3, 8,149,226,252,108, +134, 36, 77, 48,222, 28,162,215, 75,177,154, 78,224, 76,139,253,195, 43, 68, 42,204,115,148,131, 1, 32,105,245,180,156, 47,176, +156, 92,192,182, 21,210, 44, 67,185,177,133,178, 44,144,100, 25, 31, 34,136, 22,207,186,106,177, 92,173,176, 90,158, 71, 84,176, +209,154, 45,161,212,173,212,117, 3, 99, 93, 76, 46,164, 60,121,206,195,118,224, 81,166,135,148, 38,122,214, 67, 81, 75,151,152, +142,212,170,206, 54, 36, 72, 80,186, 22,118, 65,251, 98,230,114,203,176,127,228,245, 22, 31, 58, 41, 19,236,116,171, 73,107, 81, + 12, 80,150, 37,156,167,201, 83, 44, 44,172,103,207,118, 13,107, 53,172,213,113, 55, 25,198,218,221,216,157,138,147, 48,150, 94, +107,245, 24,188,226,248,226, 74, 58, 53, 48,143,160,195, 8,156,162, 76,201, 30, 42, 65,175, 89, 34,129, 74, 68,180, 95, 97,109, +175, 25, 52, 52,129,251, 32,101, 71,174,116,222,147,115, 39, 0, 61,120,117,160, 98,182, 60,141,154,243, 34,103,161, 90,224,151, + 91,148,189,146,116, 11,220, 92, 56,231,177, 90, 46,153,191,207, 64,153,192,240, 94,203,255, 14,246,184, 78,231,208,237,197,229, + 26,120, 7,107,233,106,161, 96,203, 50,181,134,198,117, 17,134, 67,218,154, 12,186,173, 99, 76,167,146,178,163,172,241,138, 52, +229,177,121, 24,221, 59,211, 21, 30, 1,172,165, 91, 29,179, 1,156, 37,146, 32,161,136, 17,133, 93,173,182,200,242,188,139,121, + 53, 62,158,181,130, 11, 16, 10,240,242, 72, 21,253,158,195, 20,192,121,143, 60, 85,112,150,132,135, 33,130,217,219, 54,174,106, + 99,250,156, 49, 28,222,101,162,227,130,120,234, 18,206,120, 8, 56, 86,210,119, 14, 6, 90,173, 72,250,103, 82, 2,222,174, 5, +209,240, 10,196, 91, 8, 72, 88, 39, 32,133,139,221, 62,173,153, 77,196, 0,135,139, 62,124, 78,195,115, 27,147,232,188,130,148, + 62,238,216, 3, 86, 88, 8,188,197,247, 87, 82,174,165,230,137,104, 9,244,111,193,147,216, 22,168, 40, 29, 53, 56, 45,131,251, +193,175, 81,231,148, 74,144, 56, 38,192, 9,176,220,158,113,124, 20,210, 98,226,190, 77,169,132, 71, 80,129, 8, 69,244, 29,120, + 17,121,190, 33,254, 45,120,239, 22,154, 42,112,195, 59, 54, 82,172,115, 32, 75,162,224,180,231,206, 90,163,169, 53, 84, 42, 25, +176,210,137, 13, 72,225,219, 98, 54, 93, 97,103,119, 11,179,201,140, 39, 11,157,112,143, 58,202, 0,136, 48,200,178,156,247, 11, +172, 4, 79, 19, 88,227, 88,236, 99,225, 28,125,184,179, 34,133,209, 54, 10,129,140, 49, 28,218, 66, 80,126,239, 29, 67,110,104, + 44,233, 61, 96, 53,121,118,235,170,226,174,191,142, 94, 95,239, 8, 44, 67,169,107, 36,238,217,222, 43,209, 54, 58, 38, 36, 25, + 75,254,126, 99, 91, 0,130, 39, 4,196,134,150,140,185, 93, 45,150,200,242, 12,121,145, 17,117, 45, 85, 72,179, 2,121, 94, 64, +183, 13,234, 21,141, 89,133,148,104,235, 22,173,104,121,111,101,227, 97, 35,149, 68,154, 23, 48,203, 21,179, 3, 90, 56,107,104, + 61, 81,116, 0, 14,193,158, 76, 56,135, 52, 79, 33,141,131, 20, 45,206,143,143,176,177,187,143,141,109,139,203,179, 75, 56,231, + 49, 61, 59, 69, 59,220,192,187, 31,127,128, 55, 79,159,195, 24, 67,248,214, 84,161, 28,244, 81,207,231,168, 42,139,254,160,192, +221,143,223,199, 98, 78, 57,238, 69,191,135,163,103,175,112,227,238, 77,108,238,190,134,214,142, 47, 53,131, 86,107, 84, 75, 10, +191, 25,244, 19, 76, 39,115, 20,195, 45, 72, 37,145,101, 10, 23,167,115,140, 54,122,204,246,151, 56,126,122,140, 52,207,224,189, +193,120,123, 19,175, 95, 94,226,214,123, 55,241,230,201, 19,108, 95,217,197,252, 98,130, 95,252,221, 63,226, 71,127,254,167,184, +117,247, 22,230, 23,167, 72,210, 4, 23, 23, 53, 22,149, 66,181, 56,199,104,220,195,181,219, 87,113,120,115, 31,198,120,156,190, +124, 13,216, 10,139,233, 20,231,167, 19, 12,183,182,113,247,250,199, 16, 82, 97, 49,175, 97,150, 21,178, 60,193,112,212,199,238, +254, 6, 46,143, 79,176, 90, 44,176,185,179,133, 36,203,128, 96, 9,229, 64, 34,219, 54,232, 21, 9, 54,110, 94,141, 74,224,166, +105,161,181,197,124, 81,161,174,102,168,150, 21,103,110,147, 86, 33,192, 52,168,195,167,203, 94, 37, 9,154,186,165,221, 43,103, +159,219,224, 85,214, 52,134,164,194, 90, 5, 36, 70,180,161, 5,109,135, 84,138,120,240, 12, 14, 9, 26, 18, 99, 44,138,178, 32, +224, 7,239,229,169, 80,102,255,185, 34, 61, 71, 86,230, 81,253, 75,107,151, 20,206, 26,244, 6,125,128,133, 99,193, 58, 20,242, + 22,156, 53,168, 86, 43,178,237,213, 77, 20,200,134,142, 23,222,161,109, 26, 38,104,201,248,186, 67,179, 32, 21,189, 38,163,117, + 12, 84, 2,186, 84,172, 0, 13,161,195,152,187, 39, 14, 12,161,144,154,206,126,166,216, 74, 70,122,152,110, 39,239,177,150,120, +198,251,218, 96, 77,179,140, 99, 14,132, 47, 26,155, 34,166,151,245,250, 61,214, 8, 40,206, 51,112, 76,205,108,145,166, 25,166, +151, 51,172,150, 43, 98,114, 4,136, 84, 93,189,149,163,225,157, 3, 36, 40, 9, 50, 81,156, 88,198, 28,114, 15,186,156, 24,170, +163,184, 43, 91,199,136, 66,120, 62, 75, 85,244,178, 7,187, 91,232,168,215,113,166,148,110, 40, 98,142,184,227,240,143, 32,116, + 12, 90, 29, 37,137,211,193,115,100,238,230, 5,180, 53,220,200, 72, 78,225,203,216,162, 40,226,110,220, 57, 27,221, 56,158,221, + 74, 41,175,215,130,235,192,177,151,155,238, 63,186, 76, 77, 75,103, 97, 81,228,244,179,120,139,162,204,136,131, 98, 44, 23, 83, + 65, 72,230,227,179, 70,190,249, 52, 54, 82, 73,146,194, 90,205,147,138, 46,205, 14,222,194, 5,113, 89,152, 6, 72, 1,153,100, + 16,214,172,133,226,144, 70, 72, 40, 5, 8,187, 38,100, 22,252,217,180,220,140, 0,222,201, 40,214, 4,115, 0,156, 12, 43, 43, + 5, 33, 44,132, 80,104,181,137,252,123, 99,108,244,196,147,246,201,112, 17, 69,177,197,225,247, 73,207,175,136, 57,247,222, 3, +206, 4,248, 12, 89, 17,130,115,128,116, 6, 4,164, 33, 71,140,163,148, 54,149, 8,154,213, 39,221,232, 13, 97,231,230, 61,164, + 15, 42,111, 17,247, 71,222,123, 8,235,129, 64,161, 10,249,220,206, 34,168,233,179, 44,133, 51,170,163, 37,113,122,142,135,236, +198, 43,236, 45,180,206, 66, 88, 48, 27,221, 71, 27, 76,194, 30,242,231,143,159,227,238,251,239, 96,122, 57,101, 15,166,141, 95, + 67,200, 20, 42,138, 51,168,235,166, 49,132, 66,198, 97, 46, 89,158, 98,181, 88,161, 63,236,147,152,135, 71,119, 97,164, 13,239, +217, 62,195, 0,138,150,162,251, 66,190,185,148, 2, 22, 20,145,218,182,148,150, 70,149, 61,117, 69,205,146,108, 97,117,181,138, + 62,214,160, 66,238, 15,122, 16, 42, 65,206,226, 53,207,227,149,106,213,196,162,164,109, 53,148, 2,234, 21,193, 55, 22, 51,138, +183,205,242, 12,240,217, 91, 28,128,254, 40, 69,214, 50,152,134, 1,253,206,104, 24,103, 33,144,211,123, 40, 4,188,162,241,152, +247, 22,153, 32, 31, 38,249,252,155, 40, 80, 76, 51, 5,109, 57, 39,216, 9,180,173, 65, 46,232,161, 59,125,253,134,163, 65,119, +112,246,230, 13,132,243,168,231,231, 56,106, 43, 92,185,121, 19,211,179, 35,204,231,148, 24, 87,175, 42, 36, 89,138,233,217, 9, +202,222, 53,244, 7, 5,198, 89, 14,163, 61,132,202, 32, 96, 49,157, 44,112,243,254, 93, 60,248,245, 31,144, 42,131, 52, 81, 88, +204, 87, 24,173,106, 24,221,226, 69, 75,221, 77, 82, 90,228,101, 1,239, 29, 54,182, 70, 12, 57,242,104, 86, 11,228,253, 18,199, +207, 95,226,221,143,222,195,249,233, 20, 91,123,219, 24,143, 82,124,247,124,142, 27,119,111,225, 63,253, 47,255, 59,190,255, 39, +127,132,207,126,250, 3,232,213, 28, 16, 9, 12, 36,142, 79, 39,184, 56, 57,193,253, 15,111,225,224,112, 7,227,173, 17, 86,243, + 21,102,151, 51,152,118, 73,100,192,164,192,157, 15,238, 99, 99,123, 12,163, 45, 46, 47,230, 48,198, 34, 77, 5,182,118,182,176, +189,183,129,233,249, 5,178,162,192,245,119,182,162,162, 58,205,211,255,143,171,247, 90,146, 44, 75,179,243,214,150,231, 28,151, + 33, 82, 87, 86,101,169,238,153, 22,104, 12, 6, 52, 26,134,164, 25, 73,227, 21,223,135, 79,192, 55,162, 25, 13,102,184, 0,134, +128, 17, 36, 48,152, 65,115, 68,203,170,169,233, 18, 41, 34, 67,135,187, 31,177, 37, 47,254,127,239,227,217, 87,101, 93,157,149, + 17,238,126,124,239, 95,172,245, 45, 72, 1,184,113, 68,140, 45,140,109,208,247, 35,118,251, 1,135,221, 30,253,126,143,105, 28, +225,167,129,199,114,137, 39, 44, 97,190, 48,145, 41,225,144,215, 35,212, 93, 57, 62,236, 21,146, 32, 50,150,138,153, 9,143, 12, + 35,161, 13,220,108,133, 82, 10,146, 49,206,154, 47,191,130,239,164, 3, 85, 48,157, 78,207, 4,174,148,209,117, 13,198, 97,224, +191,131, 70,154,182,105,224, 61, 29,212, 77,219, 97,177,108,121, 2, 0,134,219, 68, 40,190,152,202,101,120,240,129,105, 91, 84, +224,212, 16, 18, 46, 0, 98, 8, 53,138,152, 70,243,185,170,131, 73,156, 70,152,224,162, 5, 17, 0,148,225,248,229,234, 80,153, +199,229, 69, 41,126,108, 65,154, 87,136,242,104, 13, 71, 23, 90, 96,134, 70, 8,137,247,225,243, 25,144,145,224, 60, 51,197, 3, + 31,198, 60,153,107,154, 6,221, 98, 69, 52,190,213,154,119,200,168,220,120,239, 29,250,195, 1,198, 6, 6,245, 68,182,238, 2, +253,161,167,166,160, 80,235,152, 14, 87,214, 25,180,126, 48,236,112,225,125,108,136, 48,198,242,132,101,102,126, 23,254, 55,157, +175,150,242,235,149, 98,139,155,172,160,156,146, 32, 38,165,160, 70,132,119,213, 69,253, 78, 59, 93,226,164,199, 20, 89, 11, 65, +235, 13, 90, 85,204,148,204, 98,165,205, 5,159, 42, 52,133,201,104,214, 0, 40, 10, 27,209, 90,145,186, 93, 11,126, 93,156,162, + 25, 35, 36, 68,101,255, 39,240, 5, 28, 34,218,206, 16, 83, 67, 42, 72,173,234,148,151, 56, 13,116,113, 42,118, 26, 72, 41,160, + 68,177,223,209,232, 92,208,104,134, 68,194, 69, 64, 89,187,105,162, 97,230, 72,122, 49,205, 5,169, 96, 72,145,214, 2, 62,203, +138,222, 77, 33, 67,105, 75, 58,143, 84,200,161,186, 78,107,138,112,178, 52,104, 41, 81, 39,174,164, 68,150, 26, 50, 39, 58,139, + 83,166, 16,158,148,106, 67, 89,115, 63,114,162,133, 70,138,208,122,158,154, 86,234, 99, 76,200,130, 24, 21, 41, 1, 9,128, 98, + 65, 92,206, 71,216, 96, 33,230,245, 66,113,164,241,138, 74,131,171,239,242, 38, 80,116, 96,248, 32, 23,183, 8,174,138,237,128, +118,250,164, 10, 87, 66, 64,113,252,104, 76,164,226,115,211, 4, 99, 69,245,241, 89,107, 48,241, 94,120,232, 71, 44, 86, 93, 5, +253, 39, 49,251, 94,179,226, 67,136, 71,226,130,191,184, 49,122, 64,140,216,239, 39, 88,107,248,226,156,147,157,192,185,208,222, + 5,246, 84,199,202,142,143,145,138,141,178,119,161,177, 9, 21, 38,110,242,213, 62, 64, 44, 94, 1, 63,121, 74,155,211, 18,158, + 39, 9, 37, 56, 70,243, 84,129,198,147,116,225, 19, 27, 89,114,215,238,171, 87,125, 26, 70,126,160, 51,198,190, 71,211,117,112, +166, 40,157, 45,140,149,104,186,134, 33, 29,116, 8, 78, 28,125, 74, 59, 83, 78, 45,243,212,177,173, 54, 43, 44,150, 29,130, 44, +137,116, 13, 78, 31,119,240,147,195,216,247,232, 15,125, 77, 63, 34,174,125, 32, 27, 73,221,233, 1,214, 90, 24, 99, 48,244, 67, + 85, 53,187,201, 85,186, 81,241,237, 78, 83,100,112, 71,134,235,239,113, 57,246, 56,127,250, 28,211,225, 30,253,238, 1, 72, 17, +223,126,221,227,163,207, 94,193, 52,123,236,247, 35,194, 52,160, 93,172, 49, 13, 87,248,254,155, 31,240,242,179, 23,120,250,226, + 28,206, 69,220, 92,247, 88,158,108,241,246, 15,223,227,229, 23,159, 98,181, 89,227,230,102, 15,239, 52,250,221,136,221,253, 30, + 90, 43, 28, 48, 32,103,144, 26,126,213,225,176, 27,240,248,217, 25,222,190,190, 69,219, 53, 8, 83,198,176, 63, 64, 91, 13,101, + 45, 32, 45, 94,126,186,197,215,127,251, 43,252,233,159,255, 20,127,243,127,253,191,248,111,255,167,191,192, 39, 63,254, 18,211, + 97,143,119,111,238,113,191,243,120,253,135, 31,160,224,241, 63,252,207,127, 6,129,132,110,217, 98,247, 48,224,254,118, 15,153, + 39,172, 54, 27,216,182,173, 99,241,235,247,183,216, 63, 80,167,181,217,116,248,228,243, 23,117, 42,243,232,249, 83,116,203, 14, +227,232,209, 31, 70,184,209,225,230,242, 30,187,251, 7,244,251, 3,134,253, 0,239, 60,166,113, 64, 78, 30,195,225, 1, 57, 6, +158, 56, 77, 53, 2,181,140,162,132, 44,156, 1,154, 52, 57,239, 97, 12,169,133, 41, 56, 36,215,231,149,116, 29,244, 28, 78,227, + 4,109,169, 96,211,204,224, 78, 41,161,177, 22, 67, 63,144,253, 48,151,238,151, 44,129,213, 34,199,150, 74,173,116,141, 35,142, + 33, 30,197,118,210, 74,171,109, 91, 52,109,139,197,178, 67,219,181,213,238, 38, 4, 71, 10,167,128,187,251,253, 17, 38,116, 78, +100,243,204, 74, 40,177,160, 33,149,174, 55,179, 8, 44, 51,141,107, 22,129, 42,221,212,215,130, 42,180, 69, 77,151,211, 60, 34, +166, 34,136, 41,117,188, 94,192, 31, 89,184, 50,139,120,149, 54, 85, 8, 92,132,139,117,119, 91, 44, 65, 49, 32,242,196, 36,114, + 32,139, 98, 93,135, 84,196,222, 88,173,215,244,189, 53,182, 38,210,165, 24,145, 66,198, 52, 77,184,191,187,163, 85,101, 37,161, + 25,140,195, 72, 65, 67,253,129, 35, 63, 69, 37,143,165, 28,171,152,184,124, 30, 37,243,162,140,112,201, 14, 76,141, 82,133,222, +240,186, 32,241,228,164,240,241, 82, 34, 71,145,146,146, 24,250,154, 50, 23,104, 31, 78,136, 85,142,193,129, 64,164, 66, 49, 49, +172,138,159, 47,210, 33,208, 77, 82,206, 61,173, 52,119,248,244,204,106,166, 19,166, 44,184, 35, 38, 11, 96,113, 97, 28,179, 67, +138, 82, 30,252,243,149, 52,252,249,104, 30, 27, 39, 76, 35, 21, 17,218, 40, 70,115,163,114, 3,102,192, 24,145, 67,193,197, 14, +137, 4, 75,193,146, 56,243, 61, 34, 75, 32, 50,255,132,138, 86, 82,179,155,198,206,186, 4,105,233, 48,228, 98, 84, 32, 33,167, +130,234,157,121, 32, 66, 17, 11,210, 92,209, 0, 0, 32, 0, 73, 68, 65, 84, 40,168,116,197,200,169,126, 70, 74,155, 58, 97,211, +182,129,159,166,163, 2, 17, 31, 62, 99, 60,185,150, 66, 66,104,126,118,153, 49,193,162,129, 35,148,179, 68,202, 17,170, 0, 98, + 69,230,201,120,170,218,132, 98, 47,167,207,111,246,204,211, 84,157,238, 84,109, 45,161, 38, 67, 8, 60,134, 5,231,206,134,163, +202, 64,242,200,196,179, 73,128,130, 3,188, 39,235, 73,102,192, 68, 78, 9,210,170, 15, 10, 1,173, 53,188,208, 80,138,108, 54, + 25, 2, 67, 47,224,117, 64,203,163,189,196, 22, 14, 34,162,137,202, 56,255,160,160, 16, 25,187,251, 61,150,139,134, 47,161,128, + 16, 19,220,228, 96,173,229, 47, 74,169,146,168, 26, 78,137,126, 79,169, 36, 2,199, 59,122,231, 57, 22, 54, 31,101,169,139, 26, +202, 98, 44, 21, 9,129,115,149,181,150, 92,105,129,129, 54,165, 58,231, 56,188, 80,166, 24,185,174, 30,202,174, 91, 73, 81, 83, +239, 98,136, 80, 42, 98,228,148,171,195,174,135, 54,148,149, 94, 94, 95,129,141,108, 78,183,240,147,163, 64,149,126, 64,191,239, +113,127,123,139,135,219, 59,172,182, 43, 40,109,176, 88, 46,234,231,178, 88,175,177, 92,175, 48, 49,154,119,154, 8, 7,217, 68, +139,204, 65, 27,198,218, 58,166, 90,174, 55, 8,193, 49,221, 74,214, 81,184,109, 26, 76, 35, 59, 5, 4,117, 78, 57, 38,196,112, +192,119,247, 55,216, 62,126,142,229,201, 41,174,222,188,134,214, 10,255,244,235,223,224,228,201, 11,172, 54, 27, 12,123,192,141, + 14, 39,143, 30,225,187,175,254, 17,111,190,211,144, 34,227,197,167, 31,225,250,106, 15,219, 44,176,187,189,197,111,126, 57, 96, +123,186,193,238,110,135,110,189,198,106,187,196,254,126,143,237,217, 26, 55,151,183,208, 90,225,197, 39,207,160, 20,192,250, 77, + 0, 2,251,135, 30, 93,103,240,237,111,191,194,207,255,213,191, 68,127, 8, 88,111, 23,112,253, 1,219, 71,231,184,121,119,129, + 63,251,239,254, 28,186, 93,227,221,155,107, 92, 95,238,240,240, 48,225,225,230, 26,175, 62,123,140, 23, 31, 63,197,197, 15,239, +240,248,163, 39,184,185, 62,160,237, 26,156,157,117,216,156, 62,165,177,109,204,184,190,184,198,229,197, 29,114, 22, 88,174, 23, + 88,173, 58,124,241,211, 79,177, 92, 47,113,115,121, 11,239, 19,190,255,246, 2,183, 87,119,216,221,221,243,151, 57, 96,234, 7, +238, 78, 9, 98,145, 64,150,203,232, 7,120, 55,206, 94,100, 41,107,215, 88,114, 9, 50,128,166, 93, 48, 62, 57, 33,231,192,145, +197,182,142,207,137, 52, 72,226,155, 12, 1, 31, 18,101,151,139,162,204, 38, 42,100, 1,107, 40,163,107, 87, 72,194, 84,205,227, + 73, 13, 31, 34,218,150,132,122,162, 82, 26, 21,180, 46,105, 84, 29,132, 36,177,155,146,170,138, 90, 37,239,254,156,115, 24, 14, + 7,196, 64, 98, 80,228, 8,165,200, 91, 79,221, 92,226,238,133,214, 89, 5, 0,165,181,134,115, 99,181, 96,249, 92, 34, 36,105, +109, 37,143, 18,173,128,121, 63, 92, 19,197, 56, 57, 82, 74, 73,140,108,100,142,247,172, 58,246,185,227,230,192,147,152, 18,192, + 63,187,172, 52,170,247,158, 47,198,156,104, 98, 34,133,128, 79, 9, 74, 25, 72,101,171, 47,222, 48,114, 84,107, 11,165, 12, 63, + 43,116, 54, 4, 63,193, 57,138,163,165, 48,168,150,132,188,156, 19,225,125, 96, 82,223,200,187,111,218,187,166,163,216,211,154, +170, 8, 90,189,137, 36,185,243, 47, 69, 81, 98, 87, 15,135,206,240, 57,163, 53,185, 94,170,128,140,197,106, 37, 99, 27, 72, 85, +232,150, 99,168,224,153, 44, 50,148, 50, 16,130,173, 84,145,156, 52, 57,122,218, 55,179, 32, 50,184, 80, 89, 2, 50, 39,100, 97, +170, 53, 45,231, 50, 14, 39,245,119,228, 11,204, 52,244, 76,210,234,136,220, 97,193, 83,129, 8,134,239,216,198,242,103,153,234, + 68, 88, 84, 93, 86,174,122,141, 66, 83,203, 41, 67, 25, 5, 1,134, 14,153,130, 41,201,176,141,133,131,175, 64,150, 26,199,155, + 18,197,129,131,117, 24, 92, 36, 70, 70, 33, 43,163,144, 56,232,133, 86,198, 9,137, 39, 70,199,208,164, 82, 72, 21,192, 16,253, +222,168,105,137, 82, 42, 4,231,232,189,151,100,195, 46, 80,153, 20, 8,186,230,189,175, 74,248,153,149, 34,234, 58,123, 14, 11, +162,201,138, 49,134,248, 47, 49, 66, 49,251,159, 88, 10,153, 39, 33,137,155, 93,207, 80, 52, 1,165,242, 7, 22, 77,237,216, 74, +165, 89,174,111,172,161,180, 31, 99,216,155, 78, 74, 64,239, 2,135, 22,160,254,114, 52,174,214,140, 89,101,108, 99, 54,213,163, +170,141,194, 48, 36,216,198, 34,165, 0,197,196,170, 20, 35, 4,203,242, 37,239, 26,180, 38,225,219, 52, 57, 6, 33, 72, 14, 80, +201,117,108,239,198, 30,167,167,231, 53,240,126, 14,150, 79,117,140, 81, 70,229,227, 48,161,233, 26,116, 11,226,197,155, 70,195, + 79, 84, 81,250, 41, 64, 45,216,223,202,123, 11, 74,161, 42,169, 77, 51, 24, 97,134, 36,228, 15,176,173, 82,203,218,117, 37,126, + 8, 83,244, 8, 62, 85,255, 33,253, 46,138,119,117, 84,113, 66, 0,211,224, 56,103,222, 99,232, 73,165,233, 28,145,227,172, 49, +188, 87,164, 11,123,181,217, 98,181,217,176, 45,131,184,209,253,161,135,159, 28,129, 39,186, 6,198, 88,180,203, 14,221,122,133, +197,122, 5,129,132,135,187, 29, 0,192, 79, 19,220,228, 56,253,140,132, 45,125, 63, 17, 61, 73,208, 62,116,236, 71, 76, 99, 64, +240,229,119, 6,144, 3,220, 56, 85,177,135, 64,198,237,219,239,112,111, 23,120,254,201, 43,220,188,249, 30, 41, 12,184,252,254, + 27,220, 47,206,240,252,213, 11, 12,247,215, 24,199,132,213,102,133,239,126,247, 43, 56,247,167,232,247, 3,158,127,250, 18, 63, +124,123,133,229,102,139,203, 55,239,176,220,110,177, 88, 46,106, 40, 71,100,142, 0, 50,251,124,207,182, 24, 15,123,156, 61,218, +226,230,114,135,229,170,197,254,254,128,171,215,111,160,173,129,233, 22,232, 15, 19, 94,125,118,142,175,254,238,247,120,252,226, + 41,214,219, 53,238,119, 1,253,253, 1,111,191,191,192, 56,102,216, 70,225, 95,254,197,207, 48,246, 61,222,189,126,143, 71,207, +159,226,176,119,208, 90,226,228,164, 97,170,159,192,197,235,247,120,184,221, 35,102,137,205,217, 41, 22,203, 22,235,245, 2,143, +158,159,227,176, 59,224,219, 95,254, 14,247,183, 15,216,221, 61,224,246,253,123,236,239,110,233,128,230,232, 81,201,112, 15, 90, +201,104,100,112,158,122,182, 80, 12, 74,145,162, 8,101,216,154, 34,230,110,145, 10,106, 5, 68,202,123, 46, 16, 35,197,188,117, +109, 40, 36,163,116, 71, 74,167,154,137, 94, 38,106,249,232,153, 1, 91,200, 74, 33, 90,104, 84,164, 90, 38,221, 76,140, 9,157, + 49,104,154, 6,107,107, 42,179,186, 8,216,220,228,144, 83,198, 52,141,149, 80,152, 18, 77,225,202, 40,209, 90,141,105,138, 85, + 1, 76, 69, 1,191, 30,246, 28, 11, 8,208, 93, 70,239,141,177,162,142,153,173, 53,224,218,189, 42,210,101,205, 72, 23, 71,145, +153,220,189,234,178,175, 21,208,138, 58,177, 34, 40,203,220,249, 10,222,205,231, 35,232, 7,241,235, 19,119,159, 37, 88, 72,214, +179, 76, 27,203, 66, 59, 0, 66,207, 94,119, 89,224, 47, 69, 68,150, 17,188,171,104, 79,199, 54,189,146, 65,223, 52,246, 8,231, + 74,231,200,225,112,168, 12,111,121,196,188, 7,168,161,192, 81,252,169,136, 51,130,183,232, 16,102,107,161, 98,133, 54,152,250, +105,171,119,158, 34, 67,233,156, 52,214, 84, 33, 34,216, 94,149, 18,143,169, 69,174,169,102, 36, 58, 20,144, 66, 85,161, 52,162, +231, 78,182,132,180,144,216,139,248,254, 52, 49, 40,246,184,156, 34, 79, 16, 20,180,149, 60,254, 78, 16,138,108,209,200,128,182, + 10,193,211,153, 47,165,132, 50, 22,193,121,100, 4, 72,173, 88, 65, 63,175, 66,105,218, 26, 25,191,157, 16,249,252, 87, 42,215, + 46, 93,107,158, 68, 40,197,141, 26,224,125, 68, 46, 0, 50,246,236,135, 16,121,202, 32,235,164,166, 12,116, 18, 23,193, 53,237, + 46,230,202,189,143,172,163, 40,147,232, 66,232, 11,172, 97, 41, 43,158, 24,242, 81, 6, 65,172,108,129,148, 2, 39,197, 50, 75, + 5,224, 21,158,134,247,145,237,123,243,119,151,220, 10,166, 18,233, 50,138, 11,193, 80, 1, 17, 73, 59,144, 69, 98, 91,158,172, + 19, 85,169,115, 45,154,115, 74,140,182, 13,208,197,158, 85, 60,222,206, 49,249, 76,113,104,201, 52, 33,248, 63, 34,146,165, 34, + 32, 83, 20, 15, 90, 63,116, 64,107, 38,159,177, 48,129,186, 96,170,114,232, 75, 28, 17,130,135,156, 36,251, 41,231, 36,180, 25, +230, 64, 15, 76,230,160, 3,197, 23,168,119, 35, 98,146, 21, 60, 81, 0,246,137, 1, 24,222,147,213,166,120, 28, 41, 14,214, 64, + 52,134, 69, 43, 17, 50, 68, 34,173, 69, 18, 18, 25,203,161,244, 85,185, 31,107, 97, 80,184,213,130, 89,245, 36,196,137, 71, 41, +110,168,144,142,161, 31,129, 76, 21, 84,138, 12,144,129,128,144,134, 49,180,220,157,241,106, 97, 28, 28,165,177,197, 4,200,132, + 24,136,212,229,198,137,132,127,252,165, 44, 35,186,197,106,193, 74,123,139,211, 71,139,186,207, 87,146, 82,217,250, 7, 18, 29, +153,134,210,222, 54,167,167, 16, 34,195, 79, 35,134, 67,143, 20, 61, 70,231, 42,220, 33, 5,178, 37,122, 71,220,230,205, 73, 11, +207, 93, 88,191, 31, 32, 16,121,204, 51, 63,220,180,143,186,199,254,238, 22,143, 95,190,130, 10, 7, 92, 95, 92, 32, 76, 19,190, +233, 7,124,242,229, 39,120,184,122,143,118,185,133,209,223,227,135,175,191, 66,206, 95,242, 14, 75,225,244,233, 99,220, 94,221, +225,230,226, 10,219,243, 83,244,135,177,226, 49, 11,199,251, 71,255,236,199,152, 70, 71,201, 74,138,130, 78,250,155,123, 52,173, +193, 87,127,255, 91,252,248, 95,252, 2,247,119, 61, 62,250,120,139,225,208,227,147, 31,127, 6,109, 44,174,175, 15, 80, 2,248, +238,171, 63, 32,201, 22, 79,158,111,113,254,228, 4, 15, 55,183,212,117, 51, 55,255,229,167, 79,177, 61, 89,224,250,253, 45,118, +119,123, 42,234,164,129,180, 11, 60, 92,221,225,250,226, 26, 79,158,159, 98,185,252, 8,215, 23, 87,120,253,135,215,184,187,188, +197,221,205, 45,134, 67, 79, 36, 66, 86,174,131,199, 95,137,225, 17, 21,123,156, 5,132, 50, 80, 85,201, 74,207,162,150, 26, 41, +199, 35, 31,172, 34,215, 1,219,171, 20, 43,131, 75, 84,104,211,118, 71,208, 21,193, 98, 36,218,243,133,224,106, 94, 58, 93, 14, +169, 6,209,144,203,129, 39, 51, 41, 87,107, 81, 25,161,119,139, 14, 90,179, 99,163,177, 85,121,238, 38,178, 80, 14,253, 1,253, +190,231,221,190,130,181, 22, 94, 42, 58,184,185,144,214, 86,177,230, 69,215, 52,169, 24,249,162, 46, 69, 0,243,185,173,108,216, + 18,102, 48, 13, 3,239, 25,105,231, 90,220, 55, 37, 1,173,168,156,107,152, 13,135,215,148, 32,151, 84,245, 31,212, 52, 80,119, + 26,102, 81, 20,251,136, 99, 76, 20, 5,203,149,141,168,148, 46, 48, 23, 34, 49,173,142,241,171, 42, 67, 66,162, 81,115, 70,115, + 17,133,121,239,160,179, 66,138, 84,232, 96,185,224, 44, 11,234,172, 41, 89,209,162,105,104,207, 75,199,145,192, 56,244,216, 31, + 30,102, 7, 78, 58,142,176,206, 71, 8, 87,238, 2,203, 8, 55, 69,222,187,131, 59,184, 80,109,112, 5,124, 82, 4,135,130, 51, +210, 13, 79, 73,162,247,220,169,231,122,142, 74,145,171,133,173,228,124,231, 28,161,164,174,192,147, 50,166,207, 57, 64, 10,205, + 23, 91,100, 17,104, 65,175, 22, 53,182,168,201,106, 74, 0,201, 71, 36,161,144, 65, 83, 27,234,142, 34,166,222, 67, 40, 93, 95, +159,119,174, 66, 96,104,237, 9, 52,204,118, 87,140, 28, 78,124, 22, 32, 39,216, 70,147,202, 93,146,218,157,130,191, 60, 12,199, +186,166,148,224, 39, 79,186, 2, 6,136,101, 46, 14,140, 85, 85,243,144, 51, 7,191,240,132, 6, 49, 31, 45,151,115,109,204,106, +238,130, 80,140, 29, 47,133,119, 89, 57, 71, 94,163, 49,219,132,161, 67,168,251,110, 6,134, 37, 58, 27, 4,143,214,139, 48,181, +236,250, 9, 48, 83,224,110,199,244, 67,210,152, 20, 97, 94, 12, 97,142,161, 45, 23, 62, 74,158,123, 96,125, 66,154,129, 55,244, +169, 67,151,125,178,102,145, 66, 8, 52,166, 70,152, 57,202,211, 56,161,109, 45, 66, 72, 20,146, 50,121, 68,149,142, 18, 98, 34, +229,125,115,197, 67,234,121,122, 96,218,182,129,155, 38, 40, 77,138,241,226,203, 12,129,224, 46, 21, 48,161, 36,178,144, 76,139, + 82, 53, 73, 40, 8,218,149,175, 54,180, 63,116, 46, 64, 42, 13,239, 93,237,240, 1, 93,105, 88,101,196,162,149, 68,110, 8, 18, + 35,164, 96, 70, 59, 29,154,182,149, 21,209,167, 25, 1, 43,165,168,130, 31, 89, 2,103,184,178,170,164, 33, 14, 27,144,146, 70, + 78,245, 50,202,100, 87, 35,106,147, 70, 10, 35,124, 8,104,187,150, 15,101, 89,233, 81,136,116, 88, 53,141,101,214, 48,141,119, + 34,119, 55, 33, 4,142, 75,141, 21,121, 11, 0,211, 52,212,160,142,166,165,195,121,185, 94, 64, 89, 11,203,255,155,186, 49,202, +240,141,137,178,201, 55,103,103, 88,109,183, 0, 18, 14, 15,123,244,135,129,248,222, 46, 50,134, 86,241, 4,129,188,188,221,162, +133,146,148, 50, 53,197,192,106,253, 80, 61,173, 57, 0, 70,143,120,247,135,223, 99,177,125,134,103,159,126,142,135,171, 11,164, +176,195,213,219,247,120,250,241,115, 76,135, 61, 94,253,201,143,241,219, 95,254, 29,222,124,247, 26, 74, 73,188,252,252, 37, 14, +251, 17,155,211, 45, 30,238, 30, 96,187, 14,125,239,232,253, 73,212, 86, 45,214, 29, 62,251,147, 87,184,188, 60, 32, 37,218,219, +110,182, 11,188,185, 63,224,205, 63,254, 30,175,254,228, 75, 8,179,192,201, 73,139,237,201, 18, 15,247, 3,156, 23,244, 94, 55, + 26,127,248,253, 15,128, 94,226,227, 79, 30, 97,177,176,232,239,111,241,232,201, 25, 67, 36, 44,158,190,120,132,118,209,224,230, +242, 14,211, 24,113,241,230, 26, 23,111,111, 49, 77, 30, 34, 7,156,159,175,240,211, 63,251, 2, 82, 41, 92,188,126,143,171,183, +151,184,191,185, 33, 69,123,160, 47,141, 49, 10, 57,105,136, 64,196,192, 2, 59, 17, 82, 81,167, 34, 5,140,182,136, 9, 64, 18, +149, 17,159,217, 62, 35, 25, 41,153,145, 89, 37, 91,200, 96,146,211,185, 72,220,216, 46, 90, 22,106,169,122,252,208,133,205,150, +160,152, 48,185, 0,114,236,168, 90, 8, 10, 33, 97, 27, 34,145,117, 93, 7,219, 90,116,139, 14,203,213,146, 99,117,153, 32,199, +138,237,254, 48,192, 57, 7, 63, 57,236,247,123,210,116, 48,238, 52,103,160, 91, 16,237,206, 54, 13, 57, 43, 20,101, 20,216,198, +206,138,246, 72,235,129, 98,151, 44,201, 88, 37,125, 12, 16,236, 30, 73,112,139, 9,193, 59,140,195, 88,105,116,133,182, 22,131, + 3, 96,184,176,142,245,112, 35,171,172,224,224, 21, 85,249,226,244,157, 39,221, 14, 65,115,240, 65, 30,117,228,223,139,205,107, +148,248,101, 4,139,255,116,253,206,148, 84, 67,133,204, 59, 91,250, 14,145, 53,144,166, 87,198, 26, 40, 41,171,254,136,210,222, + 10, 3,162,161,244,188,178,110, 12, 30, 25, 25,187,135,125, 61, 35, 75, 76,105,153, 44,146,154, 63, 85,225, 97,233,202, 9, 6, + 83,176,177, 37, 47, 94,214,112,151,204,120, 86, 99,168,153,160, 61, 57, 49,242,219,214, 84,139, 26,137,184, 34, 82,244,148,248, +199,160, 18,154, 0,240,133,149, 2,227, 93,105, 18, 39, 50,137,205,146,146,140,157,165, 66,174, 96,173, 73,227, 17, 88, 4,150, +235, 26, 73, 40,193,240, 44,202, 53, 80,122,118,131, 16,194, 20,240,172,118,167, 11, 76, 1, 40,148, 63,137,110, 97,217,105, 52, +223,179, 41,206,202,247, 24, 73,193,174,141,174,147, 93, 33, 5, 68, 46,211,147, 84, 99,195, 37,128, 16, 18,223, 33,162,190,103, + 37,241, 62,213, 2, 43,147,202, 60, 82, 33, 30,156,255, 96,125, 83, 45,101, 49,113,108, 44, 5,239,240,156,171,134,156, 33,139, +170,175,226, 33, 19, 51, 94,138, 8, 52, 33, 71, 65,147,132, 18, 98, 37, 45, 21,167, 74, 81,198,189, 84, 16,108, 97,206, 50, 33, + 39, 28, 37, 46,250,234,208,160, 20,193,192, 97,109,185, 78,232, 74,128, 16,167,215,208,248,189,235,186,250, 70,229,156, 16, 51, +137,170, 10,200,101,177,236,120,150, 21,171,245,165,105, 12,239, 95,243, 7, 9, 81, 67,223,163, 91, 46,225,189, 71,199,241,119, + 66, 72, 52, 77,131,177,239,107, 7, 58, 12, 3,195,240, 5, 90,171, 25,127,135, 57,198,128,173,168,244,128, 48,211, 61, 70,140, +195, 4, 99, 12,250, 3, 93,232,178,236,126, 43,184,128,245, 1, 98, 14, 58, 9, 62,212, 46,220, 88,139,224, 2,132,149,100,135, +101,138,145,144,128,231,221, 88,137,192,179,141, 70, 12,153,247,251,162,138, 81,114,202,180,115,210,234, 40,138,111,134, 16, 64, +144, 85, 45,103, 89, 67, 47, 10,156, 33,198,132,182,109, 8,231,167, 36,119,168,145, 5, 65,137,237,121,190, 86,157, 72,168, 4, +161,152,231,228, 31, 0, 24, 15,135,154, 87, 76,204,250, 6,182,105,208,116, 45,186,101, 87, 15, 46, 90,127,100,194,151,158,103, +184,113, 66,191, 39,113,221, 56,240, 1,158, 20,191, 14,192,182, 11,104, 99,177, 92,175,112,120,216,161, 63,120,140,253, 80,249, +226,137, 99, 10,199,135,183,120, 51,236,241,236,147,143, 17,134, 59, 12, 15, 87,184,122,171,240,226,179,143, 49, 29, 90, 60,123, +249, 18,175,191,253, 30,215,151,107,172,182, 43, 52,139, 37, 54,103, 91,220, 94,223,227,246,242, 22,139,245, 18, 72, 36, 76, 20, + 82,224,249,171,143, 48,142,158,109,137,180, 71, 63, 57, 91,195, 79, 35,164, 20, 88, 63,122, 10,239, 60,206, 31,175,224,124,198, + 97, 31,107, 16,206,205,213, 3,148,237,240,179,159, 62, 67,107,105,180,216, 46, 90,244, 15, 7, 72, 99,113,182, 93,225,250,234, + 1,119,215, 15,184,248,225, 61, 14,251,129,253,245, 10,167,231, 91,156,158,173,241,244,163, 39,208, 90,226, 31,254,250, 31,112, +115,121,141,161,159, 96,173,132,214,150, 58, 57,238,128,134, 97, 36,104,132,182,180,115, 68,217, 79,107,254,119,244,204, 79, 62, + 65, 72, 77, 29, 37, 88, 13, 46, 20,132,204, 16, 50, 67,155,134,145,205, 25, 41,147,114,189,227, 66, 80, 41, 93, 67,123, 10,170, + 88,228,196, 93, 57,199, 87, 98, 14, 53,105,219,134,130, 92,150, 75,180, 29, 49, 19,202,115, 17, 88,200, 52, 14, 19,145,251,174, +239,234, 97,183, 88, 46,234,232,111,123,178, 5,242,134, 64, 78, 66, 85,157,135,226,105, 20,209, 21,195,220,221, 9, 90, 91, 69, + 31,145,114,132,159,202,184, 88,112,151,146,171,248,171,120,134, 23,139, 5, 82,106,177, 88,174,106,225, 58, 7,170,144, 96,173, +223,239,225,166, 17,146,167, 80, 4,238, 96, 37, 87,241, 8, 87,194, 98,230,162, 66,124, 96,121, 35, 63, 59, 93, 32, 41,207,232, + 81,194,240, 42, 62, 56,227,220,201,165,136,224, 39, 42,240, 16,103, 87, 12, 39,184,153, 2,156,210, 51, 12, 6,204, 60, 95, 44, + 90, 40, 45,107,167, 21, 66,194,112,232,225,188,171,187,251,200,107,141,121,205,128, 15, 80,220,115,106,216, 12,226, 58,118, 0, +120,239, 96,180,230, 75,149,211,220, 80,108,103,146, 29, 76,185, 78, 58, 88, 83, 9, 32, 81, 88, 74, 46, 74,247, 84,243,209, 1, +218,165,139,218,133,179, 29,139, 47,249,227,134, 70, 41,131, 88, 82, 42,131,103,117, 58,173, 10,163,247,176,141,169, 17,205,137, + 19, 35,115, 22,160, 56, 53, 5,109,104, 15, 46,149,132,109, 45,119,178,244,223,120, 23,208,180,166, 78,150, 38, 23, 16, 60,119, +228, 71,221,116,233,202,133,148,136,222,215,159, 7,182,123,149, 49, 62,253, 23, 18,211,228,200,223,159, 2,211,226,248, 61, 77, + 84, 52,208,253,158, 72, 28, 88, 99,111, 69,205, 51,153,198,169, 58, 14,114,204,204, 87,225, 38, 52, 83, 49, 93, 46,118, 48,158, +187,124, 31,201, 97, 64,187,243,196,175, 27, 34,215,231,220, 24,131, 44,100,157,122,100, 70,130, 67,170,242,193, 85,215, 10,233, +197,136, 4, 58,243, 21,136,163, 79, 23, 58,253,192,146,140,167,141, 49, 76, 49,163, 20,181,204,135,128,231,113, 69, 9, 9,200, +108,209, 8, 33,214, 64, 6,165, 34, 98,154,253,163,101,125, 81,190,248,222, 27,180, 12,100,137,137,170,165,178,111,179,214, 32, +120,143,166,109,107,206,114,137,243, 43, 24, 65,130,218, 73,196, 40,120,138, 16,200,230,163,233,133,134, 20,184, 42,162, 15,142, +144,150,115,212, 95, 25,183,145, 37, 99, 14,165,208, 70,206,163, 40,158, 80,224, 40, 77, 45,134, 84,247,249,229, 67, 40,241,170, +133,135,109,172, 33,117, 98, 38,112,133,115,108, 89, 73,212,133,211,254,147, 99,101, 51,160,121,151,222, 46, 90, 22,224,105, 70, +212,198,186,130,136, 33, 48,250,211, 85,129,152, 16, 2, 40, 97, 48, 85, 89, 74,234, 98,163,233,139, 24, 28, 83,178,252,136,251, +155,200,116, 58, 9,109, 27,172, 54, 43, 40, 99,209, 45, 87, 88,109,150,176,141,133,110, 21, 54, 77,135,245,233, 9,130,155, 48, +236,239,113,119,117, 83,243,157,233,181, 73,132, 0,180,171, 13,186,229, 18,110, 28, 48,246, 7,140,227, 52,163, 40, 5, 16,198, + 59,188,253,167, 1,203,211, 23, 56,123,250, 12,251,219, 27,252,240, 13,240,244,227,151,120,254,249, 23,232, 15, 61,118,183,239, +112,117,177,198,179,151, 6, 49, 83,234,216,238,238, 30,139,237, 6, 82, 36,228, 24, 96, 27,131,205,217, 22, 23,111,110, 49, 77, + 17, 57, 42,108,207, 86,120,247,230, 6,135,251, 7,188,252,241,231,184,189,233,113,126,102,113,123, 51, 97,191,223,211,151, 49, + 3,206, 39, 18, 16, 42,133,177,119,232,247, 25,167,143,182,144, 50,194,116, 75,196,224,241,246,187,215,152, 6,135,235,171, 29, +250,131, 67,244, 35, 30, 61, 90,225,228,124,139,118,209, 98,123,186,197, 56,140,248,155,255,240,119,184,191,185, 37,229,177,162, + 29, 31,144,209,118, 84, 36, 13,135, 30,214, 90,140, 33, 32, 51,246, 49, 73, 16,122, 85,146, 42, 88,242, 51,210, 45, 59, 68,239, + 43,227, 64, 86, 37, 54, 72,225,202,202,203,210,125,118,139, 69,245, 0, 23,210,163,210, 68,112,140, 12, 87, 25, 6, 7, 37, 37, + 86,235, 21,108, 75, 60,134,213,122, 5, 41,185, 8,200, 96, 20,235,132,222,123,162,191, 29, 70,190, 15, 37, 22,139, 14,155,205, +170,114,227, 75,212,104,138,101,143, 30, 49,244, 61, 59, 48, 60, 26,182, 18, 21,229,122, 74,145, 47, 25, 95, 45, 59,110, 28,137, + 72, 23, 18,243,191,143,248,227, 0,129, 93,152, 53, 95, 58, 26, 33, 4,246,187, 3,211,217,136, 30, 71,105,142, 22,106,179, 69, +140, 43, 72, 37,224,157,131,119, 14,110, 28,234,168,179,154,119,249, 59, 25,242, 60,146,167, 29,227,124, 97, 42, 77,122,129, 84, +207, 23,218,201, 10, 81, 94, 3, 77,201, 2, 59, 19,138,206,167,208, 51, 99, 72, 48, 37,161, 50, 38,222, 49,203,154,121,177, 88, +118,208,214,144,199, 60,132,202,164,232,251, 1,193, 59,178,162, 85,205,133,168,211,131,227,128, 41,173,143,245, 65,116, 78,170, +163, 34,165,120,178,115,230, 73,162, 17, 12, 17, 74,144, 44, 42,172,187, 98,190,240, 51,143,147,145, 99,141, 12,173, 9,107, 41, + 48, 50,149, 94, 99,217,199, 75, 62,231, 5,219, 4, 37,167, 1,150,160, 39, 26, 83,123, 74,192, 99, 75,163, 86, 18, 66,203,170, + 55, 42,187, 93,201,251,237,152, 40,176, 36,133, 4,109, 37,131,149, 2, 22,171, 69,189,164,164,204, 24, 7, 87, 17,188, 69,213, + 29,125,224,198, 75, 84, 87, 15, 25,155,210,124,121, 23, 75,100, 6, 33,187, 57, 59,157, 44,137,156,101,174, 52,173, 34, 50, 79, +200,164, 64,202, 18, 82,144,160, 49,213,152,212, 92, 39, 28, 36,218, 35,139, 94,113, 26,148,172,245,232,153, 41,193,248, 95,106, +148,169, 25, 77,145,242,218,131,159,234,138,162, 20,109,224, 59, 82,107, 81,109,221,164, 3, 99, 24, 81, 13, 28, 74, 92, 40,240, +231,207,235,225,130,210,157,145,238, 10, 73,228,202, 57, 41,207,138, 38,216, 65, 70,204,161,238,245,154,182,169, 10,192,182,107, + 42, 8, 99,246,147,198,250,208,171, 72,111,148,143,129,194, 78,124, 96,177, 12, 5, 91,132, 16,185,163, 16,232,186, 22,206, 57, + 14, 4, 80,240, 62,210,255,102, 91, 93,140, 9,109, 71,150, 28, 26,243, 1, 49,145, 96,163,236,135,134,126,128, 92,154,234,151, + 7, 15, 86, 76, 67, 30, 66,173, 24, 90, 97, 84,197, 48, 18, 2,145, 70, 94, 77, 99,171, 18, 82,178,165,203, 24, 85, 43, 35, 82, +178, 18,108, 70, 43,205, 15, 71,102,145,160,172, 33, 47, 49,205,213,124, 42, 79, 21, 43,227,203,232, 91, 41,226,220, 11,169,102, +191,111, 99,200, 67, 44,104,172, 3,166,213,105,173, 42, 16,134, 32, 3,162,230, 43,199,144,103,138,147,214,228,147, 71,198,216, + 79,213,155, 79,157, 0, 39,192,121,135, 41, 68,136,190,199,120,216, 81,209,160, 52,164, 50,176,237, 2,139,213, 10,155,211, 13, +132, 16,104, 23, 13, 78, 30, 63,195,217,147, 39, 24, 15,123,220,223,220, 98,127,119, 79, 22, 57,107,209,118, 13,132,182,104, 86, + 91,116,171, 13,252, 52,194, 77, 3,134,253,158,198, 75, 41, 34,248, 3,166,225,107,220, 95,111,240,226,179, 79, 33,211,132,171, +215,111,113,250,244, 49, 62,255,249,207,240,253,239,191,194,238,234, 29, 78,206, 55,136, 41,225,236,233, 35, 28,246,223, 33,133, +128,182, 83,220,157,211, 20,228,230,122, 7,219, 54, 48,134, 14,201,219,203,123,124,244,217, 11, 12, 83,132, 81, 25,163,151,112, +135, 1,154, 71,174,182,109,176, 57, 89,162,105, 52,218, 86,227,225,190,135, 82, 2,251,135, 3, 85,174,137, 2, 78, 14, 15, 61, +110,111,246,240,147,195,147,199,107,156,158, 63, 37,109,135,200,216,108, 90,124,247,245, 55,248,229,255,243, 55,184,191,185, 37, +196,177, 96,210,158,181,136,222, 34,133, 0,219, 54, 16, 57, 50, 21, 45, 98, 28,134,186, 19, 46, 88,202, 92,246,222,198, 32,199, + 0,169, 53, 26,173,169, 11, 13,156, 90,168, 5,178, 8, 72,153, 18,185, 12,115,179, 51, 4,180,109,232,146,208, 10,224, 41,139, + 54, 6, 90, 27,116,203, 14, 57,211,191, 35,162, 91,168,226, 82,138, 45,245,240, 33,192, 90, 58,148, 23,171, 5,186, 69,139,229, +114, 69, 94,235,214,144, 63, 59,211,184,219, 29, 70,118,101, 8,238,136, 3,166,129, 46, 79,242,172, 3,222,145,248,139,212,240, +243,222, 87,136,121,130, 84,246,223, 37, 71, 93, 41, 9,101,200,187,159,114, 70,107,116, 85, 16, 91,107,225, 70,135,156,139, 0, +151, 86,115,222,121,238,148, 29,107,116, 44,218,174, 69,219,182, 48,198, 96,181, 94, 35, 84, 58, 29,141,198,141,144,212,121, 66, +213, 48, 24,154,186,229, 74,125,204, 53,150,153, 40, 99, 3,163,118, 75,136, 6, 9,153, 60,163, 61, 35,114,205,106, 39, 91, 43, + 84, 29,134,179, 62,129,166,146,214, 24, 40, 43,209,182,109,229,223, 71,142,202,236, 15, 3,166,105,172,130, 57,218,229, 42,148, + 70, 43,179, 5, 23,249, 8, 28,196, 93,186,148, 68, 31, 11, 49, 0, 76,176,155,237,166,122,206, 82, 87,178,238,113, 11,129,172, +252, 89, 81, 45,111, 52, 98,207,165,187,231,224, 39,186,244,202,234,209,145, 23,187, 78,125, 36, 19,218, 88, 63,193, 81,203,145, +247,186,179, 74,187,104, 30,120, 30, 34, 41,103, 60, 68,218,143, 39, 33,145,156,131, 80, 36,122, 35, 61, 82, 97, 36, 52, 8, 62, +194, 88, 26, 39, 79, 17,117,124, 14,144,174,200,104,186, 12,163, 75,188,242,162, 12,242,200,217,235, 53,194, 84, 8,120,126,134, +115, 6,172,201,152,124,132, 18,128,210,156,197, 46,230, 24, 83,169, 36, 34,159,215, 33,208,115, 20, 38, 7,211, 88, 10, 58, 42, + 94,241,156, 56, 64,135, 25, 37, 33,206, 54, 59,126, 70,138,214, 35,101, 22,174,114, 81, 89,237,134,130,244, 53,137,245, 54,101, +229, 82, 84,245, 82,106,210,121,169,162, 7, 40, 49,175, 20,122, 84, 10, 25,193,194,205, 50,189, 41,127, 55,137, 97, 57,172,135, +191,151, 41, 37,104,197,132,156, 50,162,118,147,131,109,108, 85, 96,150, 20,161, 68,190,250, 35, 80,190,226,206, 60, 99, 24,166, + 90, 53,123, 71, 25,224, 90, 43, 76,195, 4, 41,103,234, 81, 74,168,136, 66,122,211,230, 40,215, 50,226,158,166, 80, 47,213, 20, + 35,108,211, 18,119, 55, 21, 5,161, 71,206,102,150,239,115,149, 59, 43, 3, 99, 5, 67, 72, 41, 43, 69,169,132,134,164, 68, 32, +154,177, 31,160,179,230,116, 41, 82,203,227, 72,145, 88,246,219,206, 57, 22,254, 24, 36,153, 56,228, 97,174,170, 75,236, 98, 97, +231,211, 69,208, 80,218,157, 49, 85, 8, 38, 5,216, 47, 41, 42, 1,138,136, 68,185, 42, 74, 75,192, 67,241,162,122, 95,252,226, +243,126,109, 28, 70, 88,163,120, 98, 18,145, 92,172,156,230, 84,114,158, 37, 37,101,121,231,145,120,122, 49,142, 30, 74, 50,130, +212,245,232,239,175,208,180, 22,235,147, 21, 6,211, 97,115,118,138,211,167,207,240,228,227,143, 17,189,195,176,223,225,250,221, + 5,110, 46,175,225,134,123, 8,169,209,116, 29,132, 50, 88,110, 23, 88,159,156, 97, 26,122,140,135, 61,130,119, 24,250, 1, 98, +186,199,119,191,249,123,156, 62,123,133,199,207, 55,184,191,190,197,114,179,194,199, 63,254, 17,254,240,155,223,225,112,255,128, + 71, 47,158,224,176, 31,241,232,217, 35,140,125,143, 39,207,158,225,208, 79, 80, 90,224,225,110,199, 66,160, 8,165, 52, 46,222, + 94,163, 91,182, 24, 93,130,155, 18,164,238,144,146, 66,219, 50, 94, 88,208, 36,226,249, 71,103,200, 57,227,246,234, 14, 82, 68, + 0, 10,195,110,135,174, 51,232,251, 9,247,119,196,141,127,242,244, 4, 77,171, 49,236,118,248,234, 31,126,139, 79,190,120,137, +211,231, 79,240,183,255,249,111,241,205,239,190,193, 52,142,228,221,119, 19,117,115,197,134,166, 20,154,182, 69,211,117,148,134, +133,196,236,103, 81,249, 4,166,105, 16, 83, 66,246, 1,202, 8, 36, 71, 29, 95, 97, 7,104,195,135,104,140,244,185, 75, 93, 89, + 13, 90, 27, 52, 29, 9,173,186,101,135,211,243, 83,202, 80,104, 90,152,198,194,185, 0,239, 2,118,247, 59,236, 30,246, 56,236, +175,121, 7, 73,222,103,203, 81,172,246,204,178, 16,135,186,208,113,112, 8,142,153, 7,227, 88,211,161,202,184, 59, 67,240,119, + 42,213,248, 84,193,150, 49,138, 6,166,113,168,109, 77, 5,101, 16,147, 58,113,124, 38,127, 39, 29,161, 89,149, 84,124,233,101, + 40,157, 16,216, 54, 90,214,143,141,181, 44,150, 34,123, 87,211,210, 26,193,187,192,187,110, 95,213,217, 41, 58,236, 31, 38,206, + 34, 87,176,182,133,210, 13, 54,139, 53,229,192,239,247,200, 72,196,201,214,178,102, 51,148, 53,150, 16,180,226, 11, 62, 64,177, +232,183, 58,105, 10, 32,139,109,130, 82,210,231, 66,234,225, 92,119,246, 31,250,142, 81,247,232, 74,209, 65,190,236, 22,180, 42, +145,229,220,202,152, 70, 7, 55, 57, 34,197, 41, 18,244, 26,109,152, 53,192,113,205,199,251,213, 35, 44,108, 57,179, 34, 39, 52, + 66,204, 57,222,101, 14, 92, 86, 0,177, 20,111, 25,149,231,158,145, 56, 18,148,196,152,193,123,228, 28,249,156, 78,236, 21, 23, +200,177,208,200, 68, 77,123,203, 60, 98,167,179, 72,208,138, 8, 84,148, 9,182, 79, 73,221,208,154,168,164, 66, 42, 65, 62,239, + 72,223,135, 88,108, 87, 62,243, 93, 97, 32, 57,161, 51,167, 4,219, 72, 70,135,163,218,188, 74,206,121,129,155,145,245, 46, 97, + 28, 74,152, 16,125, 38,211, 68,191, 59, 4,237,167, 21, 59, 13, 74,252,118, 57,143, 61,167, 85,198,144,144,120, 31, 29, 67,164, +245, 8, 3,224, 75, 24, 74,100, 13, 24,164, 32,122, 32, 59, 83,200,185, 34,143,162,186,211, 7,235,221,156, 18,251,194,233, 34, + 14,126,170,153, 10,168, 5,144,172, 84, 70,193, 96,154,242,187,150, 53,109, 46,204,151, 50,169, 45,209,179,197, 46,157,168, 75, + 47, 43, 87,114,156,147,238,131, 58,118, 18, 88,227, 8, 47, 11, 74,105,155, 15,158,224,105, 87, 18,188, 7,178,174,162, 54,207, + 65, 39,197,135, 90, 42, 52, 18,219,204,187,173,242, 48,119, 28, 29, 57, 77, 30, 74, 59,116,139,142, 58,110, 85,246, 48,177, 70, + 8, 30, 95,234,134, 51,215,165,164,206, 6, 5, 19, 27,169,170, 35,239,119,170, 94,191,116,180,195,192, 17, 15, 87,114, 37, 99, + 57,168, 64, 72, 73, 0,127,165, 42, 39,186, 80,239,230,176, 4,122, 29,206,121,178, 28, 48,210,210,187, 0,173,100, 21,140, 8, + 38, 54, 21,113,196,252,144, 16,104, 95,155, 6, 74, 27, 62,200, 53,220, 20,168,144,104, 27, 78,149,146,208,134,193, 6,121, 30, +245, 21, 71, 65, 57, 60,136, 48,167,102,223,101, 78, 21,151, 72, 65, 31,116,208,104, 37,170,248,166, 84,128, 2,204, 78, 86,138, +210,166,152,129, 47, 13,237,195, 36,128, 97,152, 48,236, 18,118,183, 87, 80, 74,227,234,109,139,110,177,132,237,150, 88,157,156, +194, 52, 11, 60,126,245, 37, 62,254,147,159, 32,184, 17,253,195, 61,238, 46, 47,177,187,223, 33,186, 8,187, 92, 66, 44, 55,104, + 87, 27,164,224,225,199, 30,251,187, 91, 28,246, 61, 30, 46,190,193,238,246, 26, 79, 94,125, 1,219, 6, 52,235, 14, 95,252,179, +159,224,245, 55,223, 97,236,183,136, 49, 97,177, 94,163,223, 95, 98,185, 89, 32,191,190, 4,114, 70,127,152, 88,197,156, 24, 86, + 68, 7,192,213,229, 1,182,105,209, 88, 64, 36, 18,146, 72,173,233,210,190,191,199,119,195, 1,109,215,146,207, 87, 40, 24, 13, +120, 37,113,232, 3,148,182,120,244,180,197,212, 31,112,243,254, 10, 55,151,215, 88,174, 22,248,179,191,248, 5,134,195,132,127, +247,127,252, 91,220, 94,223,204,234,106, 30,127,106, 83,132, 96, 36, 92,116, 99, 79, 97, 36,156,152,165,141,170,246, 18,211, 24, + 18,103, 26, 61, 95, 26,154,186,216,192, 2,161, 66,112, 35, 82, 30, 93,172,155,147, 53,214,219, 53, 22,203, 5, 22,171, 69,165, +190, 77,163,195, 56,121,188,191,184,192,208,247,216,221,239, 40, 95,192,106,104,107,113,122,182,129,144, 26, 96, 33,205, 56, 76, +184,187,121,128,115, 30, 33, 56,186,148,121,245,164,181,228, 11,119, 78, 91, 19, 0,140,213, 8, 33,179,173, 83, 64,106,129, 24, +102, 94,188,109, 8, 95, 76, 23, 13, 29,174,198,106,178, 19, 49,236, 34, 86,171,149,172, 0,144, 20,203,193, 87,128, 52,244,103, +154,182, 97, 74,154, 97,187,153,226, 46, 40,213, 44,131,134, 11,248, 18,105, 73,110, 28, 15, 9,210,234, 40,109, 8,188,100, 13, +150,155, 18,120, 52,112, 67,146,144,162,167, 51, 40, 6,178, 59, 49, 88, 37,167, 57,121, 43,242,190, 20, 71,157,105, 81, 5,215, + 40, 76,254,179,199,151, 5,101, 82,232,153,220,199, 83, 77,173, 9, 77, 29, 99,164,149, 29,127, 23,189,119,181, 96, 39, 72, 87, +233,202, 20, 20, 23,244,169,166,210, 73,114, 75, 48, 14, 86,113, 48, 20,117,121,185,162,101, 83, 74,200, 74,113, 17, 95,160, 61, +197,242, 43, 42,191,188,132,229,228,228,128,228, 17,203,174, 92,228,218,164, 73, 33,105,148,174, 8,149,109, 77, 83, 47,134, 2, +154, 33,209, 93,161,255,177, 86, 68, 50, 14,150, 87, 54,200,146, 33, 60,196, 80, 72, 60, 42,166,164,182,200, 94,117, 64,105,166, +211,177, 21, 77,136, 8, 45,136, 46, 90,214,155,211,232,120, 55, 28,185, 59,167, 99,117, 26,139, 86,137, 58,123,194, 39,143,172, + 12, 39, 81,156,119,161, 58,173, 98, 34,141, 10, 56,156,135, 64, 99,129, 38, 47,153,238, 44, 36, 62,123,195,220, 24,146,102,160, +140,201, 5,105,152,152,202,231, 67,100,205, 81,209,119,249,154, 28, 72,152,216,204,154, 25, 57, 95,220,114,158, 62,148,233, 93, +154, 8,137, 27, 66,100,215, 21,115, 1, 56,144,137,186,122,182, 46, 34, 49,209, 78, 32, 70, 1, 63, 77,179, 70,133, 53, 32,101, +162,146,170,232, 52, 66, 7,222, 35,145,233,158, 20,184, 49,230, 58, 82,108, 90, 11, 37, 43,225,129, 20,227, 70,147,218, 61,209, +104, 36,120, 42, 12, 28, 43,205,189,247, 12,132,161,135,221,243,126, 26, 89,240, 62, 94, 32,129,132,106,110,162,241,104,129,242, +107, 45,107, 54,114, 8,148,144,102,155, 22, 37,159,209,179,119,190,118,188, 53,248,128, 14, 1,105, 56, 77,141,211,219,234,159, + 97, 69,172,155,124,253, 57, 37, 91,183,120,207,139,218, 82,178,157,196,243,197, 75, 80,143,196,214,181,161, 10,223, 34, 43,213, + 5, 31, 4, 33, 2,109, 67, 59, 69, 93, 57,214, 36, 98,145,149,105, 79,254,203, 24, 60,141,218,142,196, 71, 82, 10, 76, 35, 85, +252,101,215, 24,120,175, 68, 99, 33, 95, 4,142, 31, 4, 72,104, 93, 4, 21,105, 78,249,209, 4, 4,129,144, 8,211, 68,161, 19, + 34, 3,201, 99, 26, 60, 43, 65, 3, 82, 0,134,224,177,191,167,247,183,233, 90,216,166, 69,183, 92,161, 91,109,208,174,214, 48, +237, 2,139,213, 18,143, 95,157,224, 49, 18,146,159,208,239,246,136,110, 66,202, 9,211,100,208, 46, 86, 88,157, 62,130, 27,122, +244,187, 59, 28, 30, 30,240,238,171,191,195,254,201,167,120,252,226, 41,158, 34,237,237,155, 0, 0, 32, 0, 73, 68, 65, 84, 62, + 63,161,104,212,195,136,105, 18, 80,198, 98,185,110,113,123,189,135,182, 68,191,146,236,197,213, 6,188, 79,141,152, 92,134,181, + 22,109, 67,246,199, 47,126,252, 2, 41,101,124,247,205, 59,236, 14, 7,108, 79,183,216,158,174,209,247, 3,220,142, 70,185,144, + 13,158,125,114,138,126,119,192,229,155, 75, 92,190,185,192,221,245, 13,172,213,248,217,159,255, 20,155,211, 13,190,254,213,215, +248,246,235,111, 49, 77, 36,150,155,198,137,227, 71, 57, 50,145,191,216, 66,154,106,127, 73, 5,251,152, 18,172, 32,111,105,204, +153,247,122, 28, 97, 42, 40, 20,168,211, 26,203,213, 2,203,245, 18,235,237, 26,109,215, 97,181, 89, 84,190,115,206,192, 48,140, +152,134, 9,151,239,239, 49,254,225, 29,239,241,201,134,105,172,197,114,213, 97,177,236,112,254,228, 49, 98,136,216,221,239,225, +156,199,219,215,239, 49,244, 3, 29,248, 37, 83, 65,203,122, 89,185,113,226, 34,135,148,242,166,184, 73, 74,215, 92, 98,136,115, +172,106, 98, 41, 36,178,204, 48,172,112,206, 37, 0,133, 83,191,100,153, 24,241,212, 12,133,249,157,136,105, 65, 25, 8, 37,210, +147, 58,199,224, 19,140, 85, 71, 76,119,186,224, 10,115, 62,229, 12,149, 51, 32, 88,181, 29,231,203, 41, 48, 67,162,105, 27,238, + 2, 35,188, 27, 17,252,132, 24, 27, 98,206, 91,131,224, 38,140,158,254,125,153,238, 37, 30,107,131,153,219,130,131, 83, 40, 38, + 58,214, 11,189,168,210,139, 93,183, 56, 79, 10,228, 71, 1,181,208, 42, 48, 27,205,112,157,118, 65,190,244, 99,145, 91,140,145, +246,255,156, 71, 95,108, 70, 18, 52, 78,151,236, 41, 46,217,224, 82, 72,100, 81,210,226, 34, 50, 99,125,139,255,185, 28,224, 41, + 70, 8,165, 25, 45,186,160,223, 93,138,186,131, 46,133, 68,101,232,231,196,150,212, 9, 57,115,119,158, 60,147,205, 4,167,235, +177, 0, 42, 71,206,112, 79,156,216,214,208,249, 98, 44,130,119,124, 97, 8,216,150,186, 95, 32, 85,190,123,138,129,167, 14, 5, + 36, 35,153, 19,239,235,200, 88, 40,194,105, 27, 67,208,176,224, 2,148,209, 64, 10,164,118,231,177,114,244,196, 64, 32, 54,129, +128,247,185,102,164,151, 4,203,196, 48,154, 88,156, 65,124, 15,184,224,209,118,182,118,243, 51, 82,149, 20,238,153, 93, 75,197, +207,157, 82,230, 59, 45,115, 30, 7,105,170, 42, 57,212,168, 15, 38,178,180,227, 7, 93,232,117,245, 92,246,244,236, 76,201, 51, +217,175, 60,203,178,102,161,204, 77, 47,221, 73,170,142,241, 75,252,183, 64,137,100,229,169,108, 49,168, 49, 52, 40,149,245, 67, +164,247,189, 4, 52, 81,224, 88,174,220,139,140, 4, 77, 85, 12,197,120, 22,123,151,243,129, 85,211, 13, 31, 24,186, 2, 39,114, + 6, 9,169,216,206, 80,184,234,222, 11,230,180,103, 86,117, 39, 86,239, 18, 94, 79, 41,137,172, 40, 0, 33,184, 17, 17,236,247, + 99, 91,130,119, 52,166,138, 49, 64, 75,186,144,130,151,252,179,192, 24, 65, 82,229,106, 37, 33,172, 97,181, 60, 42,240,161, 88, +131,200,167, 78,163,240,162,150,117, 19,137,149,154,150, 99, 6,197,156,135, 28, 60,170,165, 65,112,181,227,125,228, 64, 7,212, + 75, 31, 12,231,192, 81, 40, 67,206,229, 61,104, 24, 62,194, 92,103, 14,155, 16,108, 37, 33, 76,101,130, 23, 52, 14, 44, 52, 47, +129,249, 50, 46, 25,243, 49, 37,182,116,208, 62,200,141, 19, 97, 50, 21,117, 72, 5, 91, 88, 38, 30,200,242, 8, 35, 73, 29, 68, +202,160,177,170,204,104,187, 22, 34, 51, 61,203,187,218,237,147,127,210, 83, 70,113,166,177,176, 31,247,144, 82,226, 94,105, 24, +219,194, 52, 13,150,235, 13,214, 39,167,208,205, 2,221,122,141,118,185,196,250,252, 17, 71,185, 42, 68,239, 17,188,131,214, 51, +222, 51,248, 9,119,151,151,184,125,127,133,183,223, 28,144,226,167,248,232,147,199, 88,110,150, 56, 9, 2,239, 47,238,176, 61, + 63,197,221,245, 61, 76,163, 97, 27,129,105,114, 48, 6, 16,136, 56,236,129, 97,162,189,166,181, 2,198, 10,252,233,207, 63,197, +237,205, 30,191,254,255,254, 17,155,237, 18,159,124,241, 17,188,243,216,221, 61,160, 93,180,104,187, 37,214,219, 5,118, 55,183, +248,235,191,252, 79,184,190,184,196, 56, 78, 88,174,150,248,242,167,159,227,179,159,124,142,239,191,254, 1,127,245,151,255,133, +118,185, 82,162,109, 59,246, 66, 75, 76,195, 80, 29, 8,169,138,110, 36,239, 68,139, 85,138, 86, 72,145, 47,169,213,154,240,189, + 39,231,167,216,156,108,176, 98, 17,154, 16, 84,228, 78,163,199, 48,140, 56, 28, 6, 92,190,191,163, 14,141, 49,198, 49, 70,172, + 56,174,243,236,227,167,124,129, 81, 40, 67,127, 24,112,216, 83, 30,247,126,119,192,208,247,200, 41,240,148, 40,179, 22,196, 2, +160,194, 59,149, 32, 16, 9, 6,212,112,129,196,163,238, 50, 13,107,187,150, 15,196, 84,185,239,134,191,167,133,151, 94,186,131, +156, 56,251,186,160, 44,235,234, 76, 84, 33, 85,153,210, 53,109,131,224,124,197,223, 2, 18,221,210,146, 3,196,146,197,174, 4, +121,104, 99, 32, 36,173,251,166,209,241, 1, 73,218,156,154,179, 34,105, 90, 69,124,235, 0,239, 38,164,200,207, 42,201,157,176, + 88, 46,161,140, 65,211,182, 8,126,164,139, 44,209,184, 83, 8, 1,109, 77, 77,146, 75, 12,110, 81,108,225, 44, 86, 55, 33, 0, +213, 88,226,109,112,240, 11,141, 96, 53,255, 57, 98,172,207, 98, 54,154,212, 52, 44, 82,244,206,147,110, 6,212,160,128,119,248, +225,232,192, 15,145, 84,240,145,191,175, 82, 10, 4,254,187, 83,200,188,183, 47,171, 1,250,255,139,171, 37, 21, 26, 90,156,195, + 64,164,152, 69,108,197,193, 83, 58,116, 32, 33, 4, 7, 37, 50, 34, 18,239,158, 49,239,239,211, 44,166, 43,175,151,188,216,138, +166, 63,108,163, 12, 12,214, 41, 49,200,222,209, 88,154, 82, 34, 3,132,230,108,112,182,172, 85, 60,111,189, 39,200,243,142,164, +160, 23,134, 35, 96, 3,164,166,201,227, 52,122, 22, 18,131,245, 20,142,186,250,144,145,148,172, 66, 62, 82,184,211,251, 64,204, + 30,202, 37,160, 2, 81, 86, 29,194,208,143,164, 62,151, 92, 16,242,181, 8,163, 33, 20,113, 57,102, 26,104,172, 65, 58,153, 85, +227,197, 13, 2, 68,158,132,138, 90, 0,148,213,140,228,201,147,100, 48, 79, 18, 5, 49,203,175, 95,240,132, 5, 76, 10,100,203, + 34,233, 58, 48, 11,223, 50,133, 51,201,156, 72,252, 40,102,149,127,138,244,185,148,243,135,214, 96, 28,175,154, 34,162, 15,148, + 36,202,207, 65,140,158, 89,242, 84,248,102, 0, 58,243,242,189,236,210,133, 20,104, 26, 59, 67, 98,142,186, 84,231,104,204,133, + 48, 71, 22, 74,201, 62,196, 34,211,103,145, 73,211, 18,129, 74, 73,234,138, 33, 4,140, 84,240, 73,178,239,112, 6,199,120, 79, + 72,189, 84, 72, 71,188,195, 55,214,192,251,128,110, 97, 9, 13,169,228, 60,146,130,168,177,125, 37,153, 73, 72,197,157, 80,233, + 68,128,166,177,108, 15,202,213,114,160,217,126, 82,115,167,107,130, 20, 42,251,183,120,199,173, 53,196, 29,230,203, 87, 43,137, +161,239, 73, 68,199, 56, 44, 99, 40, 77,171, 91,118, 20,173,105, 12,252, 68, 94, 81,194,206, 82, 81,225,189,167, 78,136, 65, 10, +101,183, 89, 34,111, 11, 86, 80, 21,190, 47, 23, 71, 5, 22,225,125,134,150, 36,244,200, 41, 66,100,218, 93, 57,231, 56, 67, 90, + 86,245, 47,111,131, 32,133,134, 64, 68,244,142,121,249, 25,211, 88, 84,191,168, 35, 57, 57,167, 64,210, 3,233, 71,184, 56,193, +245,192,238,250, 2,151,166,129,177, 13,218,197, 18,237,114, 5,221,110,112,242,248, 49,150,155, 13,150, 43,226,166,215, 64,156, + 4, 52,203, 22, 31,157,156,225,229,151, 95,162,223,237,240,112,251,128,254, 48,226,241,243, 51,108, 58,138,201, 61,244,142,179, +224, 19,144, 35,189, 71,110,130, 75, 18,195, 68,159, 77, 99, 13,140,150, 88, 46, 59,252,254,215,223,163,223, 29,240,249,143, 62, +194,106,221,194, 77, 30,219,147, 21,242,233, 22,135,135, 3, 46,190,251, 22,255,254,191,254, 3,238,174,175, 49, 77, 14,139,213, + 2, 63,253, 23, 63,195, 47,254,213, 47,240,246,187, 75,252,135,255,243,223,163, 63, 12,228, 37, 55, 6,237,146,118,125,235,147, + 53, 37,217, 77, 19, 0,138,198,181, 45,117, 22,221,146,130, 76,186,197, 2,135,253,200,222, 83,138,239, 61,125,116,130,110,217, +241, 56, 45, 97,236, 29, 14,135, 1,253,205,136,200, 83,166, 34,234,105,187, 37,182,167,167,196, 46, 80, 10, 67, 63,225,176, 31, +160,141,192,122,179,132, 16, 18,195,224,216,206, 72,153,225,221,130, 69,141, 39,167,149, 92, 86,184,230, 49, 38, 72,205, 93,104, +189, 72,243, 7,128, 21,197,211,142, 18,171, 90,186,196, 57,106, 82,212,221, 94,138,177,218,199, 82,140,104, 91,133,105,242,144, + 70, 85,244, 41,219, 97, 96, 20,131,163,216, 19,159, 98, 34, 14,132,165,181, 68,112,133, 5, 78,239, 83,206,242, 8, 24,163,121, +159,207,201,135,200, 92,168,134,122,144,122,231,232,178, 8, 30,147,163, 20,196, 28, 61,139,190, 56, 19, 34,120,236,238, 71,180, +221, 26,182,109, 96,109, 7, 63,141, 60,238, 22,243, 46,149, 5,101, 74, 41,248, 20,217,199, 79, 35,224,194, 27,143, 33, 64,105, +195,138,121,137, 12, 87,249, 18,162,114,184,231,174,139,196,120,130,131, 69, 72,187,210, 31, 40, 79,129, 52, 63,153, 39,112,190, +238,231,227, 17,211,163, 76, 84,152,143,133,152, 2,140,110,136, 14,167, 36,143,124, 81, 65, 40,206, 79,212,129,114,107, 94, 98, +123,161, 18,180, 80,204,187, 96,209, 28,239,235,227, 7, 97, 53,133, 16, 63,143,123, 51,127,150,197, 29, 68,225, 47, 12,164,242, +129, 86, 72, 74, 67,170,166, 2,111, 52,227,135, 37,199,150,166, 24,200,232,205,123,103,193, 17,186, 82, 73,128,131, 70, 76, 99, +152,126, 71,128, 24, 31, 28,209,210, 34,144,146, 71,138, 35,101,102, 20,229, 62, 50,100, 40,246, 58,138, 27,157,122,199, 40, 89, + 85, 27, 56,231, 99, 73,230,173, 73,106,193, 57, 8,165,170, 31,221, 88, 75,231, 96, 85,190, 3, 57, 56,166,196,209,119,163, 48, +221, 41,100,201, 87,168, 13,216, 65, 85, 92,135, 57, 70,164, 50, 17, 78,168, 84, 62,169,152, 58,167, 24, 18,196, 34,241, 34, 40, +204, 16, 85,148, 73,211, 20, 14,223,201, 37, 21, 14, 21,182, 68,133, 51, 29,196,217, 5,100,169, 43,150, 55,197,192, 5, 89,170, + 46,148, 88, 94, 23, 55,120,153,173,144,186,120,132, 37,251,228, 34, 47,241,181,214,220, 13, 24, 8, 67,151,107,219, 90,178,110, +229, 4,163, 53,167, 45,205, 42, 83,147, 20,131, 49, 2, 87, 66,186,142,206,140,177,204,147,167, 42,212, 7,186,240,173,229, 61, +189, 15,136, 70,195, 24,170, 78, 76,211,240, 23, 56,207,226, 23, 41, 63, 56,132, 82, 76,156,252,202, 23, 60,239,196, 20,255,185, +166,181,136, 41,161,209, 18,110,154, 5, 48,164,108,253, 16,195, 72, 30, 72, 26,193,135, 92,200, 66,115,216, 68, 97, 28, 15,253, + 64, 63, 95,196, 10,116,112,158,132, 67,218, 24,130,185,196,116,228, 65, 37,191,164,159, 28,143,193, 98, 61,152,221,228,224, 29, + 67,110,254,136, 79,159,139,239,157,190, 29,117,220,228, 16,235,223, 17,185,155, 39, 42, 32,211,146, 36, 19,186, 92,137, 32,140, + 8, 83, 68, 10,244,197,136,169,236,110, 82,181, 14, 38, 6, 24, 20,190, 54,249,230,115,237, 58,168,123,160,177,125, 78, 30,227, +225, 30, 25,111,112,245,253, 87,144,186,129,237, 54, 56,125,242, 12,235,179, 51, 44,215, 11, 10,195,113,190,122,170, 87,235, 21, +206,219, 5,118, 15, 35,134, 62, 96, 28, 3,158,126,116,142,175,126,253, 61,114,166,105,129, 81, 17, 15,187, 30,214, 40, 60,236, + 73, 4,216,182, 22,221,162, 65, 74,192, 52,121, 32, 69,188,252,244, 9, 91, 58,200,167,249,213,175,254, 9,187,235,107,228, 52, + 34,184,128,199,207, 78,241,236,229, 35,124,241,147,207,241,163,255,230,231,136,131,195,175,254,250,215,232, 15, 3,190,252,249, +143,208,118, 45,173,131,120,210, 84,198,109, 57,103,130,182,112,103,100,216,227,239, 38,143,177, 31,113,121,113,141,215,223,190, +193,187,215, 23,144, 34,214, 36,178, 57, 4,137, 16,183,133,181,191, 92, 45,177, 92, 47,113,122,126,138,172,104,188,124,127,251, +128,155,171, 91,244,135, 1, 41, 69, 76,227, 88, 87, 48,132,103,142,213,110, 53,241, 90, 42, 48,193,174,116, 84,179,216, 38, 34, + 67,162,227, 29,125, 41, 46,203, 33, 77,222,106, 67,150, 37, 30,139, 23,141,134,214,154, 65, 30,138, 87, 14, 20, 83, 76, 42,238, + 92,247,234,180,223,101, 45,137, 20, 21,161, 92, 4, 57, 84, 8, 4,100,157,144,179,162,204,247,144, 33, 11, 53, 76, 75, 22, 46, + 9, 42, 16, 20, 77, 99,202,179, 21,188, 71, 74, 1, 90,102,248, 24,201,123, 12,162, 36,210, 52, 35, 50, 28,133,232, 92, 82, 40, + 64,229,202, 6, 79, 33,160,223,223, 66,200, 83,242,219, 35, 99,191,123, 96, 97, 89,201,209,214, 85,255, 67, 43,185, 60,115,212, +249,249, 87, 74,193, 88,250,253,181,197,156,120,197, 87,122, 81,198,151, 20,203,197,178,227,115,132, 69,196,153, 98, 90, 73,111, + 20,120,122,134, 74, 27, 44,156,112, 58,155,230,139,105,206,193,166,241, 50,209,249, 4,124, 14,148,106,103, 27,196,224, 97,155, + 14, 41,120, 74,175, 99,181,124, 9,124, 41,251, 87,114, 71,102, 62,216, 73, 95, 64,223,227,217, 26, 87,252,252, 36,248,227,105, +170, 50,128, 80,144, 82, 83,247,201,191,147,109, 23,204,244, 39, 81,178,110, 13,143,192, 35,119,241,164, 53, 10, 41,212,179, 88, + 73,138,139,165, 98, 78,176, 72, 90,127,136,187, 69,170, 14, 35,169, 20,118,119, 59, 18, 17,178,254, 35,103, 1,104,112,199,155, + 72, 15,148, 51,144,128, 20,248, 28, 76, 9,218,146, 24,154,178, 22,152,235, 15,192,176,112, 85, 25,197,186,165,121, 58, 1,145, + 17,125,224, 98, 55,205, 66,112,102, 93,208,244, 57, 86,221, 88, 17, 4,210,243, 46,103, 56, 13, 63,255, 66, 10,164, 16,217,161, + 69,174, 39, 42, 94, 12,162,247, 92, 28,204, 69,101, 6, 5, 40,209,254, 95, 86,225,105,228,207,176,172, 24,200, 90,152, 17,146, +171,118,187, 34,176, 45,107,143, 66,191, 75,108,137, 78, 44,184,203, 41, 66, 23, 59, 4,253,135,129, 59, 53, 98, 68,147,112,204, + 85, 81, 8,142,210,162, 68,141,227, 35,177,142, 54, 18,193, 43,116, 93, 3,231, 40,254,148, 8, 77, 30, 66,116,149,242,150,132, +134,246,134, 24,202, 28,147, 74,214, 49,170,146, 10, 77,174,192,234,141, 81,117, 68, 79, 20,157,204,254, 72,133, 24, 80,119,133, +101, 31,122, 44,128, 75, 57,163,181,134, 60,129,153, 18,138,168,155,205,117,247, 81,114,172, 51, 43, 87, 75,194, 84, 56,218,243, + 75,254, 2,185,105, 98,212, 95,102,177,145,169,160,253,218,245,148, 81, 37,239,240,156, 11,112, 35,117, 96,221,162,225, 49, 79, +132, 68, 73,199, 10, 85, 48, 72,130, 15, 87,147,242, 4, 7,203,144, 10, 57,209,239, 42,114, 21, 65, 9, 8,158,174,148, 24, 71, +138,249, 75,130, 46, 42, 41, 18,130,155,120,132, 25, 33,129,138,151, 36,251,143,228,181, 7, 79, 79, 4,169, 89, 73,181,235,235, +107,163,131, 60,192, 52,221, 7, 96, 31, 32, 64,120, 7, 55,238, 49,238, 46,241,238, 27,129,152, 52,186,245, 22,139,237, 25, 86, +219, 83, 74, 52, 59,140, 76, 78, 18,232,191,127,135,152,128,245,118,133,237,249, 6,151,239,110, 17,188,199,192,200,199,224, 41, +126,182, 91,118,176, 86,227,238,102,143,245,166, 69,138,100,161,122,184, 31,177, 94, 91,184,126,135,174, 81,248,201, 47, 62,129, + 50, 95, 32,134, 76, 33, 14, 2,216,223,237,240,112,187,195,127,252,215,255, 9, 99, 63, 96, 26, 61, 54,167, 39,216,158,159,225, +201,243, 71,208, 90,225,225,126,135,221,221,129, 56, 9,200,120,184,125,192,187, 31,222,227,230,234, 6, 55,239, 47,113,127,123, + 71,137, 93,193,215, 49, 93, 25,135,249, 20, 89, 44,103, 96,155, 22,171,245, 10,219,211, 45,186,197, 2,237, 98,129,148, 5,250, +195,136,161,239,241,250,251,247, 24,107, 98, 31,143,184,185, 83,179,214, 64, 25,195, 99,233,204,106, 95,195,157,114,195,154, 10, +207, 41,111, 36, 0,178,156,194, 86,242, 22, 66,240,213,194,164, 20,248,243,242,232, 15, 61,154,166,229,130, 79, 99, 28,124,117, +158,152,166,161, 44,110,214,109,144,130, 61,212, 64, 9, 99,168, 75,167,221, 98,134, 53,170,118,174, 90, 43, 40,163,235,168,190, + 93,144,232, 75, 55, 30,221,154,186,124,207,151,115,228, 78,220, 24,130, 88, 73, 33,161, 12,231,132,115,135, 67, 74,101,138,112, +205, 52, 93,174,151,110, 1,131, 8, 41, 17,121,119,152,120, 37, 70,212, 52, 18,149,141,253, 30, 98,181, 65,211,116, 8,158,196, +130, 5, 89, 82,136,153, 74,235, 15, 46, 83,218,147,234, 82,119,243,116,177,169,153,223,228, 44,144,204,107,136, 28,133,153,248, +242,148, 21, 69,237,157,175,194, 85,128,206,179,178,211,151, 74, 1, 49,147,245, 47,229,163, 36, 54,240,120,159,190,147,101, 84, +235,125, 64,219, 52, 53,102, 53,231,146, 8,150, 0, 73, 14, 28, 98,110,112, 88, 9,143,225,165, 32,148, 90,113,192,100, 30,235, +214,249, 63, 47, 44, 68, 25,239, 74,138, 36,149, 82,215,117, 89, 25,193,107, 99,232,217,224, 8,220,162, 11, 2,171,244,105,170, + 33,129, 36,145, 65, 98, 47,161, 36, 4, 7,157, 20, 5,184, 16,162,118,202,197,253,160,216,106, 40, 65,159,249,110,183,167,207, +145, 11, 85,239, 36, 71, 83,115, 51, 83,109,105,148,131, 80,162,124,165, 86,180,234, 65,129,188,164,138,243,142,145, 45, 98,222, +147, 61, 49,211,218,162, 92,134,180, 94, 97,215, 82,240, 92, 52,230,186,167,102,198, 47,175, 75, 35,211,254, 68,229, 51, 20, 33, + 47,217,206, 88, 55, 32,242, 7,252,129, 24, 35, 69, 95, 11, 81,109,173,101, 58, 18, 75, 28, 49,243, 5,104,154,205,188,139, 52, + 83, 74,117,177,123,170,146,254,201, 43,187, 48,113, 56,145,155, 45,141, 57,213, 59, 60, 35, 19, 38,182,166,177, 85,166,121,192, +195,189, 67,211,146,109,192,115,213, 65,132, 42, 85, 35, 72,149,150,148,150, 99, 45, 95,254,137,119,207, 98,142, 19, 84,244, 97, +216,134, 18,102,192, 99,230,200,191, 84,211, 8,254,187, 81,197, 70,203,101,203,226, 6,141,148, 51,133,179,180,134,213,246, 52, +142, 79,129,114,139,231,252,245,204, 44,119,122,243, 12,251,212, 11,163, 87,114, 97, 82, 66, 91,180, 86, 56, 60, 28,160, 12,147, +166, 82,230,144, 21,234, 24, 50,147,154,172,213, 85,132, 23,188,231, 78, 74,144, 32,143, 67, 25,178,160,240, 16, 64, 84, 37,167, +100,193, 80,244, 97,134, 41,132,128,192,201, 70, 19,219,106,142, 5,110,153,153,199,161,142,131, 82, 21,176, 20,223,105,136,137, +133, 46,162,198,225,106, 69,252,242, 16, 18,144,168,163,200, 49,112, 8,128,103, 66, 24, 42, 72,161,120, 27,179, 16,104, 26,205, +147, 1, 58, 24,148, 42, 15,179, 98,196, 36,103,134, 27,195,182,187,242,103, 80,237,130,185,242,183, 37,130, 27,112, 8, 61,198, +221, 21,238,222, 89, 58, 56,100,131,197,246, 20, 66,183, 80,218,146,135, 59, 1,166,161, 64, 15,231,128,221, 48,194,143, 35,116, + 75, 62,108, 37,129,221,125, 15,107, 37,218,206, 96,181,238,176, 94,183, 56, 57, 95, 66, 10, 5,231, 34, 39, 99, 53,136,145,158, + 17,109, 12,100, 78,152, 52,165,140, 45, 86, 43,174,178, 41, 10,247,221,247, 23,248,237, 47,127,131,155,203, 27, 76,227,132,152, + 34, 78, 30,157,227,233,243, 39, 88,109, 86, 56,127,124,130,147,211, 37,182,219, 14,111,190,215, 56, 60,236, 49,142, 83, 21, 67, +117,203, 14, 93,183,224,189,121,199,211, 36,178,116,246,135, 30,215,215, 23,152,198,145,139,129,192, 19, 36,208,229,173, 21,175, +152, 10,244,136,240,152, 4, 71,145,136, 37,146,149,167, 63,222,135, 42,208, 2,119,147, 50,129,213,191, 12,138,202, 96,187,151, + 2,178,230,216, 82,137,166, 51, 88,174,216,183,219, 16,189,112,161,215, 53, 44,101,142, 42,101,139,145, 36, 94,181, 86,154,138, + 47, 46,168, 41,156, 40,224, 48, 13, 92, 60, 11, 76,163,135, 49,179,134,165,172, 2,104,178,197, 35, 87, 67,107, 60,219, 52,244, + 89, 26,131,213,118, 22, 1, 81, 33, 75, 43, 63,226,180, 7, 76,125,143,137, 33, 82, 2,148,120, 69,214,172, 92, 3, 79,192,170, +241,156, 19,239,151, 37,251,199, 61,166,126,143,229,230, 20,203,245, 6,119, 55,215, 12, 11,161,201, 68,158, 1, 16, 16, 50,151, + 53, 48,159, 63,228,249, 15,133,191,175,112,132,150, 5, 98, 74,232, 44,229, 90, 72, 37,209,216,134,215, 23,162,194,170, 8, 39, + 77, 58,146, 34, 70,115, 44,230, 42,103, 66,161,251,149,131,183,160, 89,185,233,227, 44,121, 77, 62,111,198, 7,211,161, 31,184, + 32,153, 61,202,180, 70, 35, 55, 17,152,161, 33,114, 17,105,137,186,198, 40, 1, 55,243, 68,160, 0,143, 20, 55, 63,124,121, 27, +139,110,177,172,130, 96,197, 19,129,192, 5, 64,202, 25,201, 71, 2, 69,177,224, 75, 30, 5, 18, 81,240, 10, 19,218, 16, 96,219, + 14,198, 54, 20, 52,195,127,167,140, 14, 1, 10, 16,116, 31,140,195,136,254, 48, 16, 37, 47, 70, 30,221,147,130, 92, 73, 90,171, +130,253,244,166,105, 16,217,114, 45,181,230,168, 87, 77,211,145,226, 60, 98, 92,112,226,231, 67, 42,250,142,144,214, 36,177, 48, +121, 38,248, 21,177,103, 57,159, 83, 12, 72,209, 51,136,169,160,191, 36,124, 76,149, 8, 71,120,243, 2,240,103,134,124,221,126, +169,249,251,203, 77,165,146, 18, 1, 69,133,159, 42, 78, 90,213, 16,178,200,154,170, 34,158, 76, 53,241,174,196, 8,187,201,213, +181, 74,170, 94,244,192,171, 54, 70,219,214,158,151,158, 39, 93, 60,141, 37,108, 29, 57, 51, 74, 80, 86, 95,100,217,117, 16, 95, +184, 97,126, 58,165,185, 25,171,234, 3,206, 58, 6, 76,147,132,146,164, 84, 87, 0,119,189,196, 14,166,253,177,168, 86,174, 28, +121,108, 88, 68, 17,197, 82, 99, 21, 66,160,138,214, 88, 86,219, 26,133,148, 88,180,150,100,165,198, 73, 41,170,216, 39,215,177, +178,172,176, 28,239, 60, 23, 9,108, 7,209,108,159, 64,174, 25,203, 49, 37, 88,109, 16,193, 24, 78,109, 88, 65,108, 57,216, 62, +215,209, 38, 5,180,104, 30,227,210,216,168,237, 90,122,248, 35, 71, 93, 66,192,141, 14, 62,196,154, 46, 36, 56,116, 49,215, 61, + 73,170,222,196,178,195,175,116,163, 60, 31,102, 41,145,181,167, 68,173, 22,107, 16,133, 16, 0, 40, 99,214, 24, 33,141,226,140, +224, 68, 5, 68,177,232,164,217,215, 92,148,151,244,176, 23,228, 96,128,119,153,105, 95,236, 36, 96,221, 1,216, 39, 73, 93,202, +124,153,212,216, 79, 80,138, 16,197,100, 10,254, 61, 13, 31,112, 17, 49,236,241,240,254, 1,222, 17,175,223, 7,129, 96,159, 65, + 43,131, 47,127,242, 9,180,181,184,191,189, 37,128,208,148,208, 95,221, 99,179,182,120,249,233, 25, 94,125,241, 4,219,147, 37, + 14, 59, 7,239, 19,110, 46,123,158, 26,209, 30,240,226,237,129, 64, 42,163,167,192,149,137,242,232,165, 0,218,174,193,106, 77, + 86, 55,173, 21,206, 30,173,177, 61, 93,224,229,167,207, 48,244,244,231,250,195,128,221,253, 29, 30,110,111, 25, 30, 2,180,139, + 14, 63,251,243,127,142,229,170,195,237,245, 29,167,129, 73,236,238, 15,216,239, 15,216,221, 61,224,221,219, 27,140,125,207,214, + 22,170,152, 53,251,134,143,149,173, 0,112,146, 50, 94,172, 45, 46,161, 49,102,154,174,116,139,142,131, 50, 4, 91, 54, 13,171, +193,233,162, 48, 77,130,105, 90, 44,215,169, 22,152, 5,108, 83, 84,219,101,100,104, 27,195, 35,215, 84, 11, 90, 8,138,207, 44, +201,110,180, 91,167, 85, 77, 65, 61,151,144, 13,234,102, 35,166,129,108, 63,110, 20,117, 42,167,148, 64,112, 19,180,166,144,154, +174, 83, 85, 44, 10, 70,191, 18,160, 41,241, 56, 61,243, 78, 60,227,176, 3,147,235,116, 77, 86, 36,207, 50, 96, 27,138, 53, 85, + 77, 3,129, 6,235,237, 22,126, 26,105,229,192, 86,181,105,232,225,198, 1,110,114,164,228,230,213,128, 16,134,237,118,226, 40, +121,205,225,176,219, 65, 42, 93, 59,204,178, 7, 87, 74, 86, 0, 84,226, 98,186, 76, 3,169, 11,164,131,150,124,235, 17,182,105, +152, 50, 23, 89,225, 78,103,143,146,146,227, 88,117, 13,167, 34,193,169,194, 52, 6,242,217, 75,142,168,230, 73, 90,249,157, 73, +253, 46,184,139,166, 73, 1, 77, 73, 99,133, 99, 5, 63, 65,138, 22,224,209,126,177,174,149,104,106, 89, 83,227, 84,229,220, 19, +170, 86, 80,241, 94, 44,121, 57, 86, 98,102, 1,221, 72,148,221, 45,141,248,165,210, 80,202,194, 88, 66,246, 22,119, 14, 41,214, +109, 29, 49, 83,116, 43, 21, 17,132,220,158,170,245, 19, 71,175,165, 76, 64, 41, 14, 86,193,251, 0,153, 4,164, 81, 48, 58, 33, +103,186,252,189,155, 16, 99,196,112,160, 66,113, 28,136, 91,144, 35, 61,220,166,153,207, 91, 40,137, 12,133,105, 28,217, 59, 47, +145, 67,224, 73,142,231,139,146, 50, 23,164,226,238, 93, 74, 8, 86,189,151,145,124, 46, 8,238, 52, 19, 9,139, 55,191, 50, 82, +104,215, 75,147,209, 92, 66,147,184, 80,133, 66, 76, 64, 42, 25, 33,113, 22, 51, 22,254,124,217,103,151, 34,170,172,110,137,194, +234,235, 24, 62,113,232, 75,224, 34,163,232, 46,144, 83,181,170,129,157, 78,145, 39, 78, 37,208,135,254, 89, 88, 42,146,247,246, +179,250,189,248,156, 53,125,193,197,188, 7,226, 81, 11,177,127, 81, 71, 13,134,227,236, 92, 25,203,121,242,139,210, 27,156, 43, + 72,195,113,150,119, 17,159, 41,174, 32, 11, 24, 70, 74,133, 44, 19,101, 42,187,169, 70, 62, 54,109, 51,163, 6, 51,143,216,181, +129,212,154, 97, 17, 64, 74,179,234,179,188, 56, 34,209, 17, 36, 70,114,117, 43, 56,166, 81, 41, 89, 89,200, 77,107, 43, 31,186, + 64, 99,102, 79,162,172, 2, 6,207, 2,140,166,109,170,221, 37, 56, 15, 55, 18, 96,197, 26, 77,162, 26, 69, 9,117,166,177, 53, + 34,211, 51, 15, 94,176, 74,186,140, 17,173,165, 32,140, 20,200, 74, 22, 98,172,106,252, 92, 70,249, 70,177, 13,136,109,120,152, + 63,168, 2,181, 41,105,211,218,144,223, 94, 73,170,186,203, 88, 71,130, 98, 25,115,142,200,165,115, 98, 85,189,119, 19,237, 81, + 57, 64,131, 42,254,204,153,195,243,206, 45, 29, 17,237, 10, 3, 89,105,222,181, 87,254,112, 62,226, 12, 83, 90, 87, 40, 14,135, +242,144,179, 23,155, 44, 28,146,119,246, 0, 88,160,103,154, 9,187,171,247,248, 47,255,247,128,255,254,127,249, 57,126,244,211, + 87,184,190,218, 67, 43,129,243,117,135,207, 94,157,226,110, 8,248,230,171,107, 24,115,207, 99,198, 50,177, 16,213, 82, 89,126, +102, 8,180,223,214,182,133, 93,172,107,248,136, 16, 64, 63,140,200,217, 99, 26, 70,184,201,161,237, 12, 78,207,182,216, 72,137, +118,209,178,141,135, 0, 23,169, 70,116, 18, 29,113,115,118,142,229,170, 69,219,145,120,116,255,176,199,238,126, 15,239,105,236, +154, 98,194, 56, 76, 8,129,114, 9, 74, 86,183,102,244,171, 16, 18,191, 88, 89,124,242,106,139,209,174,241,126,239,240, 48, 56, + 76, 62, 96,242, 17,147, 39,118,122,165, 74,101,218,167,199, 20, 72, 77, 43, 19,180, 20,117,199, 14, 22,150,129, 1, 51,145, 41, +131, 74,137, 58, 98,165,247,170, 60, 45,153,225, 42, 25, 66, 36, 68, 79,240, 18,109, 52,192,140,121,106, 67, 51,160,192,192, 39, + 93, 45,107, 49, 38, 52,173,173, 69, 59,173,186, 84, 29,191,187, 34,114,229,231, 33,248, 80, 99, 74,203, 10, 12,137, 86, 3, 49, +120, 98,186, 43, 13, 32, 96, 56,236,121, 21, 86,162, 47,103,246,132,181, 13, 86,235, 21, 97, 98,189,195,238,238, 30,253,254, 1, + 3, 39, 93, 21,219,106,157,102,100, 32,134, 9,222,187, 90,204, 83, 55,171,171,200, 85,114,251, 71,100, 70,186,228,149,214, 80, + 82,147, 88, 19, 64,100, 98, 27,202,100, 79, 72,178,226,166, 4,221, 52, 53, 95,158,127, 4, 31,210,140, 41,173,104,106, 70,134, +178, 15, 61, 51,241, 49,178,218,190,164,182,205, 77, 20,105,105, 74,132, 51,142,108, 80,197,125,163,149,161,247,136,109,134,162, +136,230,152,147, 33, 89, 25,159,114,168, 74,116,250,188,116,181,100, 10,169, 25,215,171, 96,108,139,110,177,226,157, 55,224, 3, + 51,228,153,158,150,217, 83,158,121,173, 67,213, 36,117,147, 34,211, 52,215, 59, 95, 47,246,136, 12, 99, 91,104,219,113,190,129, +132,212, 10, 18, 30, 66,144, 11, 33,101,129,105,156,224,221, 84,217,240, 66,170, 26, 74,162, 21, 72,251,163, 4,175, 43, 34,132, +164,174, 92, 8, 1,164,204,182, 58,130,176,208,249, 36,104,213,171,115,205,241,144,146, 84,244,133,179,159, 93, 41,156,202,133, + 45, 48, 14,142, 21,246,177, 90,199, 34, 3,204, 66, 72, 85,248, 39, 65,107,233, 50,241,201, 66, 67, 42, 84, 61, 69,224,169,111, +121, 13,145,157, 45,213,110,200,150,232,210,156,149,233,177, 86,244,247, 17,194,152,180,105, 37,138,183,172, 59,143,147,223, 88, +217,200, 5,106,134, 72, 5, 60,131, 58, 33,163,164,189, 12, 29,130,135, 76,138,194, 75,202,120,220, 16,177,136,170, 80, 93, 71, + 29,150,171,168,105, 34, 76,162,224,135, 52,132,116, 52,230, 17,245, 80,115,206,147,153, 62,250,122,184, 19,180, 67, 64,183, 13, +164, 72, 53,129,230, 3,226, 83, 5,206, 80,197, 88, 72,114, 74, 73,100, 65,194, 36,149,100,237, 20,200, 86, 32, 42,102, 85, 41, + 18,132,197,152,160, 89, 84, 82, 48,180,162,136, 43,138,111,150, 69, 49, 5,154, 97,140,129,177,196,242, 85,140, 34,165, 34, 35, + 16,211,253, 40,139,151,246, 70, 13,137, 78, 98,174,220,107,239, 34, 19,223,184,202, 85,196, 63,142,188,131, 11, 76, 56,138,165, +146, 76, 9,222, 39, 4,199, 49,130, 5,199,201, 42, 87, 42,138,232,139, 82,124,237,214, 90, 4,222,235, 80,177,192,135, 76, 8, + 85, 29, 41, 89,112, 69, 94, 84, 42,134, 66, 76,176,134,120,245,154,133, 67,202,208,168, 93, 27,205, 2,165, 57, 34, 82,240,110, + 48,199, 48, 3, 46,202,248, 41,167, 26, 29,121,108, 43,180,109,203, 29,229, 60, 50, 77,145, 25,219,222, 1,162, 65,215, 72,236, +187, 51, 12, 59,224,175,255,227,239,112,122,190, 66,112, 17, 79, 94,156,226,229,103, 79,112,113,231,241,230,135, 43,104, 99,177, + 88, 90,172,214, 29, 5,113,100,170,204, 33, 21,175, 4,202,200,154,132, 89, 77, 67,163,195,182,109,104, 61,148, 51,148, 49,184, +186,120,192,237,109,132,146, 6, 39,143,207,208,172,214, 24,135, 9,215,215, 19, 4, 28, 95,142,212,117, 14,195,132,105, 32, 22, +120,211,104, 44,150, 13, 63,159,130, 5,109,138,115,194, 19, 14,187, 17, 49, 36, 76,206, 3,153,200, 98, 49, 70, 40, 77,202,220, + 6, 9,159,252,143, 63, 1, 78, 86,104,149,198, 39,136, 52,206,122,216, 3,247, 3,222,252,112,141,215,183, 14, 23,119,119,232, +167,128,161, 31, 89,116, 53, 91, 92,202, 62,190, 20,202,249, 72,228, 24, 66, 68,244,138,158,205,148, 57,174,146,246,184, 36,192, +212, 8, 1,104,172,168,217,229,197,206, 89,245, 37,153, 86, 79,218,176,101, 79, 73,222,251,147, 7,189, 8, 51, 67, 17, 24, 50, +146,148, 86, 65,178,130,144, 72, 23,164, 88, 64,168, 89,117, 47,248, 57,161,241,168,228,223,125,232, 71,158,202,177, 87,152,117, + 35,253,225, 80,131, 58,180,209,176,214,194, 88,131,205,201,150, 83,230, 4, 14,251, 61,180,210, 8, 49, 86, 96, 75, 77,150,175, +105,138,134, 71,161,172, 50,151, 52,161, 64, 6,132, 42,150, 49, 85,161, 29,138, 11,176,148,136, 96,102,140,193, 56,186, 25,137, +203, 57,221,116, 8, 51, 26,215, 19,194, 57,132,200,217,234,164, 41,160,213, 25, 79,221,144,234,247, 55,179, 66,153,224, 54, 44, + 98,227,162,186,188, 87,162,198,176,102,142,166,158,191, 95,146, 11, 41, 84,104, 14,179, 4,138, 2,154,223,231, 99,241, 93, 17, +116,201,218,233, 11, 24,219,113,172, 47, 19, 8, 57, 14, 84, 41,133, 84, 88,242, 12,171,201, 57, 34,133, 68, 62,247, 82,164,228, +192,221, 59, 77,111,165,210,176, 77, 7,109, 91,176,117,156,139,191,200,133, 14, 77,248,166,190,199, 52, 14,212,197, 43,154,206, +150,205, 10, 57,126,232,183,241,108,223, 35, 46, 61,234, 42,171, 52,152,138, 35,153, 5,175, 8,137, 45,207, 41,125, 44, 78, 75, +129, 26,155, 82,208,101, 94,139,144,208,175,172, 67, 83,133, 22, 21, 17,104, 0,189, 15,153, 61,241, 33,151,226,160, 4,171,164, + 90,108,149,166,199,243, 74, 86,105,253,193, 52, 38,231, 88,173,104,153,195,184,100,153,172, 36,193,192, 30,112,160, 11,234,127, + 71,218,129, 25,168, 22,121,138, 32, 24,198, 86,164, 18,196,208,224,148, 61,214,213, 32, 39,104, 99,103, 27, 26, 9,182, 72,245, + 42, 36,197,240,149,203, 86,105, 67, 56, 76,107,160,164,134,243, 44,208, 41,104, 64,166, 42, 89,107, 32,101, 70,127,160,152,214, + 84,236, 29, 33, 96,177, 92,240,131,171,129,204, 74,248, 60,135, 51, 52,141,169,138, 98,202, 41,151, 72,153, 46,158,166, 49,180, +143, 9,220,173,107, 5, 1, 93, 41, 64, 4,224, 97, 24, 63, 68,125, 40,114, 4,160, 68, 5,202, 68,222,193,100,160, 90,111, 36, +199,229,149,152,214, 2,160,241, 62,178,112,134, 70, 97,144, 10, 82, 25, 22,184, 69, 24,206, 80, 6,163, 12,203, 37, 89,131, 38, +124,160, 14, 54, 1,202, 42, 6, 91,208,193, 18,125, 17,212,128,187,180, 34,192,147,213, 39, 93, 56, 0,180,130, 48, 85, 16,103, +140, 33, 32, 68,163, 16, 61, 93, 72,202, 72,100, 22,123, 20,240, 78, 60,178, 66,216,198,242,200, 46,145,149, 67, 0,137, 71,116, +228,251, 20,117,114, 64, 5, 78, 70,211, 45,106, 14,181,177, 12, 1,137, 17, 41, 80, 65, 52, 95,228,224,176, 11, 5,219, 82,202, + 88,114,177, 90, 8,203, 62, 47, 70, 2, 76, 64,129, 70,240, 98,137,132, 30,151,183, 35, 46, 46,118, 80,136,232, 31, 14, 88, 88, +137,118, 33, 17,250, 91,236,247, 15,184, 85, 11,108,206,207,241,228,249, 57, 86,235,150,196, 98,135, 30,251,187, 61,121, 95, 43, + 14, 24, 60,254,165, 46,122, 28, 38, 76,195, 64,251,243, 64,200,200,166,177,184,187,160,139, 95,219, 6, 39,231, 39,120,246,226, + 49,206, 30,111,217,158,197, 30, 87,214, 33, 16,175,157,254,206,232, 3,137, 20,147, 36,166,123,123,138, 20, 35, 14, 15, 59, 92, + 95,222,176, 72, 75,241,197, 75, 57,220,159,156,156, 2,255,252,231, 76, 45,115,252, 79, 13,188,216, 2,135, 61, 94,252,232, 12, + 47,110,110,129, 93,194, 95,253,229,175,240,111,127,243, 14,235, 45, 77, 6,180,209, 72,178,196, 46,210,164,202, 24,162,104, 37, +198, 89, 22,176, 82, 41, 82,199,209,163,109, 45, 93,174, 66, 34, 69, 1,219,128, 71,163, 52, 89, 41, 60,121,165,105, 45,161,117, +170, 19,178,226,121, 22, 71,222, 89,161,168, 3,215, 37, 79,129, 87,100, 90,139, 10,132,130, 40,233, 89,129,196,123,124, 1, 21, +120, 72,206,148,130, 88,246,247,213,100,149, 73,197, 94,244, 35,229,103,250,105,196,176,247,244,123,107,139,245,118, 75,221,180, +144,213, 23, 77,177,193,212,229, 74,205,120, 83, 81, 68,104,153,114,177, 3,229,170, 23,158,133,228,255,134, 2, 79, 18,148,161, + 81,186,103,172,171, 82, 25,217,100,196, 3,135,149, 48, 8, 68,105, 5,107, 13,140,161, 60,135, 34,200, 45, 36,202,105,114, 92, +200, 83,145, 80, 46,234, 92,188,201, 44, 96, 43, 10,103,252, 81,215, 94,152,238,101,111,170, 89, 76,153, 18,193,136,168, 40, 8, + 60, 69, 40, 43, 24,134,250,212, 40, 49,212,223, 7, 40, 41,148,168, 23, 55,165,251, 53,104,187, 21, 55, 32,186,170,201,133,144, +136,137,180, 30,137, 89,249, 49, 80, 55, 27,253, 0, 63,141, 8,110,100,136, 13,185, 10, 50, 7,230,216,166,133,182, 13, 21,218, +218,212,144, 34,154, 48, 90,164, 68,209,215,161,138, 27, 37, 23, 98,146,201,116,129, 85,146, 20,113,170, 10,127, 63,135, 58, 53, + 41,211, 31,138,198,213,117, 61, 89, 52, 82,101,237,151, 83, 34,110,126,121,213,114,206,114,159,153, 13,169,238,205, 75,232,202, +156,117,158,234,247, 64, 8,114, 19, 81, 60, 10, 63,123, 41, 2,146,126, 62,173,178, 2,233,134,242,156,196, 87,254,222, 50,249, +240, 49, 84, 55, 4,253,108, 70,207,114,177, 33,164,230,194,130,155, 91, 16, 71,158, 50, 74, 18,164, 50,156,110,202, 77, 51, 3, +172,132, 36,167,126,202, 28,244, 37, 40, 3, 65,183, 45,133,172,148,106, 67,235, 98,139, 17,204,199, 37,144,130,229, 43, 39, 79, +192, 98,169,145,125,174,144,255,156, 85,133, 88,120, 71, 94,210, 50,146, 32,181,106,170, 97, 3, 4,133,209,136, 62,178, 15,221, + 49,218, 85,192, 31,237,193, 72, 81,152,176, 88, 46,224, 92,224, 12, 91, 69, 65, 31,145,170,241, 66,140, 43, 35,117,201, 95, 90, + 41, 69,245,169,131,191,144,153, 85,143,180, 3,244,245,139,112,156,142, 36,120,135,236,217,103,120, 28, 2, 80,118,116,226, 18, + 36,142, 71, 0, 0, 32, 0, 73, 68, 65, 84, 8, 33,217,118, 77, 21, 52, 17, 9,207, 0, 49,177,117,143,118,139, 82,240,158, 37, + 9, 22,224,144, 8,207, 26,205, 93,180,132,243,190, 38, 0, 21,142,125, 25, 73,106, 86, 40,151,195, 84, 41,137,144,200,191,153, +107,232,142,193, 52,142, 52,186, 2,117, 61,145,215, 42,244, 96,138, 57,100,160,178, 36,103, 61, 66,221,254,229, 92,247, 59,165, +107,209, 90,178,152,144, 71,132, 92, 49,230, 68,135, 61,169,176,169, 82,172,136,196,200,171, 27,126, 95, 67,160, 61,169, 27, 71, +214, 81, 12,240,185,169, 15,118,219, 26,108,159,108,176,222, 44,209,152,140,175,255,254,111,144, 99, 15,187,126,142, 87, 63,122, + 5,183,123,143,195,237,119,248,250,226, 15,216, 31, 18, 78, 30, 63,197,179,143,159,225,217,139,115, 8, 4, 28,238,239,113,253, +238, 61,222,191,185,196,238, 97, 95,109,153,138,159, 1, 99, 53,220, 68, 46, 7, 55,112,133,205, 54,167,171,215, 10,191,255, 91, +192, 52, 29, 86,219, 19, 60,121,254, 20, 39,231,167, 88,111, 22,128, 72,216,221,221,227,234,221, 21, 66, 8,100, 91,212,138,255, + 73, 34, 45, 42,182, 52,150,155, 83,244,187, 61, 78,207, 91,172,182, 43, 72, 37,113,241,195, 53,254,236,203,103, 0,152, 78, 21, + 70, 64, 91,190,216, 37,176,220, 0, 75, 0, 75, 9,124,253, 21,254,234,223,252, 87,252,155,255,252, 29, 86, 11,139,255,253,127, +251, 95,177, 62, 95,226,155,119,183,120,127,127,192, 20, 34,147,247, 50,154, 70, 33, 70,197, 49,162,164,109, 33,229,178,134,146, +132, 90, 85,202, 98,221, 26, 40,157,142, 58, 54, 58,147,104,181,164,171, 63, 86, 26, 89, 19, 25, 9,118, 81,124,238, 84,140,199, + 16,208,180, 13,117, 81,206, 35,241,207,173, 99,110,142,242,204, 57, 99,255,176,167, 98, 60,150,209,168, 67,138,162,178,212, 67, + 96,193,147,144,224,166,142, 83,220,202,254, 91,179, 45,202,241,232, 62, 33,165, 17,247, 55,100,131, 10,126,162,233,220, 31, 61, +179, 52, 85, 2, 68,230,103, 82,234, 57,178,146,113,177,165,107, 43, 99, 90, 64,160,105, 26, 88,107, 1,204, 66,170,192,128,167, +114, 30, 18,230,215,160, 91,116, 52,201,211, 4,196,114,163,103, 61, 66,152, 93, 49,236,143,207, 12,169,201, 28, 28, 82,253,206, + 71, 72,106,160,140,120,203,132, 3,188, 86,208, 44,118,163,137,133, 82,166, 78,199,228,209,148,176,194, 76, 56, 42,182,224, 79, + 75, 98, 23,193,168,230, 61,188,210, 6, 77,187,168, 48,172, 84, 38, 63,124, 33,136,226,142, 65,134, 68, 68, 74,164, 83,113,211, + 30, 57, 56,158, 30,122,222, 63, 43, 52,221,154,254, 62,211, 66,219, 5, 23,118,170, 50,236, 51, 55, 40,222, 7, 76,211,192,238, + 1,125,148, 66, 87,226, 73, 57, 30,152,147,207,200,136,195, 34, 98, 85, 18,208,138,128, 87,240,228,151,207,170,196,171,202, 44, + 32, 34,144,165, 56,122,143,129, 28,192,180, 53, 96, 26,135,202, 45,160,230, 53,176,150, 32,212, 98, 54,165, 8,145,232,189,242, + 33, 66,170,196,250, 32,174,194,196,172,119, 8,222,115,146,223,255,207,213,155, 60,219,150,158,103, 94,207,215,173,102,239,125, +218,123,110,147,153,247,102, 74,153,146,108,185, 85, 25,219,184,170, 2, 71, 85, 65,208, 4, 38,130,128,128, 33, 67,130, 1, 17, + 48, 97,192,204, 83,102, 4, 35,248, 19, 32, 32,160, 32,168,192,101,187,108,151,195, 14, 35,149,101,149,101,164, 82,102, 42,155, +155,169,188,153,183, 61,221,222,123,173,175,101,240, 54,107, 95, 75, 3, 73, 41, 41,207,185,123,175,245,125,111,243, 60,191,135, +238, 65,199, 73,136,133, 89, 1,181,100,228,180, 64,111, 14, 47,111,217,196,211,116, 60,107, 40, 15, 21,132, 14,181,241, 25,193, + 1,106, 42,136, 99, 11,165,222, 21,124,249, 27,217,203, 55,192, 15, 99,207,106,204,134,148, 19,143,140,150,241,220, 18,180, 50, +179,165,130,246, 34, 33,208, 31, 58,132,160, 57,188, 77, 70, 89,222,161, 20,139,113, 53,192,236,105,228, 27,231,153,237, 18,134, + 71,213,142,149,213,124, 73,176,125, 77, 80,125, 49,102,144,224, 90, 84,159, 30,182, 17,132,191,235, 3,166,109,212,120,199,253, +126,210,180, 35,129,226,148, 74,184, 60, 31, 60,179,164, 57, 99,152, 95, 84, 57, 92,164, 99,200,133,132, 60,113, 34, 75, 25, 1, + 93, 12,239, 9,139,254,185,114,170,154,110, 38,120, 69, 97, 73,236,119, 81, 99,101, 75, 46,152, 91, 85, 81, 83,228,238,145,176, +183, 52,218,179,206,106,101, 90, 88,161,191,116, 74, 7,170,103,206,180, 37, 70,116,135, 96, 27,123,132, 35, 31,180, 68,144,202, +165,232,136,150, 72,182,158, 45, 23,108, 17,226,248,192,156,121,212, 86, 50,124,215,107,231, 96, 29,249,109, 73,173,237, 17,250, +142, 5,114,140, 4,106, 85, 89,211,242, 2, 19,177,210,145,219,192,114,247,199, 33, 29,150,109, 73,150, 21,207, 42, 86, 49, 30, +251,220,161,228, 9, 93,231,112,116, 52,224,206,221, 99,188,251,205, 55,241,252,241,251,184,105, 19,206, 46,206,177,218, 56, 92, + 63,127,138,139,183, 30,193,117,207,240,233, 79,222,167,116,184,253,115, 60,123,252, 99,252,244,232, 12,247, 31, 61,194,197,253, +187,184,255,181,111,226,238,163,111, 32,167, 8,107, 43,226,126,143,105,191,195,126,187,197,246,230, 22, 87,175,174, 41,223, 32, +243,222,188,239,180, 88, 51,214, 96,222,223, 34,206,123,220, 92, 18, 11,127,125,116, 4,223, 13,184,115,247, 2,247, 31, 62, 68, + 8, 22,183, 87,215,120,245,242, 37, 94,189,120,133,148, 50,186,190, 35,140, 50,135,108,228, 84,112,125,115,139,147, 93,196,122, +179,194,171,167,215, 40,239,189, 1,119,123, 3,108, 54,128, 63, 3, 48,243, 37,207,121,204,168, 64,127, 4,188, 0,254,233,247, + 30, 99,218, 71,124,237, 98,131, 95,251,143,255, 46,176,234,240,205,109, 4,126,252, 62,190,252,155,143,241,185, 89,227,133,239, +144,184, 59,110,141,222, 19,154, 84, 88,158,224,200, 62,209, 98, 28,131,182,111,244,189,103,216,222,178,200,102,193,188,182, 86, +104, 95,103, 45, 26, 63,147,150, 11,200, 20, 27,179, 19, 50, 66, 32,161,102, 48, 78, 69,155, 41, 87, 21,197,154, 86, 94,195,114, +230,196,136,203,182, 40,183, 73, 12, 75,112, 20,219,220, 65,148,100, 85, 82, 99,173, 70, 59,177,192,118, 48,234, 90, 88,240,202, + 12,120,178,254,116,140,177,117,250,115, 96, 40, 36,167, 49,152, 73,248,220,222, 27,196, 10, 14, 46, 33,231, 71,215,119,122,198, +200,180,177,176, 18,190, 10, 45,210, 59,172, 86, 3,233,116, 60, 21, 58, 4, 25, 73, 42, 48,171,234, 96,161,139, 56,231, 3, 1, +165,179, 10, 0, 18, 0, 73,227,212, 72,175,233,151,203, 90,164,240,206,223,242, 26, 68, 88, 8,196, 70,169, 7,222,115,104,113, + 78, 26,130, 70,163, 90,213, 16, 64, 45,101,222,119,232,251,113, 41,230,100,252, 93,193, 13, 25,233,115,136, 33, 80,145,230, 25, +105,218, 98,222,223,162,230,153, 11,249, 4, 52, 34,152,117, 97, 68, 55,108, 96,195,128,208,175, 40,160,136,243,204, 41,200,132, +138,188,105, 46,152,247,123, 6,178, 88,248, 78,220, 2,225, 64, 48,204,136,217, 86,153,223,222,212,194,149, 75,102, 97,174, 20, + 92, 85,215,184,146,191, 78, 89, 26,105,209,242,184, 37, 14, 92,138, 23,203,247,147,132,173,136,136, 48,206,145,113,202, 73,193, +100,181, 25,222,171, 51,205,142,148,113,220, 73, 87, 78,148, 59, 16, 98,114, 74, 31,233,175,162,174,104,228,126, 2,128,220, 10, +219, 48,235, 65,186, 30,137, 87, 13, 39,189, 25, 41,167, 10,231,170, 75,186, 95,181, 48,166,168,213,174, 73,209,192,130,101,154, + 62,112, 94,169,181,240,180,123,113,154, 43, 30, 35, 33, 13, 73, 69,235, 25, 64, 66,163,190,148,104,132, 98, 29, 93,228,125,223, + 83,124, 34,135, 39,144, 39,214,105,152, 65,138, 73,187,217,156, 43,166,105,198, 56,246, 40,220,201, 27, 70,186,210, 14,210,243, +200,106, 94, 18,214, 12, 29, 22,214, 58, 30,145, 17, 2, 81, 16,151, 37,145,122,181,239, 59,254, 29,204, 66,186, 99, 91,136, 68, +163,154, 82, 57, 90,177,233, 5,147,115,133, 67, 33,180, 38, 63, 8, 93,239,105,151,102,248, 65,227,200, 87, 99, 40, 96,160,212, +202, 25,202, 29,225, 66,115,225,100, 36, 6,110, 57,226, 6,199,105,210,142,214, 89,139,221,156,152,221,236, 16, 39, 14, 46,169, +237, 32,217, 40,195,119, 30,211, 52,107,244,167,236,155,100,215,223,224,116, 47, 84,115, 38, 72, 7,239,132,114,169, 58,230,174, + 57,195,120,218, 55,145, 16,138, 19,246, 28, 9, 1,189,183,250, 66, 21, 33, 57,241, 75,228,120,135, 46,187,116, 88,163, 93, 17, + 81,172,205,146, 26,196,123,156,106, 13, 66, 63,234,197, 86, 88,180,102,172, 97, 69,244, 97,202,145,129, 63,126, 27,123,158, 38, +173, 87, 61,142,143, 87,184,255,198, 25,142,143, 60,158,236, 94,225,237,119, 31,161,235, 59,218,129,206, 17, 79, 62,250, 9, 76, +127,134,175,255,226, 47,225,131,127,249, 3,236,182, 91,212, 90,113,115,249, 2,207,191,248,148,160, 63,221,136,163,179,115,108, + 78,206,225,251, 21,206, 47,206,112,126,255, 45,140,171,192,120,220,172, 2,150,156, 51,186,224,176,219, 77,136,211,140, 24, 35, + 9,120,230, 8,199,211, 38, 58, 64,102, 60,121,252, 83, 60,254,176,162, 27, 55,184,115,239, 14,238,220,123,128,119,190,177, 66, +205, 17,151, 47, 94,225,217, 87,207, 49,177, 77, 48, 4,234,228, 47, 95,190,196,231,159,124,129, 23,159,221,226, 15, 34,240,198, +143,159,224,205,251,199,184,255,232, 14,240,230, 49,112,210, 1,227,200,251,210, 6,192,225,179,159,222,224,233,237,132, 6,224, + 27, 71, 14, 72, 91,224,244, 12, 56, 30,128,175,122,124,240, 23,239,163, 25,135,247,126,235, 87,240,189, 39, 59,164, 97,192,131, +135,231,216, 28,143,168,149,194,112, 90, 51,252,125, 86,214, 81,208,200, 53,197,164, 97, 36,162,148, 37, 62, 3, 3, 48, 88,240, + 21, 99, 60,152,214, 88, 37, 34,214, 82, 17, 44, 67,157, 88,208,102,216, 30,103, 44,141,205,125, 35,141, 75,215, 5,118,106,136, +229,137, 84,195, 21, 52,174, 52, 86,242,163,157,186, 73, 2,243,246, 75,109, 10, 10,145, 11,130,108,119,141, 47,115, 15,107,121, +143,107, 23, 33,159, 28,104, 50,169, 11, 61,225,118,157,138,110,147,238,221,189,163,137, 70,232,250, 37,150,249,192, 75,221,120, +135, 75,118, 61,139, 16,156, 66,124,200, 49, 66, 59,234,221,118,226,241,120,225,209,114,214, 61,104,230, 49,108,107, 34,188, 74, +139, 70,133, 71,164,181, 46, 22, 63, 17, 80,153,131,203, 88,127,167,218, 22,151,132,138, 92,205,114,161,243,136,121,209, 92, 36, +250,238, 37, 29,210, 58,116,221,136,192, 43,151,192,201,145, 82,132, 56,111, 17,140, 71,131,165,221,116, 73, 40,105,194,180,187, + 69,142,123,212, 60,233,206,190, 85, 90,171,116,253, 26,227,230, 28,161,167, 46,189,192,193,177,167,159, 87,254,108,247, 37,188, + 47, 56,104,171, 54,131,154, 5, 8,100,145,107,211, 51,179, 86,210, 19, 20, 22,160,129,237,120,133,189,229,141, 5,104,244,247, + 38,157,150,116,167,113, 90,116, 9,173, 22, 84,231,217,161,228,184,152,178, 26,191, 43,182, 70, 89,115, 80,144,204,164,141, 83, +202, 34, 6,174,124, 33,179, 82,157,155, 43,103,205,146, 5,193,162,218, 90,210, 1,255,160,161,177,206, 64, 92, 2, 50,161,168, + 53,190,246, 93,137,168,211,178, 5,177, 52,163, 29,187,101,145,105,225,187, 7,150,180, 68,212,128, 19, 27,192, 54, 32,151,164, +118, 64,240,123,224,137,102, 69,212,165,105, 74, 88,173, 87,152,246, 19,239, 63,170, 66,243, 69,172, 64,118,167,136,156,105, 76, +100, 83,162,202,151,119,224,104, 64,215,123,220,222, 52,149,248,231, 76, 31,182,120, 27, 67, 71,213, 80,223,247,122,232,103, 38, +204,201,135,107, 88, 4, 34, 44,247, 38, 49,128,188, 55, 17, 97,155,177, 70,211,205,108,112,170,136, 53, 88, 50,158,199,149, 85, +133,183,140,217,193,251,140,194, 22,180, 16, 2,163, 3, 51,141, 14, 61,237,218, 83,165,138,186,235,137,127, 60,140, 61, 66,215, +113, 81, 65,154, 3,218, 53,210,158,149,196,104,153,252,150,206,192, 5,143, 24,103,229,223,203, 36, 68,198, 79, 20,161, 73,190, +204, 24, 19,197,179,242, 30, 41, 56, 81,241, 59,228, 2, 37, 30,165, 73,168, 92,132,127,149,132, 33, 2,246, 16,154, 81,184,197, +173,146, 0, 78, 84,244,206, 5,173,236, 66,215,147,191,152,247, 81,180, 66,112,252,226,118,180,223,135, 96, 16, 73, 99, 80,234, +226,195, 36, 17, 23,217,124, 72,143, 65,121,224,141, 71,128, 4,206,161,135, 90,128, 57,214,247,176,227,125,228,235,136, 16, 44, + 54,155, 30,231,119,142,240,230,163, 11,108,159,125,130,187, 15, 46, 52,175, 56,165, 61, 74,109,120,254,229, 19, 76,251,143,240, +242,252,109,252,194,111,254, 93,124,242,163, 31,226,201,103,159,169,168, 47,198, 25,102,191,199,238,246, 10, 95,126,246, 9, 71, +239, 6,116,227, 6, 71,167,103,120,240,214, 61,220,185,119,138,243,139, 99, 12, 67,192,238,118,143,235,171, 91,236,182,147,170, +173,189, 31,208,245, 43,116, 67, 71,104,223,102, 52,184,135, 96, 47, 22, 41, 82, 90,219,228, 13,134,113,196,221, 55,223,196,241, +233, 57, 90,203,216, 28,141,168,181,226,242,229, 21,118,219, 61,158,253,236, 10, 67,232,241,234,114,135,237,118,198,103, 63,123, +133,245,143,159,224,120,237,113,113, 50,224,237,135,167,112,111,157, 1, 23, 27,160,183,248,127,191,251, 1, 42, 12,110,211, 14, + 62,238,129,159,252, 24, 24, 45,112,239, 1,112,247, 4,255,198,127,242,171,120,255,123, 79,241,239,254, 55,255, 35,182,200,136, +104,120,100,239,224, 63,248,183,126, 13,255,245,127,245, 59,248, 12, 6, 87,115, 66, 9,142,179,165,185, 96,179,180, 34,104,181, +161,235, 45,166,253,204,157, 56,244,192,107,236,182,232,122,207,107,151,166, 22, 46,112, 54,132, 92,144,164,190, 61, 84,158, 55, +180,230,200,155, 95,178,238, 25,227,156,248,146,106,203,197,201,226, 38, 42, 58, 36, 99,251,111, 69, 25, 91, 58,172,104,188,207, + 25,245, 48,140,134,165,125,185,231, 81,172, 4,158, 88, 3, 5,231,144, 19, 5, 58,189,232,135, 30,109,162,244,171,190, 39,160, +207, 48, 44,113,206,148, 56, 71,100,187,148, 50,226, 60,169,133,208, 89, 58,111,134,177,167, 38,132, 47,195, 28, 51,219,116,137, + 79, 31,231,153,157, 63, 9,153, 93, 39,214,154, 69,159,196, 30,102, 25,245, 74,225, 36,226, 66,103, 9, 35, 43,108,124,154,110, +155,131, 8, 88,171,249,222, 49,103,181, 86,137, 19, 5, 26, 96, 82,232,191,115,130,224, 38,186,161,239, 2, 66,232,153,211, 97, + 53, 9, 47,114,234, 87, 3, 21, 18, 41, 39,228,121,135, 52,237,144,211,132,154, 39, 30, 21,179, 0,203,123,116,195, 17,250,241, +152, 46,244,110, 5,235,123,142,152,134,226,180, 35,139, 69,247,187,253, 50,193,224, 21, 0, 49, 63,154,134, 38,201, 26, 1,166, +234, 84, 80,196,101, 57,165, 3, 7,128, 99, 97, 49, 59,119, 26,208,210,196,190,242,194, 34, 65, 42, 0,172, 76, 59,185,144,106, +172, 49, 0, 7,207,104,195, 87, 43, 1, 98, 88,152,109,125,167,103, 29,173, 89, 51, 59, 1,120,128,234, 73,147, 84,170,225,243, +174,162, 36,246,156, 84,182, 75, 58,199, 90, 14,137,112, 53, 92, 84,100,133,216,208, 58,198, 82,115,204,100,198,170, 43,135, 69, +105,159, 19, 33,117,155,104, 79, 80,152, 39, 98,153, 32, 71, 19,236, 37,233,148, 62, 63, 47,218,123, 98,190,211, 75, 86, 89,129, +103, 76, 62, 0,203, 88, 30, 84, 83,146, 80,201, 5,232, 73,184, 16,124,224,202,208, 50,196,194, 97, 28, 71, 26,219,165,196, 35, + 38, 30,255, 57, 15,107, 11,194, 24,248,101, 44, 64, 58,140, 65,132, 42,229,115,110,176,174,160,121,167,185,236, 34,188,241,222, +161,194,243, 65,226,216,234, 32,209,153,164, 26,239,122,143, 97, 53, 48,254, 53,243,184,177, 32,167,170,180, 56,176, 53,194, 48, + 34, 54,165,138, 97,236, 73,208,229,157,142,126,228, 3,147,209, 52,169, 95,179,242,123, 67,231, 49, 79,116,176, 17, 24,135,232, +112,173, 26,246,190, 50,188,197, 27,152, 44, 2,193,202, 65, 6, 77, 81,161,100,115,240, 76, 8,163, 9, 74,230,252,250, 28,137, +112,150,115, 98, 72, 71, 81,241,154,236,226,187, 46, 80,161,147, 73,253, 78,145,144, 28,225,231, 3,251, 33,229, 65,171, 7, 30, +226, 78,133, 59,174, 11, 60, 46,171, 58,233,168,188, 55,247,146, 28,197, 66,145,214, 40,166,212,178, 53,166,178,117, 45,167,229, +192,161,200, 64,234,236,252,250, 1, 82,113,240, 78,112,170, 35,222,120,120, 7,182, 77,120,241,236, 57, 11, 84, 12,226, 52, 97, +119,187,195,229,243,151,200, 49,162,213,130,155,103, 31,227,175,254,252, 18,191,248,235,127, 7,239,124,243, 61,252,245,119,255, + 18,183, 55, 55,154, 76, 85, 10,116,122,208,106,197,188,203,152,119,151,120,249,213,231,148,146,118,114,138, 71, 95,127,132,135, + 95,123, 11,239,254,252,123, 40,185, 96,191,221,225,230,250, 26,215,175,110, 40,202,115,159,176,187,161, 34, 51,231,130,253,110, +135, 56,207,136, 49,241,243, 65, 35,224,126, 92,227,244,252,140, 3, 82, 10,118,183, 59,132, 16,240,240,157, 55, 48, 14,107,228, +203, 25,171,163, 99,212,210,144, 80,104, 87,152, 11,182,219,134,103,207,111,240,225,167, 47, 48, 4,139,139,179, 17,155,206,224, +207,191,255, 41, 86, 99,143, 82, 11,142, 6, 15,220,220, 0,223,253, 43,224,235,239, 0,131, 1, 30,222,193,201,119, 31,227, 25, +246, 40, 0,254,145, 61,195,186,171,248,232, 7, 31,226,206,119, 30,226,206,186, 7,174,182,248,228, 47, 63,197, 39,151,147,134, + 32, 25, 67, 69,123,225,245,210,106,179,214,203, 70,196,152, 33, 56,181, 63,209, 74, 8,188, 19, 23,220,114,143, 56,205, 8,220, +105,139, 43,195, 7, 7,195, 9,119,253,208, 33,205, 13,153,247,178,214,121,196, 52, 49,149, 77,108, 87,141,242, 10, 88,203, 33, +145,197, 6,139,253,147, 52, 47, 52,233,233,186,142, 2, 63,102,178,130, 58,177,224, 97,137,109,166, 52, 45,192,241,106, 13,156, +223, 77, 10,126,218,223,110,216,249,162, 26, 0,107,120,143, 79,251, 86, 89, 11, 73,138,150, 20, 24, 34, 38,116, 28, 56, 83,114, + 89,248,108,173, 34, 39,234,234,231, 57,170,208,213, 26,131, 92, 23,148,173,116,203,130, 91, 54,102,217,147,162, 73,151, 90, 15, +152, 25, 70,145,205,170, 87, 64,211,142,159,238, 60,142, 16, 45, 69,197,114,149, 29, 38,100,133,162,104,226,208,245, 12, 97,241, + 68, 26, 11,157,126, 55,250,185,137,214, 33,206, 72,243,158,186,243,146, 22, 75, 21,200, 82,229,187, 17,227,234, 24,214,119,176, + 97,128, 13, 35, 90, 35,177, 96,232,188,134, 91,181, 70, 23,216, 60,199, 37, 49,142,227,176, 43,127, 95,206, 49,114,182,208, 20, + 5,173,194,153, 10, 27,130, 78, 81, 11,191,243, 68,168,147,166,165,232,154, 68, 32, 60, 37, 87, 22,247, 10, 60,198,211,197,104, + 28,103,154,211,157,101,140,132, 24, 57,181, 17, 54,206, 16, 81,123, 32, 11, 56, 73, 40,110,244,190, 49,198, 40, 81,208,123, 15, +148,172, 13,175,225,240, 21, 21, 3,231, 66,171, 37,107,168, 80,225, 63,115,173,146,191, 46,235, 38,214, 27,241,243, 86, 36,147, +225, 32,186,213,250,192,171, 30,163,247,107,147,248, 92, 6,138, 44,206, 24,168, 55,222,231, 68,213, 69,158, 35,179,218, 73, 92, + 81, 12, 48,207, 51,169,183,173, 69,232,189,166, 27, 9,142, 48,197, 8,191,162,139,178,115,157, 86,160,214, 57,244,131,209,125, + 60, 41,103, 3,128,172, 56,212,146, 11,108, 32,106,220, 48,200, 8,154,173, 60,124, 65, 53,199,201, 98,185,192, 27,242, 15, 82, +134,184, 69,205, 70,121,202,251, 29,133,116,152,234, 88,213,184, 68,170, 74,154,220, 66, 61,195,130, 23,180, 22,222, 57, 86,192, + 27, 20,166,102,197,200,220,223, 66, 9, 88,165, 52,180,148,105,132,229, 73,197,158, 35, 87, 92,156, 17, 79, 10,235,194, 30, 98, + 14, 27, 56,168,246,112, 16,223,153, 18, 77, 37,170,238, 70, 42,217, 75,204,178, 4, 91,173, 6,238, 80, 28, 60,239,126, 42,243, +127,173,105,136, 28, 76, 32, 2,184, 90,170,118, 55,168, 96,255,184,209,100,173, 90, 43,226, 52, 83, 65,196,137,119,134, 25,225, + 34,194,105,104, 8,189,231, 67, 67, 42, 63,222,157,242,206, 74,214, 20,214,123,206,137, 95,113,134, 60, 21, 9,193, 89, 76,251, + 73,149,154, 41, 70,181,103,133,174, 67, 56,121,136,219,151,145, 67, 90,122,156, 95, 28,225,236,124,141,191,252,103,191,135,235, + 87, 47,153, 53, 13, 76,251,137, 18,185,120,207, 24,186,158, 70,157,183,207,240,151,127,252,135,120,251, 91,191,132, 95,251,237, +223,198,147,143, 63,194,199, 31,124,136,105,191,167, 93, 30, 11,115,186,161, 71, 73,180, 34,162,253, 91,198,237,245, 37,126,244, +131, 75,252,171, 31,254, 24,155,163, 35,220,185,119,129,211,139,115,172, 55, 35,142,207, 78,145, 18,229,113, 75, 84,103,206, 25, +199,233, 8,149, 35,132, 75,230,176, 17, 67,240,162,146,119,184,185,218, 99,125,116,132, 7, 15, 31,192,152,138, 23,207,158,225, +233,251, 79,208, 95, 94, 82,231,181, 58,226,189,178, 81,184, 76,140, 25, 41, 27,220,222,102,188,124,181, 69,142, 9, 95,189,218, +147, 87,181, 53,188,255,228, 26,248,224, 57,112,113, 4,164,199,192,233, 10, 24, 3,126,248,170, 96, 15, 96, 3,131,255,238,191, +248,109,124,251, 63,252, 21,224,197, 22, 56,237,128,213, 6,240, 21, 95,251,133, 11,124,254,199, 31,163,244, 29,139, 25,161,221, +158, 21,186, 26, 42,235, 91,232,157, 18, 32, 71,227,152, 79, 11, 79,108, 5,217, 7,102,131,205,113, 80,173, 80,140, 25, 61, 43, +167, 91,171,234, 83, 39,234, 90,193,170, 54,122,214,152,120, 88,121,172, 46,235,151,208,117,234, 90, 16, 46, 56,173,225,178, 88, +114,152,165,207, 24, 92, 99, 88, 27, 66,135,161,239,122,141, 62,166, 72, 79,154, 0, 52, 35,112,152,142, 59, 36,246,117, 55,154, +230,228,152,216,210,190, 20, 21, 53, 23, 76,251, 9, 41, 37,236,110,119, 36,170,147,119,166, 16, 43,195, 49,187, 67,136,147, 49, +102,125,159, 39, 78, 7, 51, 60, 73, 20,111,186,164,185,137,198, 69,240,159,220,235,105, 19, 35,254, 98,107,196,122,181, 88,222, +156,243, 42, 32, 44,117,193,160,210, 36, 0, 58,105, 36,106,154,196,113,114,180, 39, 35,112,189,239,216, 61,211, 41,147, 35,231, + 12,240,154, 35, 83,254, 41,230,105,143,146, 39,181, 95,149, 60,115, 26,156, 67, 8, 61,134,205, 49,140, 9,176,174,131, 11,131, + 10, 81, 29, 35, 89,165,235, 78,145, 28, 39, 85,125, 87,178, 66,245,122, 41,138, 59, 68, 72,158,214, 54,216,208,163,230,196, 24, +235,162,147, 89,177,209, 9,183, 62,151,172,107, 10, 42,222,185,144,169,145, 48,209,168, 0,220,107,218, 3,212,204, 73,104,102, +241,159, 91,138,125,109, 57,163,177, 94, 74,114, 48,100,202,178, 36, 19, 90,250,123,212,134, 20,171,234,179, 40,114, 56,106,246, + 72,101,168, 19,216, 65, 84,138,225, 98,162,112,192, 78,123, 45,209,142,196,157,134,139, 21,175,174, 16,210,249,176,224,142,199, +238,165, 45, 56,247, 74,131, 13, 42, 4, 89,111, 98,157, 69,102, 17,158, 87, 50, 19, 87,108,228, 75,173,203,216,155, 95,196,194, + 81,130,228,217,244,156,204, 54,147,197,234,216, 99,191,219, 83, 76,231,122,212, 15,174, 99,101,169, 8,122,156,117,228,202,108, +132, 85,181,140, 56, 77,169,113, 80, 12,237,240, 36,164,196, 88,131,113, 53, 96,154, 18, 76,240,100, 25, 59,200, 71,151,181,136, +252,238,172,240, 99,129, 79,193, 48, 24,166, 66,209, 88,177, 52,195, 98,181,162, 84, 40,177,233,165,148,149,207, 59, 12, 1,187, +109, 81,161, 5,121,157,249,231,115, 48, 68,140, 76,124,178, 52,118,163, 42,191,106,119, 92, 57,225, 71, 98,253,140,133,126, 41, + 29,179,176, 11,119, 11,158,133, 62,242,121, 43,121,139,173, 35,187,219,157,198,166,150,156,144,227,196, 35,183,170,187, 55, 90, + 23, 80, 48,135,164,191,161, 86,205,131, 54,188,187, 34,127, 60, 17, 1,101, 52, 36,162,200, 90,201, 97,224,248,133,162, 46,161, +106, 81, 4, 48, 46,177,210,103,236,124, 0,172,103,122, 26,125, 1,153, 73,116,137, 85,211,243,204, 35,238,218, 96,250,115,228, + 26,224, 92, 68, 8, 14,155,205,128,251,111,158,227,250,249, 19,124,249,248, 99,182, 11, 86, 30,225, 82,183,182,168,136,232, 69, +233,250, 1, 57, 23,124,254,225,223,224,201,227, 79,240, 11,255,218,175,225, 55,223,124, 3, 31,255,228,125,124,254,233, 99,174, +188, 41,174,182, 27, 71,178,117,213, 6,231,141,238,188,188,111,184,190,122,133,219,155,107,124,250,209, 39, 88,109,214, 56, 58, +230,216,212,190,131, 15, 14,113,158,201,166,148, 18, 51, 18, 60,219,191,232,178,235,250, 97,217, 75, 58,143,105,183,197,209,201, + 49, 78,207,238,192,223,141,184,220,101,236,159, 62, 71,184,111,129,245,102,193,142,178,199,187, 85,113, 86, 87, 76, 49, 35, 38, +234,220,188,181,248,103, 79,158,227,191,252, 31,254, 12,247,142, 71,124,237,222, 17,190,253,206, 57,142,143, 71,252,207,255,247, + 95,147, 77, 8, 6, 23,191,240, 30,240,157, 95, 5, 2,241,187,177,189, 6, 94, 93, 2, 87, 79,241,247, 47, 26,126,255,171, 45, +127, 22,150,199,195,150, 15, 98,199,235, 37,175,105, 99, 68,120, 35, 45, 65, 97, 96, 84,138,137,169,111,172, 34,231, 76, 3,209, + 99,100, 6, 23, 9,143, 33,197,140, 56, 71,210, 84,112,144,143,239,122, 85,209,199, 57, 29, 88,146, 0,223, 81, 65,141, 3,190, +129,116,156,198, 58, 12, 12,108,113,140, 76,150,208, 28,239, 45,166, 41,161, 11,142,119,213,228,223, 46, 18,230,196, 98, 65,239, +140,198, 17,203, 58,143, 98, 62,163, 22, 55, 41, 38,164,148,105, 66, 35, 26,152, 6, 52,126,199,137,186,182, 48, 24,100, 77,216, + 88,212, 84,152,115, 95, 57,130,180,148,204,235, 38, 22, 69, 49,140, 68, 2,114,164, 35, 44, 69,244, 40,137,127,151, 69,111, 98, + 32,135,124, 80,113, 43, 57,137,200,162,122,152,196,183, 40,250,139,174,224,140, 76, 92,172, 71, 63,172,225, 67, 15, 31, 58, 10, +107,169,226,222,225,241, 61, 72,160, 53,239,183,168,101, 98,228, 54,237,212, 5,200, 21,186, 1,227,250,132,222,115,227,121, 82, + 66,171, 70,231,173, 78, 14, 74, 46,216,239,103,196, 56, 83, 99,101,192,211, 62,234,152, 75,109,108,243,204,156, 25, 95, 25, 30, +197, 35,100,246,128, 19,216,170,233,232,156, 58,225,170,212, 67, 97,163, 44,104,215,136, 90, 34, 39, 47,122,221, 47,211,191, 46, +187,120,113, 69,229, 2, 22, 17, 51,207,221, 46, 58, 0,137, 42, 46,236,193, 39,232, 80, 83,154, 40, 90,227,198,161,170,143,125, + 89, 65,209, 51, 88, 90,101, 59,101, 85, 60,177, 4,146,121, 31, 56,171, 65,220, 34, 18,212,196,116, 58, 94,179,192,200,234,134, +236,152, 41,237, 57,200,135,214,161,198, 84, 45, 32,205,129, 62,130, 2, 0, 12,188,204,226, 51,239,105,188,119,176,134,198, 94, +212,141, 36, 89,241,210, 5,196, 54,151,142, 45, 45,165, 22,108,183, 59, 28, 29, 31,105,232, 72,224, 46,193,243, 23, 79, 63,124, +166, 78,155, 43,149,146, 43,250,245,128,146, 35,239,156,132,160,100,121, 23,158,129, 92,113,117,121,203, 41, 90,157, 94,216,178, +211, 67,245,168,166, 49,141,167, 80, 86, 47,172, 86,193,198, 58, 37, 36,249, 96,217,183,189, 92,122, 18, 98, 81,106, 99,180, 32, + 85,232, 57,147, 72,162, 54,195, 95, 36, 29, 64,149,191, 32, 33,135, 53, 99,104,175,206,138,106,217,237, 24,222, 81,213, 92, 84, + 33,235,188,211,208, 1, 41,164, 8, 40, 67,194, 29,217,177,117, 93, 80, 27, 77,201,141, 46,242, 68,213, 40,189,180,149,233,125, + 20,145,104,189,248,152,217,118,198, 49,137,144,253, 36,199, 45,202,129,186, 88,189,196,142,181, 8,133, 66,215, 43,133, 78,130, + 21, 4, 28,228,248,240, 49, 48, 48,206,194,119, 52, 89,112, 62,104, 10,145,178,139, 57,188, 98,218, 79,212, 53, 32,195,120,143, +112,242, 8,219,125,132,119, 22,171, 85,143,243,139, 99,156,223, 89,227, 15,254,151,255,147,254, 44, 69, 80,141, 18,198, 33, 88, + 84, 74, 5,132,190, 28, 14, 49, 53,228,249, 22, 63,250,222, 95,224,193, 59,239,226,221, 95,252,101, 60,120,248, 22,126,250,175, +222,199,246,118,187,196,101, 50,159, 91,194, 24,188, 55,186, 91, 20,119,199,126,123,131,105,191,195,229,203, 14,171,205, 6,231, + 23,119,176, 62, 26,209, 15, 3, 51,170,111,113,115,117,141,155,235,173, 98,125,133, 24, 23, 66, 32,135, 69, 8,216,111,119,120, +245,233, 43,156,216,128,205,131,187, 24, 78,143,145,231, 25,213,189,206, 61,247, 65, 14,242,202,106,117,122, 94, 60,135, 75, 92, +161,226,127,122,254, 57,218,243,134,240,145, 65,248, 11,122,101, 39, 52, 84, 0, 3, 60,198,205, 26,232, 70, 96, 53,128,232, 50, + 35,176,138, 64, 44, 48, 23, 3,222,189,186,198, 71, 51,225, 58,199,224,116,250,146, 34,219, 80,115,194, 60, 17,171,188, 31,123, +220, 92, 77,164, 88,103, 98, 23,233, 9, 10,226,204,171,159, 92,244,114,115, 22, 58,126, 36, 62,117,102, 2,159, 20,254, 86, 33, + 80, 66,137, 35,175,246,146, 89, 64, 35,233,138,224, 45,195, 73, 72,180,229,189,125, 13,188, 65, 40,226, 5, 87, 13, 52, 12, 67, +224,137,160, 81, 21,115,222,237, 57, 26,180, 48, 38,182, 2,178,207,231,162,151, 68, 84, 52,129,203,153,176,174,211,126,210,252, +108,129,130, 72, 48, 19,141,207,169,144,239,123,203,156,123, 74, 80,243,157, 99,252, 52, 21, 11, 37, 31, 94,184,141, 47, 34, 97, + 30, 64,201,114, 58, 21,209, 96, 37,241,243,147, 3,193,184,165, 16, 17,229,180, 10, 98,154, 36, 55, 54,125,111,151,168,104, 86, +111,135, 1, 62,244,228, 29, 15,129,221, 1, 65,149,211, 51,199, 11,183, 76,186,128, 20,103,234,202,173, 1, 74, 98,175, 53,141, +234,251, 97,131,208,175, 96, 92, 96,208, 75, 37, 12,171,101, 90, 31,168,227,142,251,200,171,170, 61,159,153, 52,197,132, 49,216, +239,147,194,189,248,170,166,243,194,210,231,233,250, 30,176, 6,133, 45,115, 34, 76,166,221, 54, 61,191, 53, 39, 22, 41,146,185, +173,240, 56,187,164, 25,181, 70, 6,164, 5, 14, 73,225, 56, 89, 88, 93,135, 88, 71, 63, 3,198,193, 91,163, 83, 68,103, 27,119, +249,230, 64,100,188, 36, 87,202,234,168, 52,206,194,104, 21, 45,211,101,157, 82, 97,150, 0, 79, 75,234, 98,153, 52,156,243,209, +248,238, 16,118, 73,102, 29, 1,145,242, 12, 74,201,180, 51,111, 88,178, 51, 74, 93, 8,156,206, 33,229, 4,231, 59,246,222,155, + 37,167,133,145,191,185, 20, 21, 24, 54, 48,120,233,223,255,173, 95,253,221,156,104,196,238,236, 1,133,136, 91,122,107, 12, 18, +251,186,105, 12,212, 56, 75,124,153,227, 23, 94,252, 11,188,198,170, 87, 81, 68, 8,237,181, 4, 53,207, 33, 22, 57, 87, 5, 57, +164, 20, 53,234,211, 48,173,170,239, 59, 86,139,202, 56,221,243,197, 71,113,117,125,231, 15, 70,189, 22, 33,116,228,193,229,180, +161,113,236, 57,141,140,236,114, 98, 99, 3, 11,111, 36, 46,211, 26,167, 98, 34,203,137, 62,173, 25,177,253,169, 74,150, 72, 70, + 84,184, 8,189, 46,167,140,105, 71, 41, 92,161,243, 26, 31,233,157,209,253,190, 4, 11,144, 15, 56, 49, 33, 47,171, 7,189, 31, + 6, 66,222,242, 69,145, 11, 17,172, 74,202,186, 71,175, 37,161, 11, 34, 88,108, 7,145,139, 75, 42,221,114, 24, 26,221, 57,170, + 74,211, 57, 93,141, 40,183, 24, 84, 68, 88,222,231, 75, 39, 87,106, 85,205,128,172, 50,104,186,210,241, 1,215,195,119,157,142, +137, 28,199,205, 54, 14,190,153,167, 9, 41, 70,214, 98,240,197,236,143, 96,199, 55,200, 17, 49,120,156,223, 57,194, 59,239, 61, +192,211, 79, 63,196, 7, 63,252, 1,143,235, 36,224,162,113,145, 34, 10, 93,210,122, 72,210, 86,227, 96, 25,176,226,117,218, 94, +227,249,211, 87,184,120,240, 38,222,126,239, 29,172,120, 90, 20,186, 14,227, 72,176, 26, 26, 55, 59, 18, 34,242, 69,223,245, 29, + 12,131,142, 66, 8,186,183,220,239,119,184,189,222, 98,154, 34,237,161, 87, 43,172, 54,107,172,214, 35,101, 31,100, 42,228, 98, +140,216,110,119,152,166, 25,183, 55,183,120,249,244, 18,223,253,227, 31,227,241,135, 95, 32,199,130,205,233, 6,171,187,231, 88, +157, 29,115,156, 34, 19, 4,217,151, 45,135,163,183, 22,119,206, 54,120,239,209, 5,126,241,221, 7,248,185,187, 15,240,243,235, + 11,108,110, 44,108,105,216, 34, 33, 46,110,119,156,161,199, 55,223,120, 7,253, 87, 87, 56,125,122, 9,179, 57, 6,206, 31, 2, +214, 98,254,243, 31,195,143, 43,124,249,254, 19,124,190,163, 98, 86, 84,212,212,137,115,103,157,178,242, 20,230, 41,106,200,133, +168,214,169,115, 46, 10, 39, 34,129, 79, 98, 97, 39, 41,172, 73,131, 48,107,183,154, 18,137,155, 44,150,224, 32,177,168,102, 73, +207,170,228, 69,119,236,150,145,239,130,224, 49,172,201,112, 94,197,150,149,243, 11,196,226, 36,118, 92, 73, 12, 91,160, 46,132, +205, 53,252,108,203,248,221,176, 93, 85,198,233,148,218, 55,161, 20, 42, 58,229,240,173, 44,136,181,220,185, 81,151, 20, 48,114, +204,106,232, 2,197,198, 98,129,105,197,148,232,239, 55,199,215,104,127,153, 67,106, 4, 62,179,136,189,140, 78, 65, 15, 65, 59, + 11, 47,130, 46,222,190,163, 51,108, 92,141,252, 46, 47, 98,174,156,242,223, 10, 82,226,207, 57, 83,180,179,247, 61,250, 97, 68, + 55,140,232,250,129,223,119,230,116, 48,119, 3, 45,179, 37, 54,233,174, 23,181,160, 22,218, 99,119,253,136,213,230, 4, 97, 88, +195,186, 0,195, 98, 45,193,111, 11,179,160,129,196,179,243, 28,233,179,172,242, 59,114,230, 69,229,169,101,101, 92,111, 91,162, + 97, 37,131, 60,231,140, 86,146,230, 85,104,156, 45,103,102,148,156,208,176,144, 43,201, 62, 72, 99,119, 77,162,179,158,232,106, +138,205,110, 75,224,149, 11,186,198, 52,188, 2, 32,218, 93, 85,161,168,172, 37, 12,167,117, 90,179, 48, 75, 52,246,186,102,245, +151,107,184,150, 88,192,121, 74,130, 70, 77,152, 36,158,138, 85, 84,118,190,202,204, 87, 40,167,103, 91, 27,111, 93, 89,224, 41, + 52, 84,186,172,151,204, 17,192,168,125, 81,238,150,198,213,239, 2,139, 50,112,255,206,111,252,242,239, 90,222,167, 90,101,161, + 27,141,220, 52,172, 70, 39,161, 80,101,213, 37, 94, 3, 7, 56,103,181,187,236,250,160,240,151, 42, 9,105, 60, 90,243, 12, 61, +144,164, 40,177, 14,177,163,158, 43,111,246,188,242, 31,160,235,123, 18,101, 57,143,194,225, 47,180, 47,174,138,142,205,137,201, +112,206, 50,203,217, 97, 24,123, 12, 67, 7,107, 23, 37,173, 88,155,186, 46, 32,229,170,169, 59,196, 68,103, 31,187,165, 4, 0, +171,128,139,229,207, 41, 7, 32,253, 89,168, 8,152,167,121,209, 18, 88,218, 81, 9,206, 81,148,147, 48,148, 72, 38, 15, 73,156, + 35,140,163,177,100,215,247,220,241,209, 40, 82, 98, 49, 83, 76,200,115, 66,232, 44,231,211, 71, 30,229,208,129,108,152,125, 13, + 22, 5,214, 3, 69,173,230,192,243, 69, 78,147, 19,192,119,244,114,202,133, 34, 18, 81,153, 36, 20,174, 18, 9,189, 91, 85,200, + 68, 89,192, 84,220,132,224, 52,178, 19, 44,234,147,201, 72,101, 42, 88,156,247,216,239,247, 68, 17, 75,244, 50, 12,103,223, 68, +204,116,137, 29, 29, 15,184,255,224, 12,247,238, 31,225,159,255, 95,255,152, 68,137, 34, 26,145,232, 66, 46, 88,132,153,208, 56, + 63, 94, 30,106,231,105,114,226, 68, 48,130,130,151, 79,159,162,193,227,252,222, 61, 60,120,235, 62,186,190,211, 2, 76, 52, 22, +150, 11,151, 16, 60, 50,251,129,229,207, 40,200, 80, 25,147,237,247,123,220, 94,223,224,242,242,154, 40,135,161, 67,223,247, 24, + 87, 35, 54, 71, 27,172, 55,107,138, 0, 46,130,128, 4,214,155, 1,102,232,240,249, 23, 47,240,163,159,252, 12, 83, 53,184,251, +230, 29,172,143,214,240,206, 80,209,215, 26, 76,227, 49, 53,219,122, 86, 99,135,177,243, 88,175, 7,156, 28,175,112,255, 98,131, +159,123,239, 77,124,231,189,183,241,203,119,223,194,119, 46,222,194,195,182,198,201, 28,240,246,241, 5, 30, 61,186,143,159,125, +241, 18, 63,121,255, 43, 92,126,122, 5,251,248, 75, 60,253,222, 7,248,111,255,251,223,195,151,207,175,241,170, 24, 84, 75,113, +181,153, 83,180,136,162,152,148, 63, 45, 33, 72, 18, 37,106, 84,111, 82,149,253, 14,254,220,165,187,150,220,121,201,208,206, 41, + 49,112,138,254,253, 60,209,142, 57,177, 30, 39,206, 51,119, 91,153, 47, 69,202, 81, 23, 97, 85,213,108, 0, 66, 42,247,195,160, +160, 37,107, 27,139, 81,161,103, 14,157, 97, 77, 9, 91,181, 20,237,200,165,195,165, 63,175, 97, 49, 91, 86,166, 67,201,153,109, +185,133, 39,107,139, 59, 7, 7,209,149,116, 74,226, 42, 45, 0, 0, 32, 0, 73, 68, 65, 84,160, 18,127, 62, 48, 69,206, 8,238, +152,215, 38,214,145, 85,112,187,221,179,248,118,225, 48,104,162,150,210,201, 14, 73,111, 77,227,175,244,226,145,145, 50, 63,143, +125,223, 99, 28, 7,158,126, 65,115,239, 41,100, 38, 31,132,194,200,250,173, 0, 53,163,235,105,186,212,179,189,212,251, 78,152, +128,124, 25,209, 42,163,230,130,105,154,249, 98,100, 13, 80,161,245,136,239, 6, 12,171, 35,132,126, 77, 78, 21, 23,212,249,228, +120,165, 65,164, 69,234, 78,167,253, 68, 65, 74, 73,114,213,137,148, 41,184, 89,192,242,232,222, 28, 8, 13,237, 65,182, 4, 41, +190, 91, 43,186,170, 44, 60,225, 20,178, 41, 64,231, 64, 74, 51,235,149,178, 22, 80, 46,116, 48, 54,104,144,140, 97,111,183,117, + 94,115,226, 45,163,206,219, 1,108, 75,154, 82,171,128, 62,206,179,224,103, 95, 62,175,122,192,209, 95,198,220,141,197,202, 85, + 83,225,150,176,155,162,255, 31,195,238, 25, 17,166,138,138, 93, 10,178,156,179,106, 77,180, 40,228,203, 95, 65,171,198, 28, 68, +163, 19,133, 79, 38,150,130, 56,167,213, 5, 89, 66,141, 49,240,214, 24,184,224, 56, 23, 61,195, 59,163,204,221, 97, 28,105,135, +155, 50,198,149,197,180,223,107, 5,106,173,227, 17, 48,121,248,122,254, 82, 68,189,222, 56, 85,204, 58,143,121, 63,209, 8, 47, + 21,218,177,113,245, 50,174, 89, 53, 89, 11,124, 8,216,222, 78,100, 17, 99,156, 31,137, 13, 88,200,151,201, 78, 38, 21, 73, 63, +244, 28,169,153,153,226,211, 16,122,199, 83, 2, 14,151,137, 9,195, 16, 20, 39, 72, 42,244,142,237, 47, 78, 87, 14,180, 63,163, + 75,121,158,146,162, 99,107,109,240, 93,143, 56, 71,205,180, 37, 29, 0, 93, 0,187,221,158,119, 88,150,128, 26, 76,134,179,150, +172, 46, 80, 48,193,114, 49,213,214,208, 13, 29,127, 97, 86, 67, 7,172, 49,176,161,131, 49, 22,105,142,154, 69, 61, 79,244, 32, +123,207,159,181, 49,172, 83,104,252,240, 23,125,120,114,206,236, 67,133,166, 58, 9,154, 80,210,221,172, 51, 11,183, 29, 11,162, +183,230,194, 33, 3, 96,133, 55,184, 11, 7, 31,240,132,170,165, 49, 23,253,211, 50,226,177, 53, 42, 10,115,169, 72,243,132, 24, +231,165, 75,171, 21,190, 63,129,237,143,128,219, 9, 93,231,177, 57, 26,241,224,173, 59,120,255, 7, 63,192,205,245, 37,239,243, +101,204,203, 59,249,148,208, 82, 68,215, 15,136, 51, 11, 45, 13, 17,246, 42,195, 25,188, 55,156,146,199, 81,149,166,225,233, 23, +159, 97,119,123,139,187,111, 60,192,157,251,247,113,126,247, 2, 87,175, 94,225,234,213, 53, 7,162, 48, 74, 54,101,126,217,100, +138,195, 66,164, 90, 85, 79, 96,120, 90,145,226, 30,159,125,122, 13,239, 29,134,113,133,163,227, 99, 12, 67,135,174,119, 24,198, + 1,231,173, 97, 98, 28,237,184, 25,112,191, 53,160,189,129,219,203, 61,174,190,216,226,167,127,243, 49,238, 62,186,143,245,186, + 71, 42, 13,101, 63,163,243, 22,142, 5, 54,173, 22,100, 25,229,214,130,150, 35,208, 42,130, 3,186, 85,135,163,245, 8,103, 13, +190,253,173,183, 80, 51, 29,154,174, 85,164,153,144,147,159,125,121,131,199, 95, 94,227,135, 63,252, 16,127,231,239,127, 11,143, +126,254, 17,208, 34,230, 57, 51,131,157, 38, 98,164, 2, 54,188, 23,109,172,197, 96,236,108,107, 74,152, 67, 89, 2, 71, 28,143, +238,101,114, 35,182, 76,209,181, 80,244,171,209,139, 50,120, 82,208, 35, 91,102, 2, 20,157, 49, 8,215,154, 58, 86,135, 52, 87, +102, 27, 36, 42, 56,107, 69,219, 1,206,209,101, 29,167,137, 97, 65, 89,195,105,104, 31, 13,198, 55,103,237,164,136,125,222,150, +103, 41, 12,200,160,213,159,100, 89, 72,183, 95,107,162, 41, 92,165,157,120, 8, 22, 41, 55,189,216,197,137,220,245,129,162, 99, +197,207,222,160,193, 80, 41, 38, 76,211, 68, 5, 60, 23, 29, 60, 35, 96,157, 66,213,235, 84,148,211, 98,169,210,110,144, 89,142, + 50,245,211, 14,158, 59, 71,253, 87, 25,235,243,132,177, 85, 44, 81,157,188,255, 13,221,168,145,169, 4,172,225,224,153,218, 14, + 2,182, 10,169,220, 57, 80,197,218,198, 35,244,202, 49,204, 27, 66,200,118, 61,171,199, 73,112,230, 67, 80,187,150, 53,203,119, +157, 51,165, 28,150,186,104, 2, 96,200,174, 76, 5,162,231,149, 6, 52,151,189, 85, 34,138, 82,254, 6,233,110,196,234, 44,157, +168,134, 64,153,162,211,186, 90, 34,173,106,217, 22,215,216, 99,214,224, 56, 57,178,146,142,137,155, 37, 81,191,147,252,221,113, + 90, 97, 56, 8,243,178, 42,130,147,244, 54, 74,125, 91,152, 29,114,153,194,100, 93,201,180,146, 89,191, 33, 49,192, 80,215, 79, + 67, 85, 70,125,107, 13,166, 57,206,216,240,188,190, 40,154, 52, 39,147,128,156, 51,156, 15,168,185,105, 1, 45,174,137,202,147, + 15, 35, 19,116, 99,201,198,204,116,211, 37,118,220, 0,197,242, 68,171, 17,251, 93,118, 94, 29,139,211,148,167,205,137, 83,227, + 56,176, 53, 45,113,206,177, 36, 19,177, 85,202, 24, 78, 29,179,232, 82,135, 97, 28,149,192,214,106, 67, 55,208,197,232,184,147, + 38, 42, 92,207, 95, 32,133, 16,144,223, 59,176, 48,161, 32,206, 17,125,223,107,101, 85,217, 82,214,208,208,117, 65, 15, 7,235, + 28,243,152, 13,127,185, 13,214, 19,158,177,239, 3, 74,174, 8, 1, 58,118,201,185,170, 82,211, 0, 52, 50,202,133, 30, 52,222, + 77,147,106,214, 32, 32,104,215, 43,170, 83, 26,149, 80, 22, 52, 37,129, 81, 49,144,102,130,230, 52,102, 56, 31,142,187,133,226, + 6, 88,140,171, 21, 29,142, 60,122, 68,107, 92,160, 44, 59,178,148, 18,239, 87, 11,230, 56,211,193,228,173,114,163,157,147,233, + 73, 92,126,142,136,213, 4, 41,235,229, 33,242,104,153,194, 78, 68, 12, 66,154, 8,167,132, 36,235, 72,216, 88, 88,225, 31,188, +103, 46, 61,237,250, 42, 91,222,156,247, 60, 62,165, 34,104, 98,113,164,105, 6,211, 52, 33,199,136,237,237, 13,210, 28, 85,160, +214,106,197,120,246, 54,226, 76, 58,130,245,186,195,197,221, 19,120, 87,240,195,239,254, 5,227,123,105, 34, 36, 19,140,170, 2, +191,130,105,191, 71,215,117,116, 32, 27,171,158,247,202, 33, 16, 66,222,107,188, 99,114,206, 98,123,123,133,233,163, 45,174, 94, +158,225,238,131,251, 56, 58, 61,195,201,217, 41,174, 46,175,137, 6,183,155,153, 34, 69, 47, 97,140, 73,225, 69, 2, 20, 9, 28, + 19, 44,163, 78, 65,146, 78,251, 29,246,187, 45, 90, 51, 56,187,115,142, 97,160,110,174,239, 7,108,142,142,112,126, 81, 48, 79, + 51, 39,248, 5, 92, 62,185,198,179,199, 95, 98,119,187,199, 91,239,189,133, 97,213, 99,246, 30, 31,126,240, 57,108, 41, 56, 63, + 89, 97, 53,120,120,222,179,230,148, 48,239, 38,181, 90,122, 11,100, 46,120,140, 15, 48,104,240,166,161, 76, 59,228, 2,132,213, + 72,254,234,253,132,235, 28,241,235,111,159, 97,154, 18, 46,238,157,161,190,122, 69,160,149,224,217, 74, 99,117,119,188,196, 37, + 83,225,102,141,133,101, 17,101,232,131, 98, 41,107, 94, 52, 40,149,233, 93, 36, 68,148, 48, 23,250,255, 89,217, 91,183, 5,135, +154, 98,212,131, 71, 46,117, 74,132,116, 42, 18, 85,173, 65, 74,232,134,129, 85,224,244,189,199,105,175, 29, 20,169,147, 43, 12, + 10,114,172, 76, 58, 46,234,106, 17,154,164,231,181, 94,201, 51, 92,232,121,125, 64,118, 40, 48, 74,218, 8,248,131, 21,196, 49, + 10,181,140,117, 36,149, 86, 77,130, 5,150,238, 95,224, 90,210,117,215, 82, 53, 96,131,138,243,124,176,143, 21,251,156,229,188, +128,178, 68,177,170, 56,208, 30, 80, 45, 43, 39,243, 5, 70,187, 46, 32, 45,113, 38, 40, 43, 95, 2,125, 32, 33, 84, 29,199, 79, +119,172, 77, 8,100, 9, 78,130,134,182, 40, 57, 34,197, 61, 74,140, 20, 3,203,209,203,181, 21, 56, 22,196,117,195, 26,174, 27, +152,109,110,150, 68, 49,111,224, 44,101, 94, 68,222,225,206,243, 76,161, 60, 62,112,200, 79,227, 21,173, 81,219,156,211,120,224, +166, 43, 77, 99,232,175,201,138, 71, 11, 53,179,196,199, 54, 14, 50,106, 48,156, 93,145, 56,109,212,145,242, 27, 64, 5, 65,211, +228,204,175, 60, 53,180,206,115,215,238,121,164,238,148,149,160, 32, 32,195,232,240, 38,185,134, 12, 59,106,130, 62,247,220,244, +212,197, 58,199,187,242,198,150, 96,152,166, 97, 61,218, 97,139, 29, 78, 86, 0,150,157,100,149,176,187,150, 11,236, 82, 10, 76, + 93, 68,206, 41, 38, 52,188, 54,180,214, 68, 57,153, 70, 21,182, 6, 22,221,185, 55,242,223, 55,106,166, 84,183,210, 26,124,140, +137,237, 36,149,171,240,170,106,242, 82, 40, 52, 1,161, 49,108,162, 28, 36,206,144,184, 14,156, 63, 44,128,251, 24, 19,156,247, +232, 24, 66, 98,140,213, 48,145,121, 79,138,226,190,239, 89,152, 21,208,230,132,152, 40, 1, 45,167,168, 59, 2,231, 60, 82,206, + 48, 49,161,235, 44, 60,227, 28,187, 62,168,245,206,240, 33,111, 88,169, 41,177,177,158,131, 42, 72,245, 76,187,187, 56,211,206, +199, 7,135,148,120,183,116, 80, 17, 27,190, 24,134,177, 67, 76,153, 11, 18,246, 76,242,248, 41,165,162,220, 98,170, 8, 25, 58, + 32,121,195,134,148,167,133,237,101, 50,166, 35, 33,155,103, 50, 22,121, 72,201, 26,216, 72,112,198, 94,201,253,118,143,121,138, +116, 48,181,130, 52, 79, 48, 7,169,121,178,155,163,174, 99, 17,246, 89, 35, 64, 24, 25,149, 51, 63,160, 35,152, 2, 88,133, 79, +202,119,142, 10,108, 32,155,139,248,244,217,255, 47, 54, 14, 83,155,254,127, 58, 23, 16,148,218,103,217, 82, 65,133, 89, 99,196, +103,206, 5,187,237, 45,166,221, 78, 71,230, 57, 87,116,227, 9,194,120,134,253,213, 14, 67,239,113,116,178,194, 27,143, 46,240, + 87,127,242, 71, 58, 17, 64, 99, 69,174, 15, 90, 60,201, 63, 90, 45,152,231,137, 85,180, 6, 37, 4, 56,235, 96, 28, 39,205,249, +160,233,113,212,173,177, 98,213, 86,220, 94, 95, 98,191,221,226,228,252, 12,167,119,232, 98,223, 28, 29,225,250,234, 10, 47,159, +191, 66,227,110, 65, 80,169,181, 90,189,196, 19,179,168, 37, 0, 72,246,250,161, 11, 72,153,192, 35, 87,175, 94,226, 18, 6,195, + 48,226,232,120,163,223,201,230,232, 8,235,205, 17, 0,224,233,227, 27, 60,127,252, 10,229,242, 22, 55,255,242, 35, 60,120,116, + 23,111, 60,186,192,183,127,229, 61,124,254,209, 23,248,232,147, 39,196,165, 7,217, 1, 79, 55, 61, 86,125,128,227,239, 37,115, +242, 94,227,157,116,227,212, 65, 99, 44, 12, 3,146, 58,239,240,229,245, 30,223,249,173,159,195,241,233, 41, 63,219, 1,155,227, + 13, 29, 40,220,189, 90,103,104,157, 83,151,113,112,156, 51,227, 72,173,102,104,215,202, 43, 26, 44,121, 7, 18,206,147, 83, 89, +248,217,192, 98,189, 49, 6,195, 56, 96,123,179, 39,107, 21,143, 81,197, 75, 75,108,139,204,151,118,164,131,211,121,228, 72,202, +229,213,209, 17,199, 19,103, 18, 77, 21,194, 52,215,202, 48,165, 86, 20,104, 35, 90, 29,235, 44, 91,178,232, 16, 36,138, 37,209, +187,208, 42,114,140, 60, 13, 99,114, 91,201, 0, 8,206, 34,145,175, 85, 70,234,134,166, 78,162, 69, 33, 61,143, 81, 70,124,107, +139,109,171,150,162, 62,108, 10,105, 90,166, 0, 58,198,133,100,166,151,215, 58,112, 17,176,106,167,199,217, 18,194,164, 39,113, +177,103,128,146, 57,208,144,152,133, 51,207,192,172,194,105,141,178, 34,164,181, 84,208, 36, 61,145,132,229, 20,129, 74,250,156, +121,154,248,253,151,130, 96,128,247, 1,195,138,246,231,178, 30, 53,206, 1,149,199,245,213,177,181,152, 4,193,243, 68, 43,149, + 6,139,148,139,174, 85, 75,165, 73,143,236,175, 89,247, 74, 83,145,102,212,115, 46, 5,123,112, 52,169, 96,157, 26,253,253,101, +111,221, 26, 95,242,156, 12,119, 0, 40,162,207,137, 52, 50, 50,149,244,161,231,239, 43,112,247, 42, 62,117, 7,227,137, 12, 10, + 99,248, 44,141, 76, 8,229,244, 54,235, 88,160, 6,158,157, 84, 6,214, 24, 6,117,149,133, 74, 41, 54, 57, 69,208, 22,190,131, + 2,101,138, 88, 94, 49,243, 14, 92, 28, 11,165, 2,165, 38, 61,199,170,228,138, 48,245, 78, 46,124,221,175,243, 36,215, 24, 10, + 60, 18, 39,135,177,242, 59, 25,133,111,169, 56, 85,146,227,254,189,127,253, 87,126, 87,186, 63, 25,169,211,225,209,180, 3, 52, +127,235, 97, 92,198, 3, 85, 5, 70,244,224, 67, 69,106,210,121, 75,181,183, 40,247,136,199, 78, 23,189,213,252,233, 90,168,154, +141,115, 84, 50, 90,227,135,156,176,130, 6, 48,158,133,118,158,199,227,162,192,165,203,211, 57,143, 97,236,209,117, 1, 93,231, +209,143, 29,119,178, 70,147,124,164, 99,148,244,181,121,166,176, 10,199,248,200, 82, 26, 86,171, 81, 45, 5,153,247, 79, 50,166, +241,206,115,248,141,140,221,219, 18, 18,193, 4, 33, 65,220, 54, 0,193, 59, 78, 76,178,146, 47, 67,107,128, 46,240,174,199, 81, +103, 92, 42,246,219, 61,251, 83, 13,230,253,142,246, 61,156,150,103,140,140,201, 41, 18,151,118,102,158,199,226,157,250,255, 29, + 95,204, 4,200,129,198,187, 18,244, 65,254, 59, 42,120, 74,202, 44,144,179,140,194, 36,203, 10, 97,169,141,218,237,104,228,117, +168,150, 55,252, 48,146,127, 54,206, 51,230,253, 14,243,180, 37,122, 94,202,170,248, 28,207,222, 67,179, 35,172, 5, 54, 71, 35, +222,124,120,129,206, 37,252,217, 63,253,127,184, 91, 98,178, 95,173,236,229, 60,220, 23,113,246, 76, 91, 14,200, 86, 43, 18, 63, +204, 98,195,163, 21, 71,211,238, 73,146,177, 36,252, 96,191,221,225,230,234,150,236,141, 67,143, 97,181,194,201,217, 49,125,230, +187,137, 3, 56, 26, 11, 3,205,242,243,216, 14, 35, 89,199,150,133,140, 82,157,203,207, 40, 37, 97,123,123,139, 56, 39,101, 51, +120, 79,120,209,219,235, 61, 46, 95, 76,176, 93, 7, 52, 96,119,187,199,180,139,232,214, 35,134,205, 10, 38, 71,204,215, 55,240, + 6,120,241,226, 6, 31,127,250, 12, 31,124,244, 37,174,110, 38,122,182,141, 65, 99,196,109,137,108, 89,146, 17, 55, 12, 92,232, + 97,187, 30,159,125,245, 2,191,244,155,223,192,201,217, 49, 86, 71, 27, 24, 99,112,241,224, 46, 95,104,150, 84,203, 50, 30, 45, +133,198,234, 88,244, 5,137, 47,107,171, 22, 46,114,118, 52, 44, 86,204,229, 93,134,142,235, 51, 11,154, 68,131, 35,145,205,133, +197, 98,120, 77, 24,181, 68,173, 86,182, 10,141,171, 17,227,106,212,181, 85,201, 17,211,110,143, 28, 35,217,210, 12, 40,191,187, + 86, 29, 21,139,232, 44,197, 89,125,192,153,193, 45,194, 87,207, 26,176,226, 56,126,149,247,247, 44,152,171, 12, 16,201, 41,113, + 60,187,213,103,223,121,139,129,117, 19, 36, 2,165,113,112,240, 12,131,202, 5,219,155, 91,204,243,172,236, 8, 42, 80,121, 39, +204,129, 52,154,202,198, 92,123,163, 81,179,149, 69, 84,237, 64, 33, 79,135,127,215,141, 24,199, 21, 66,215, 29,228, 62, 64,145, +171,133, 3,178,136, 88,201,241,195,128,250,255,201,193, 98, 85, 47, 99, 76,227,168,219, 91,196, 56, 75, 53, 7, 99, 42,186, 48, +160, 31,214,232,134, 21,172, 13,108,155, 50, 10,235, 18, 64,116,173,141, 41,153, 5,243,156, 56,196,202, 48, 40, 43,208, 51, 10, +199,247, 6, 91, 93,141, 89,132,101,173,177,119,158, 10,199, 28,105,229, 33,223, 9, 90,195, 60,207,124, 97, 85,166,172,241, 62, +219, 88, 37,172, 21,222,163, 91,223, 45, 83, 80,223,193,119, 3, 96,232,223,135,142,137,159,214, 49,199,132,126, 15,239, 44, 91, +217,202,129, 54,195,112,222, 57, 19,228,114,209,125, 53,173, 98,232,187, 37,254,124,230,149, 98, 36,155, 47,167,241, 73, 1, 68, + 66,222,142,167, 11,149,227,108,177, 48, 10,164, 48, 19,225, 29, 95,196, 57, 39, 14,255, 33,151,133,144,246,100, 79,111,140, 33, +170, 39, 79, 8,170, 68,203,242, 4, 85,196,143, 44,221,160,169,209,239,252,189,239,252,174, 84,116, 98, 77, 18,239,178,136, 27, +164, 50, 23, 92,159,140,129, 37,247,183,241, 95, 55,172,104,165, 0,129,133,149, 91,249, 34,151, 7, 87, 96, 39, 11, 0,131,233, + 74,214,146,120,131,171, 34,137,211, 51,150,168, 78, 52,238,246,232,250, 94, 31,108,169, 98, 59,246,196,246, 60, 14, 13,157,215, +113, 25,101,148, 83,167, 45,194,184,166, 99, 65, 67, 85, 95,160, 80,142,213,122, 80, 17,197,126, 71,185,218,228,197,116, 72,185, + 48,145,173,177,245,175,105, 66, 27, 96,224,185, 59,111,135,187,116, 30,191, 72, 5, 79,135, 62, 61,252,161,239,249, 50,181,124, +233, 68,164,121,194,238,230, 22,222, 45,148, 28,234,168, 34,219,236, 56,189,141,213,234,135, 69,151, 32, 79, 29,103, 33,107, 66, + 21, 11,253, 36,105, 14, 98,203, 10, 52, 98, 44,165,114,176,197,226,169,183, 34,228,145,244, 47,222, 71, 9, 66, 23, 77, 46,244, +136,253,110,194, 60,147,226,157,118,252, 2,168, 89, 97,115,247, 91,200,169, 96, 24, 60, 78,207, 54,120,251,221,251,248,222, 31, +253, 33,158, 62,249,130,255, 30,109,217,161,181, 37, 22, 87, 4, 66,242,176, 58, 31,120, 74,208,224,125,199, 47, 88, 57, 80, 21, + 47,202, 90,233,176,165,240, 76,124,112,223, 92,223,224,230,242, 86,211,239, 86,235, 53,142, 79,143, 80, 10,129,121, 50,171,218, + 15, 28,192, 26,190, 96, 14,196, 65,181,138,158, 33,243,200, 21,186,215,107,220, 33,238,119,100,225, 76, 83,193,237, 85,212,194, +213, 56,139,253,110,194,246,122,135,147,243, 99,108, 78,143, 80,230,136, 23, 63,123,142, 15,191,120,133,175,110,174,145,114,198, +202, 90, 92, 94,238,240,211,207,158,227,179, 39,175,112,115, 59,209, 25, 82, 89,147, 81,155,218,190,174, 47,111, 16, 7,224,222, +195, 83,206, 5,160,103,220,119, 3, 41,149,173,135,239,104, 45,230,216, 27, 46,239,167, 76,228, 26,219, 61,233, 25, 99,164,112, +112,200,145, 68,152, 68,121, 91, 34, 88,155,114,170,101,240,104, 88,148, 70,223, 11,133, 13, 65,247,225, 75,164, 37, 71, 84,194, +226,248,228,132, 97, 82,134, 35, 62,103,236,119, 59,214,237, 84, 69, 33, 19,235,221,106,167, 42, 5,151, 38, 26, 22, 26,169, 74, +246,120, 61, 60,179,216, 94, 71, 71, 35,184,224,163,201,195, 52, 69,104,237, 40,112, 18,198,205, 14,227, 72,107, 68,118,143, 88, +231, 88,151, 0,196, 41, 98,154, 38, 22,201, 22,198,173, 46,227,216, 82, 18,249,189,153,204, 70,147, 19, 6,212,212,124,176,127, +135,186,138, 26,159, 43,227,184,198,122,179, 65, 23,186, 3, 20, 47,148,180,150,242,172,238,150,174, 31,116,148,239, 24, 48, 99, +173, 87,202,153, 36,137,205,211,158, 38,104,109, 9, 25, 9,221,136, 97,181,134, 11,129,187, 75, 40,107, 66, 26, 11,185,152, 40, + 47, 62,145,197,185, 54,180,102,225, 24, 18, 37,194, 92,137,186,133,125,125, 5, 67, 59, 98,171,232, 84,162,103,154,101,151, 47, + 10,126, 97,230,139,248, 81,138, 73,144,123,106, 33,187,117,148,109,223,117,234,193,247,161,135,247,157, 2,138, 52,241,207, 26, +141,193,134, 89, 0, 72,162,164,215,169, 0,255,231,198, 76, 14, 58,171,179,146,245,208,202,193,119,153,244, 18,149,117, 96,229, +145, 68, 83, 1, 94, 83, 82,167, 20, 14,144, 78,250, 32,189,135,116, 73, 4, 93,210, 48, 34, 88, 84, 86,205, 27,137,226,229,113, +123,109,117, 17,116,182,198, 19,144,166, 58, 32,161,213,121, 34,125,121,196, 57, 46,201, 48,172,116, 53,198, 32,248,128,148, 19, +167,177,129, 48,167,134, 14,220,253,110,167, 48,131,140,132, 16, 58,234, 42,217,238, 68, 93,152, 87,133, 33, 89,217,188, 94,216, +100,143,242,232, 74, 69,148,192, 16, 22,142, 73, 69, 13,142, 0, 28, 6,138,234,236,248, 32,178,134, 58,118,121, 0,140, 53,232, +250, 94,109, 23,170, 48,181, 11,190,182, 50, 69,169,176,253,202,200,104,142,225, 59, 62,120,238,202, 26,230,253,172,213,170, 11, +129,246,110,181, 34, 55,122,233,187,158,166, 7, 53,147,224, 36, 59,199,240,141,196, 2,177,134, 97,236, 53, 77, 74, 44, 36,150, +131, 98,250,224,209, 15, 61, 11,130,136,229, 78,241,164, 59,148, 20, 49, 53,234, 42,101, 76, 74, 1, 41, 22,195, 48, 80, 92,173, + 4,187, 20,192,240,248,187, 31,122,148, 92,105, 37,196, 68, 59, 25,143,214, 82,152, 12,151, 85, 29,106,212,147,239, 15,210,178, + 10,144,233,251,149, 81,160, 85, 52,103,160,232,219,156, 81,106,227, 75,156, 14,176, 90, 18,103, 3,243,244,197, 89,108, 46,222, +225,196, 46,160,239, 3,238,191,121,134,155,151, 79,241,201, 7, 63,209, 72, 74,249,236, 11,239,225, 94,183, 21, 10, 58,184,242, + 51,215,193,112, 10,150,156,198,226, 29,150, 96, 26,226, 16, 4,254,158, 59, 61,112,196,114,183,223,237,113,117,249, 10, 71, 39, +167,184,123,255, 2,195,106,192,201,217, 9, 86,235, 21,174,175,174,113,123,125,131,218, 10,166, 45, 1, 56,200,110,216, 84,248, +104, 56,124, 36,167,204,162, 78,234,124, 67,215, 96, 77, 64, 45, 21,169, 69,212,153,128, 38,219,155,136,123,103, 35,166, 84,113, +187, 39,235, 95,105,192,237,245, 30,159,190,255, 51,124,253,231, 31,226,205,247, 30, 34, 77, 17,255,252,195,207,240, 17, 94,226, +172, 89,124,163,110, 16,188,195,233,233, 10,159,188,184,193,112,255, 4,143, 95,109,241,226,167, 95,225,226,244, 24, 15,238,108, +112,113,186,198,177,113,120,126,181,195, 55,127,251, 91,232, 58,161, 62,103, 76,211, 30, 49, 87,220,123,112,161,187, 94, 99, 28, + 3, 97, 58,205,158, 55,166, 50, 63,130,198,229,165, 84,152, 86,120,191,207,187, 66,158,106,137,157,138, 34,131,177,100,162,163, + 33,206,121, 33,166, 21,201, 4, 7,246,115, 6,172,225, 9, 3,189,223,221,176, 98, 1, 26,189,139, 37,205,136, 19,119,246,162, +110, 46, 5, 83, 76,176,142, 38, 70, 57,145,208, 76,237, 87, 92, 96,150, 76,150, 79,231, 45,140,115, 12,144,170, 72,137, 39,103, + 53,194,216, 78,149,241,114,156,210, 14,154,198,208,115, 76,240,129,138,116,103,169, 1, 1,219, 85, 67,231, 85, 12,188,168,150, + 41,146, 52,231,116, 96, 95,227, 78,142,255,115,140,123,110, 0,184,225, 97,204,182,181,139,245, 72,168,142,114,240, 91,182,101, + 73,134, 59,137, 2, 9, 0,229,188, 67,155, 10,175,120, 28,250,126,208, 61, 62,141,221, 59,101,137,103, 70, 76,203,254,118,158, +103,164, 20,117,100, 61,172, 54, 8,161,163,208,149, 12, 84, 43,185,228,204, 36, 55,141, 48,207,198, 32,205,228,246, 73,185, 50, +218,148,190, 5,211, 40,199,219,123,186,204,172, 39, 81,116,229,115,167,168, 24,204,146,127,188, 86,213, 3,213, 90, 97,106,214, +213, 69, 19, 5, 63,255,255,148, 42,122,160, 6,183,134, 10,137,192,197,142,117, 65,167, 20,214, 46,113,181,134,181, 2,200,226, +146,177, 76,245,204,154,186, 9, 43,247, 67, 61, 8,242, 17,183,130, 80,234, 10,255,247,153,215, 36, 73,197,112,180,238, 43,104, + 45,232,101, 46, 69, 39,105, 40, 22,183,137,156,171, 37, 39,182, 6, 47,110, 4,203, 29, 62,135,152,208,200,223, 52, 88, 27,180, +208, 16, 50,160, 17, 81, 50,154,146, 7, 27, 22,125, 88,227, 21,166,177, 6,190,213,198, 10,208,192,196,164,172,169, 68, 2,109, +240,172, 14,174, 21,218,181, 24, 99,128,213, 10,105,142,136, 28, 91,151, 51,145,183, 10, 39, 22,245, 67,207, 12,121,250,131,135, +224,153,201,222, 33,197,130,213,138, 4, 30,162, 72,175, 70,176,134,204,120,247,180, 27, 26,198,142, 50,221, 61, 22, 67, 63, 31, + 64, 50, 25,176, 46,112, 37,231,149,153,188, 4, 34, 52, 29, 77,144,208,170,233,232,177,178,242,190,235,233,231,230, 84,212,118, + 70, 93,137,103, 42, 87,212,157,105, 63,144, 82,183,212,138, 52, 71,197,176, 46, 76,244,160, 42, 80,177, 45,204,251, 61,255,249, + 27,243,166, 23, 11, 97,138, 19,226, 52,193,123, 32,199,120, 32, 32, 41, 26,205,216,245, 29,171, 93, 51,255,236,178, 84,201,153, +214, 32,170,180,101,133,176,248,203, 27, 31,234,105,142,232,134, 65,181, 8,206, 7,125, 16, 8,192, 33,207, 23,217,224,132, 61, + 95, 53,215,153, 32, 23,153,197,124,165, 84,228, 56,171, 55,147, 86, 47,196,157,119,190,199,120,252, 6, 82, 36,230,248,201,233, + 26,103,231, 27,252,254,255,246, 79,148,140,167,213,242,193,238, 80,192,128,196,196,110, 60,130,236,216,191, 95, 88,235, 80, 85, +141,188,144, 57,160,133, 40,141,216, 12,230,121,210, 40, 75,153, 42, 9, 58,244,197,179,175,112,123,115,141,245,230, 8,231, 23, +103, 44,118,235,209,221,237, 16,231,136,155,235, 91,196,152, 20, 83,106,141, 65,105,244,125,211, 40, 52,241,168,206,162,235, 58, +122, 30,157,131, 45, 25, 37, 55, 70, 81,210,239,122,188, 89, 97,200, 13,222, 69, 92,223, 78,164,107,112, 6,113, 63,227,201,167, + 79,241,181,111, 60,192,197,215,222,196,187, 15, 31,226,167,159,191,196,215,176,193,217,134,211,180,208,240, 34,237,241,159,254, +195,159,199,184, 26, 48,111, 35,158,127,117,139,199, 63,253, 10,223,255,248, 57,122,247, 18,103, 15,207,240, 91,247,142,185, 0, + 99,213, 47, 12,134,222, 33, 70, 18,120,205,115, 68,220,205,202,146,144,110,219, 7,199,126,121,143, 90, 19,198,193,171, 90,186, +200,161, 91, 43, 21,131,134, 46,210, 44,220,114,211,216, 53,225,144,145, 22, 2, 90,224,245, 88, 41, 56, 58, 89, 35,231,198,239, + 23,217,192,186,174, 67,205, 9,177, 16,250,120, 42, 25,173,102, 29,207, 19, 36,169,170,208,140,214, 91,153, 58,113, 46,204, 43, +255, 94,104,133, 60,199, 5, 12,142,138, 12, 60,162,139,155,208,155,149,119,146, 5,238, 32,151,192,121,139,188,139,220,217, 21, +114,113,180,197,242, 41, 44, 11,225,230,147,166, 32, 47,177,153, 92, 44, 75,248, 71, 83, 76,108,229, 62,108,153,148,113,192, 27, + 4,151, 3, 99, 96, 57,232,197,200, 4,212, 58,116,221,160,106,123, 58,191,104, 87, 77, 19, 16, 97,226,147,150, 69,220, 51,128, +208,243, 68, 47, 67,147, 18,128,152, 17,113,154, 40,230, 53, 4,140,171, 53, 66,232,185, 67, 44,220, 92,101,216, 38,120,211,172, + 35,122,162, 41, 22, 6,214,112, 35, 96, 0, 7,195, 6, 9,210,176,144, 20,111,121,191,196, 85, 84, 10, 83,210,106, 81,221,133, +128,169, 40,124,165,234, 72, 93, 20,232,106,248, 99, 92, 47,106,165,228, 72,107,185,105, 51,212,153, 43,132,140,115, 63,248, 29, + 5,139,245, 40,178,151,215, 48, 60,170,110, 5,154,213,113,152, 80, 73, 43, 0,186,192,141, 78,149,168, 43, 39,173,205,124,112, + 54, 45, 63, 35,103, 42, 24,229,179, 47,181, 46,182,208,214,212,234, 44,205, 11,145,228,150, 6,131,152, 38,118, 89,151,192,162, +212,164,251,122,185,248,133, 17, 47,211,204,162, 83, 89,168, 0,177, 84,154,126,121,227,224,169,250,118, 48, 40,106, 59,200,156, +147, 94,100,183, 9,122,249,173, 29, 84,197,190,187,221,193, 59, 15,116, 80,149, 94,156,211, 18, 26, 80,201,211, 61,104,183, 73, +157,193, 56,246,152,166,136,110, 32, 97,129,235,101,108,222, 33,206, 13,195,106, 64, 78, 17, 19,219,185,156,119,228, 71,175, 13, + 62,112, 8,131, 68,120, 6,238,250,157,213,220,244,174,239, 17, 60, 61,228, 41,209,133,157, 19,217,242,230, 57, 34,206, 25,199, +167, 27,242,188,119, 1, 48, 9,125, 31,244,195,139, 49, 81,166,186, 53, 24,198,158, 21,207, 17,165,208,152,125, 24, 7, 29,163, +151, 28,169, 51,182, 4,142,105, 13,216, 28,247,106,143,154,167, 72,190,117,176,133, 46,101,196, 84, 73, 28,215,104, 23, 93, 75, +134,105, 13,222, 1,115, 42,228, 41, 47, 36,174,145,120, 76, 82, 18, 47,152, 86, 99, 14,224, 19, 28,237, 74, 89,189,150, 4,135, +173, 32,103,192,176,221, 77, 42, 57, 17, 64, 26, 0,193, 19,125,203,241,254, 76,254,225,124, 64, 63,246, 60,178,178,186, 75,167, +206, 45,243,119, 77,163,178, 28,103,196,121,210, 75, 64,162, 62,131,177, 88,157,189, 67, 99, 58,215,112,124, 50,226,238,131, 83, +188,248,242,115,124,245,179, 79, 57,240,128, 57, 8, 56,200, 62, 86, 1, 74,211,204,111, 17,226, 89,179,140,139,237, 65,198,124, + 46, 11, 83, 92,198, 79,214, 58,141, 75,148,131,164,242, 33, 79,233, 76,164,194,158,246, 59, 34,201,189,122,133,243,139, 59,216, + 28,109,224,189,195,241,233, 49, 86,235, 53,177, 25, 74,198,246,118, 71,248,203,186, 68, 38,202, 14,215, 58, 11,103, 29,239, 94, + 19, 98,205, 8,190,227, 0, 6,102,222,123,139,110, 8,252,191,181,216,238,102,236,247, 51,114,105,184,190,220,226,203,207, 95, + 34,172, 2,190,243,235,223,194,243,231,151,120,119, 36, 84,177,239, 59, 92,237, 19,238,223, 57,199,241,233, 6,161,243, 56,187, +123,138,251,111, 95,224, 87,255,222, 55, 49,109, 19,126,246,217,115,172, 55, 3, 86,235, 21,237, 56, 29,173,157,106, 51,136, 49, +163,180, 45, 78,207, 79, 48,199, 12, 23, 2,233, 7,106, 37,160,148,181,184,189, 73, 4, 21,202, 5,185, 52,244,125,165,132, 54, +182, 5, 81,162, 91, 89, 66, 77, 44,117,115,161,243,200,169, 98, 88,209,138,141,214, 51, 85, 5,117,210, 65,239,183, 91, 56, 95, +152, 24, 72,162,159, 41,147, 71,122,158, 8, 33,220, 5,178, 39,194, 88, 13,125, 66, 51, 40,168,100,245,225,189,121,171, 36, 96, + 77,243,164, 99, 78, 33, 84, 86,186, 65,136, 84,199, 7, 92,100, 36, 44,101, 92,119,250,172, 59,103, 81,138,161,243, 75,216,236, +252, 79, 24, 33, 4,210,154, 49,198,200, 44,131, 5, 20, 51, 79, 51,143, 69,229,103,231,131,140,243,133, 68,215, 26, 93, 72,178, +206, 84,129, 21,175, 12,197,177,162, 57,243, 18,138, 84,155, 42,223, 75,149,105, 20, 77, 63, 66,232,120,138, 70, 1, 81, 41, 21, + 78, 73,244,175,121,157,141, 53,152,246, 51,246,251, 61, 10, 51,215,187,126, 68,215, 13,128, 37,187,175,156, 49, 64, 69, 99,206, + 6,157,155, 89, 45,206, 41, 37,238,200, 3, 53, 67,124,193,122, 7,148,108,212, 22,137,131,221,191,115,116,161,139,206,170, 72, +144,151, 33,205,132,243, 22, 37, 25, 85,216,151,106, 52,208,164, 29, 96, 85, 41,249, 50,240,234, 53, 48,170, 57, 44, 52, 78,118, +140, 80, 44,117, 83,127, 55,167,147,234,234,164,112, 52,170,192,173,218,193,196,128,138,200,164,133, 34,216, 97, 81, 75, 66,107, +137,118,232,198,104, 99,104,140, 91, 10,143,118,216,237, 47,246, 56, 97,187,148,131, 41,114,227,132, 77,253,115, 41,131,195,106, +227, 7, 84,205,187, 47,124,199, 8, 62,150, 16,176,141, 3,179, 2, 26, 68, 43,197, 19, 17, 44,214, 58,223, 24,154, 47, 92,224, + 86, 27,114,205, 74,211, 98,151, 20, 10,163, 83, 67, 71,201, 49,171,205,138,118,218, 0, 6,195, 15, 2,147,206,114, 38, 1, 86, +225, 93, 76, 63,244,220, 93, 2,153, 33, 32,206, 82, 39, 75,222,105,167,151, 78, 2,117,137, 18,119,153, 83, 65, 48,158,199,254, + 6,187,221,132,110,232, 89, 82, 73, 23,175,196,216,117,189,231, 10,220,115,124,104, 96,127,109, 81, 80, 73, 63, 16,144, 97,181, + 25,144, 34, 85, 63,158, 5, 96,251,219, 25,251,221, 12,112,136, 76,215, 17,240, 38,165,204, 59, 72, 2, 98, 84, 30,169, 27,235, + 48,172, 2, 87,139, 69, 81,173,149,217,192,181, 36, 88, 67,251, 72, 18,155, 84,142,104,156, 17,131, 99, 99, 6,141,124,186, 62, +144,240,134,211,170,100,124, 69,147, 14,131,220,170,170,224, 15, 71,156, 52,102,166,131,182,164,132, 61, 31,214, 66,154, 51, 10, +152,161,181,130, 97, 42,151, 60, 48,181, 53, 85,201,122,239,208, 13,129,215, 16,150,193, 46,150, 69,131, 12,190,168,146, 80, 21, +153, 65, 79,194,176, 16, 28, 82, 42,188, 19, 2,198,147, 55, 16,231,130,190,119, 24,199, 30, 71,199, 3,126,255,127,253, 19, 46, + 10,140,170, 78,155,238, 21, 13, 91, 72,172,238, 96,101,146, 32,202, 80, 17, 39,214,214, 16, 83, 84,123,209,225,216,191,177,248, + 72,160, 56, 20, 7, 27,144, 83, 70, 46, 21, 93, 32, 98, 94, 43,139,208, 45,198, 9, 79, 62,255, 12,195,106,141,211,243,115,108, +142,142, 48,142, 61,198,177, 71, 46, 29,214,235, 53,182,219, 45,166,253,132,171,171, 43,134, 61, 52, 74, 6, 3, 80, 27,193, 50, +196,167,236,157, 67, 78, 77,119,244,155, 85, 64,105, 22, 22, 1,166,208,243,220,121, 96,191, 79,136, 49,227,171,207,159,163, 6, +131,227,179, 13,126,243, 55,126, 14,253,203, 23, 24,142, 54, 8, 93,192, 71, 31, 63,195,123,239,222, 87,215, 7, 96,121,122,230, +113,116,214,225,219,119,142,121, 92, 76,221,112, 76,172,242,237, 60, 12, 35,151,135,177,199,229,203, 43,221,167,230,220,128,204, + 76, 6, 11, 76,211,164, 85,255,246, 54,234,225, 40, 64, 26,217, 69, 90,179, 64, 58,100,183,158, 98, 70,198, 18, 92, 33, 46, 4, +242,222, 71,178,160,165, 9, 37,206,216,207, 9, 41,205,244, 57, 29,112, 18,138,237,233,185,170,228,177,110,133,118,152,133,115, +216,169, 88,100, 21,127,206, 58,174, 46,220, 1,101,254,107,149,133,121, 48, 4,167, 18, 33,146,243,134,252,255, 28,167,107,148, +208, 85,153, 41, 17,225, 59,122,126,134,161,215,194, 55,206, 51, 74, 41, 24, 87, 43, 37,210,149,156, 89, 91, 81,249, 32, 93,104, +113,210,157,233,174,220, 28, 90, 7,249,103,131,254,250, 50,104, 90,252,208,222,119,232,250, 14,195, 56,240,138, 9,220,229, 50, + 3, 60,206, 58, 57, 20,189,136,236,152, 43,175, 67,100,194, 82,107,198,180,219,233,216,125,181, 62, 98,133,187,211,206, 88,126, + 87,131, 5, 21,157, 18,117,212,211, 52, 35,166,124,144,255,190,100,214, 55, 78,181, 36,192,139, 81,251, 42,125, 6, 21, 45, 91, +142,182,109, 48,108,197,106,181,162,114,115,151, 82, 82,129,115, 41,245,181,116, 58, 73, 42,115,222, 48,222,217,176,181,153,132, +220, 10, 69, 99,126, 59, 97,195,249,115,109,224, 11,154,188,241,165,144,160,173,182,165,171, 21, 93, 67,173, 52,157, 33, 91, 96, +211, 85, 47, 90, 65, 46,145,168,123, 45,235, 56,157, 0, 87,140,119,174,162, 54, 23, 32,204, 18,162, 35,160, 46,153,170, 80,191, +123, 96,231,145,221, 58,135,181,228,146, 89, 24,206,133,177,236,247,213,209, 99, 22,225,175,177,104, 16, 71,133,167,112, 27,235, +233, 12,183, 30, 96,104,151,151, 12,227,156,146,230,132, 75, 5, 66, 95, 80, 67,232,130,114,120, 69, 37, 15, 24,184,218, 48, 12, + 84,237,245, 67,143,105,154, 69,174,204,187,205,131, 10, 85,105,104, 69, 69, 34, 82,117, 81,210,147, 71,201,212, 61,207, 19,229, + 32,239,110, 19,123,199,151,184, 61,199,214, 27,107,161,214, 41,192,240,161, 71, 15,143,216,112,230, 57, 97, 92,217, 37,134, 84, +198,185,206,177,216, 46,163,235,185,227,205, 36,188, 51,173, 18,105,140,121,236,187, 29, 1, 38,154,166, 34,209, 3,213,117, 65, +173, 53,173,150, 3,204, 35,237, 88,231, 24,209,245, 30,113,154,209, 0,220, 92,239, 40, 4,193,130,171, 75,218,145,116, 67, 64, + 73, 21,183,215,123,108,111,182,204, 3, 96,203, 73,173,168,150, 10,169, 90,133,116, 69, 68, 46, 26, 95, 47,137, 66, 70,220, 10, + 33,200,146,104, 33, 65,121,167,224, 16, 17,123, 89,231,152,119, 79,145,174,206,123,140,171, 1,150, 99,114,199,177,199, 60,179, +165,133, 93, 0, 37, 37,222, 39,207,152,118, 91, 93, 55, 8,152,193, 58,226, 35, 31,157, 60, 68,107, 30,222, 23,172, 86, 61,238, +191,121,142, 47, 62,254, 16, 47,158, 63, 85,133,125, 41,204,197,103, 7,132,192, 45,212,101, 33,137, 73, 62,104,208,144, 40, 63, +209, 10,107, 60,232,165, 58,220, 45, 30,138, 61, 11, 91,152,196, 10,130,102, 16, 83, 84, 13,129,140,230,193,118,204,156, 34, 94, + 62,123,134,171,203, 43, 28,159, 28,227,248,228,152,129, 59,132,138, 29,198, 1,195,216,227,229,243,151,184,189,189, 85, 60,178, +101,154, 94, 49, 84, 61,207,211, 4, 31,122, 88, 75, 23,127, 8,148, 1,238,157,129, 67,143, 91,103,225,124, 70,231, 44,182, 59, +131, 23, 47,111,240,215,127,253, 24,255,224,223,254, 53,188,247,115, 15, 97,118,247,112,251,242, 26,190,101,204, 49,225,235,223, +122,132,113,189, 86, 60,229,162,123,177,186,167, 35, 91, 78, 83,183,135, 76, 64, 66,176,216,109,103,205, 52, 72,145,166, 95, 52, + 38,231,157, 94, 51,106, 63, 77, 57,241, 33, 3, 88,215, 48, 79, 84,172, 80,122, 27, 37, 12,130, 89,216, 98,131,115,206, 18, 45, + 47, 39, 37, 82,166, 24, 17,167, 25, 37, 71,236,111,175,177,223,222,178,203,128,154, 58,129,175,192, 52,228,152,209,117, 61,199, + 39, 47, 65, 72,180,183, 4,106, 53, 42,222,146,206,170,112,241, 74, 99, 93, 90, 13,202,179, 43, 41, 95,234,235,206,145,221, 32, +158,185,226, 76,211, 43, 92, 8,177, 94, 66, 46, 11,153,178,136, 32,201,168,152,173,169, 64,147,196,104, 89,133,106,114, 57,182, +195,247,129, 71,234, 42, 58, 46,133, 17,165,130, 31,231,194,150,236, 38,220,113,203,116,137, 59, 58, 99,145, 27,157,131, 11,207, +130,172,180,127,107,251,164,145,211,198, 16, 12,137, 86,169, 29,250, 97,133,110, 24, 17, 66, 98,208,139,186, 0, 0, 32, 0, 73, + 68, 65, 84, 71,248, 86,222,143, 27, 80,232,147,243, 66,166, 36,205,200, 60, 77,136,137,214, 17,198,122,242,132, 91,167,221,160, + 20,227, 48,162,143, 55, 7,205,133,227, 11, 19,250, 59,138,224,203, 52,114, 29,148, 34,141, 14, 3,121, 14, 11,124, 71,241,208, +142,129, 82, 93,215,233, 4, 74, 66, 83, 12, 91,183, 66, 23, 84,105,174,187,121,254,124,114, 74, 74,219,164,160, 54, 17, 83,114, +119, 93,203, 1,188,168,234,133, 78, 23,253, 2, 26,147,223,191, 45,189, 58,175, 86, 57, 9,131, 9,164, 70, 10,154, 3,198,125, +213,152,107,163, 83, 37,117,210, 72,240,140,177,186,102, 38,221, 19, 33,196,233,146,239, 8, 78,195, 56, 93,210,128,121, 56, 71, + 69,156, 21,126, 11, 23,200,162, 43,240, 56, 80, 27, 10,238,114,217,111, 26,246,120, 71,202, 17,231,253,180,115,244,176,133, 16, + 16,231, 9,181,145,117, 75,200, 65,230, 32, 58,144, 16,138, 22,182,167, 11,222, 51,209,172,201, 14,194, 18,119, 60, 39, 34, 63, +237,110, 8,198,146,230,153,132, 95,181,113,168, 7,141,247,123,235, 15,144,139,226, 81,244,154,139, 59,174, 7, 85,112, 90, 75, +233, 80, 50,106, 25,198, 94,127, 71,241,227,203, 30,132,146,214, 18,156,165, 29,126,138, 5,211,180, 96,252, 28,171, 95, 69,184, + 35,149,123,102,239,118, 41,149, 89,202,149, 31, 56,194,115, 78, 83,194,126, 59, 41, 99, 60, 39, 26,247,199,121,134,119,134,168, + 96,153, 18,174,210, 28, 53,102, 80,186,101,240,165,231, 44,165,226,201, 24,178,164, 68,214, 65,138,237,209, 34, 67,106, 11,103, +249,129, 70, 83, 27, 71,170,196, 67,111, 76,100,163,189, 89, 65,232,123,244, 67,135, 6,139,214,232,176,166,174,187,234,158, 80, +153,214,204,161, 55, 92,208,104,120,134, 28, 43,198, 99, 60,125,139,132,123,157,195,217,157, 13, 86,107,143, 63,251,254,191,128, +115, 65, 97, 19, 20, 93,104,151,195,212,242,190,219, 7,245,219, 23,126,200, 13,231, 13,163, 45,214,142, 82,234, 50, 78,231,221, +149, 30,182, 60,186, 82,177, 9, 11,232,100,135,159,213,206, 66, 34, 59,195,138, 93,233,250,115,154,241,226,217, 51,196,105,198, +230,248, 24,235,205, 74,173,148,227,106,196,233,217, 25,142, 78,142,145, 83,194,237,205,237, 1,234, 17, 26, 53, 26, 99, 68,223, + 19, 52,199,123,246,237, 50,230,113,227,248,251,247, 22, 22, 13, 47, 95, 84,252,228,229,103,248,229,167,239,225,237, 71,247, 48, +220,177,200, 51,117, 28,183,219, 9,103,247, 78, 49,172, 70,252,233, 63,249, 23, 48, 63,123,138,119,190,126, 15, 71,111,222,197, +120,247, 20,126, 51, 0, 33, 80,138, 32,139, 48,173,115,228,185, 14, 36, 82,157,247, 19,198,177,199,246,118, 15,120,199,136,212, +202,191,103,134, 99,171,167, 76,129,114, 46,232, 6,143,221,237,130, 38,110,181,146,237,136,139, 74,235, 0,239, 60,117,194, 60, + 25,234,123, 71,187,110,249,249, 14,136, 51, 17,201, 66, 8,164,136,231,201, 14, 44,144, 11, 37,247,148, 68,121,222,171,245,138, +124,234,170, 34, 94, 64, 46,206, 59,148, 20, 25, 44, 5, 30, 61, 38, 62, 28,249, 66, 41,158,138, 30, 35,133,206,146,174, 70,162, + 87,198,150, 56,154, 90,201, 52,202, 40,251,219,107,134,186,176,224, 9,229,188,184, 13, 8, 65, 75, 83,191,172,150,165,165, 67, +167,180,182,178,164,178, 29,220,186,238,240, 57, 99,241, 87, 99, 30,193, 48,140,140,220,118,138,133,165,255,109,211, 34, 52, 69, +217, 29, 91, 29, 87, 59, 62,119,157, 35,140,107, 44,153, 4,183, 51,209,215,134,113,141,113,181,194,176, 26,120, 10,118,192,231, +224,203, 19, 7,153,224,251,237,142, 92, 62,112, 8,125, 79, 36, 54, 21, 80,179,163,128,173,105,198, 58, 56, 35,170,113,190, 60, +217,170, 37,150, 65, 42,106,150,105, 47,185,165,100,170,193, 22, 53, 39, 1, 61, 94, 47, 54, 73,129,148,117, 67, 43,153, 11, 62, +175, 86, 63,195,192, 36,113,190,136,141, 88,178, 13, 12, 42,129,135, 88, 3, 65,228,186,133,181,178, 64, 50, 50, 26, 50, 12, 95, +236,149,139,205, 70, 65,109, 26,134,180, 56, 4,202, 18, 5, 92, 69,187,145,121, 74, 41,164, 69,191,228,125,212,194,231,144,123, + 77,123,165,201,141,218,157,147,187,197,113, 60, 45, 36,248, 72,154, 25, 13, 26, 90,224, 69,181, 37,214,183, 72, 97, 95,224,101, + 39, 44, 57,183, 6, 36, 8,146, 49, 71,142,153,147,102, 22,177,145, 0, 78,156,183,104,173,215, 23, 43,116,244, 35, 19,143,187, +201, 91,108,225, 44,239,218,152,217, 76,149, 71,129,109, 88, 24,241,173,161,166,134,213,102,196,246,182, 96, 92,175, 56,145, 43, +107, 55, 6, 35,252,227, 66, 62, 71, 22, 84,128, 21,239,210,181,144, 88, 76,108, 45, 85, 47, 88,234,248,104,100,100,249,239,215, +210, 18, 95, 40,234,200, 82,232, 16, 33,203, 74,197,176, 26,232,207, 90, 42, 13, 96, 88, 1, 63,101,138,167,156,118, 19,192,100, + 50, 81,110,199,153,246,237,183, 55,123, 90, 55,152,197,251, 89, 56, 99,189, 11, 22,105, 38, 43,208, 60, 77,186, 58,176,156,150, + 69, 48,152,140, 86, 50, 98, 93,114,211,157, 51, 60,134,131, 6, 17,128, 41, 76,224,239,110,218,239, 9, 74, 19, 60, 43, 47, 29, + 17,152, 64,105, 81,210,189,134,142, 70,126,150,157, 9, 34, 32, 4, 91, 63, 50, 79, 48, 26,135,125,148, 28,213,167,175, 44,246, +131,110,101, 60,190,143,218, 2, 12, 10,198, 85,143,139,123,167,248,217, 71,239, 99,123,115,163,201, 67,150, 71,115,130,199,116, +222,195,155, 37, 33,206,123,170,192, 67,224,234,221, 26,120,222,147,203,238, 93,248,211,203,104,211, 45, 74, 86, 44,246, 54,233, +198, 29,143, 29,193,132, 40,195,130, 23,210,147, 44,162, 20,185, 68,188,119,152,227,140,114,121,137,105, 63,161,235, 3,214, 71, +107,210,148,132,128,222, 15, 40, 57, 99,189,217, 32,167,132,221,118, 71,180, 69,126,135, 52,192,161, 86, 14, 5,241,152,166, 8, + 99, 51,106, 75,112,166,163,136,207,163, 53, 74,254, 18, 91,204,248,252,211,175,240, 15,254,209,175,162,243, 1,253,106, 64,203, + 5,115, 42,232,122,135, 63,253,189, 31,224,127,255, 63,254, 8,111,218, 30,127,242,253,199, 8,206, 97,240, 30,111,223, 59,194, +253,135,231,248,198,111,124, 19,221,209, 26,231,111,158, 99,191,155, 16,198,158,121,253, 30, 41, 77, 88,221, 57,193,213,171,235, + 37, 34, 82, 80,159,115, 70,228,105,147, 10,195,114,197,180, 37,164,176, 50,218,115,102, 65, 17,123,247,155,225, 44,233,134,102, + 42, 90, 49, 72,145,113,198,243, 12,231, 12, 82,161, 68,186, 92, 61,172,235, 48,142, 9,187,219, 43, 42,128, 44, 21,175, 52, 92, +172,240,118, 68,138,179,242, 43, 40, 49,174, 49,221,143,223,231, 16, 88,132,229, 81, 76, 86, 65,169, 0, 94,106,171,176,144,206, +152,213,197,220,217,165, 24,153,155,225, 20, 18,227,188,131,243, 1, 93,223,243,153, 66,157,190,144,241, 90,147, 70,128,227,150, + 69,225,175,214, 92, 18, 25, 31,218,193,156, 88,148,170,104, 95,172, 94,238,106,167,107,102,233, 26, 5,199,204, 60, 8,117,118, +112,186,164, 49,116, 54, 83, 56,146,101, 49,239, 50, 17,209,247, 21,148,246, 87, 57, 14, 54,116, 20,123,221, 15, 35,134,213,112, + 0, 23, 98,165, 54,175, 11,149, 78,214, 42,230, 24,169, 67,103,174, 70,109,150, 11, 15,163,107, 49, 58, 71, 44,224, 15, 0, 58, +173,176, 72,205,145, 42, 94,227,166,221,146, 97, 46,152,108,102, 3, 24,136, 7,221,243, 37, 70,205,155, 15, 29,163,183, 89, 55, +128,134, 28, 39,110,170,122, 77, 87,132, 88,202, 56,147,221, 88,182,204,113,224, 80,171,153,193, 48,212,144,160,113,103,126,144, +105, 78,236,131,130, 6, 38, 14, 34, 43,159, 69, 83,250,200, 98,195, 5,187, 83, 34,160, 78, 87,172, 65,213, 5, 38,251, 35,121, +165,106,216, 23, 47,171, 79,152,170,103, 83,171, 50,237, 1, 63,147,180, 15, 7,251,212, 1, 3,203, 5, 66, 43,149, 39,103,225, +181, 38,147,160, 97, 5,125,223,209, 89, 37,212, 71,122,128, 43,103, 21, 59,148, 42,145,114,188, 47,228, 67,187,106,186, 80, 91, +104, 82,220, 33, 78,181,193,115, 40, 72,138, 9,158, 95, 12, 17, 54, 85,246, 58,122, 99, 48, 12, 29, 99, 98, 61,106,129,130, 43, +100, 95,108,140,199,106,189,194,174, 85,244, 35,101, 86,199, 57, 34, 37,234, 36, 2, 3,109,148, 61, 45,233,105,153, 46,101,202, +248,181, 76,100,106, 60, 82,178,232,122,186,240, 99,204, 8, 93,207, 15, 52, 80,139,197,180,159,121,244,199, 40,193, 84,144,102, + 18,116, 12,227,138, 70, 31, 0, 92, 16,187, 7,217,211,124,240,152,247, 51, 92,112,136,172, 65,200,153,200, 87, 57, 87,236,119, + 51,249, 64,209,244,192,175, 37,241,248,216,161, 36, 71,153,238, 7,149,181, 86,228,104,168, 37,242,136,122, 65,162,138,240,205, + 90,207,201, 74, 5, 40, 13,134,125,241, 21,192,180, 79,116, 16, 86,242, 76,135,174,227,221, 53,184,155,183,170,146, 30, 86, 3, + 77, 84,120,207,104,217, 90, 71,123,159, 37,109, 40,231, 72,204,104,246, 0,103,158,234, 72, 72, 65,163, 91, 17,195,209, 91,168, +141,132,129, 39,167,107,120, 95,241,255,125,255, 47,137, 50, 40, 94,116, 20,182,232, 45, 17,135,130, 20,110, 92,185, 54, 52,160, +178,162,185, 84,152, 66, 10,127, 1,121,148,156, 97,189,231, 32,160,101,252, 14, 86,104, 87,214, 25, 80, 83,104, 52, 10,178,177, +127,183, 52, 40, 56,201, 57,191, 88,103,236, 34,254, 49,134, 62,211,253,126,143, 57,206,184,188,188, 66, 8, 30,125,223, 51,176, +200,163, 99,239,242,230,232,136,137,102, 17, 41, 70, 76,251, 61,166,253, 76, 8,228, 74, 36,183,126,232, 80, 42, 16, 92, 70,174, + 13,190,101,160, 38,220,220,236,224, 65,135,210,217,201, 6, 46,120,172,143, 70,188,124,242, 12,187, 52,227, 79,127,255, 7,120, +245,215,239,227, 63,251,198, 27, 56, 94, 15,136,197,226,102,151,241, 98,159,177,223,205,120,252,201, 83,252,248,243, 43, 92, 94, +239,208,245, 30,103,235, 30,119,239,110,240,224,141, 51,188,241,238, 27, 56,126,112, 7, 39, 39, 27, 78, 19, 52,186, 78, 73,145, + 21,219,124,129, 89,222, 75,211,187,208, 80, 38, 16, 31,220,112, 14,122, 35, 42,153,247, 6, 69,173, 68,102, 1, 35,149,202,218, + 15,154,144, 25,182,136, 85,134, 3, 81, 26,158, 71, 73,123, 13,150,129,201,168, 5,200,206,193, 22,143,156,136, 33,208,228, 2, +169,196,116,144,238, 86, 4,183, 18,231, 41, 44,123,101,112,163,194, 48,217, 76,162, 55,179,114,215,205, 65,182,185,165,174,136, + 47,139,218, 34,156, 11, 28,223, 90, 37,239,138, 4,195,188, 74,148, 60,117, 24,198,246,178, 7,154, 46,122,222,151,114,129, 97, + 96, 84, 64, 74,159,173, 93,194, 91, 44, 96,141,103,219,147,161,132, 76, 22,129,117,221,194,108, 87,103,143,149,162,115, 73,209, +172,173,194, 91, 33,192, 73,150, 65,213,245,146,115,196, 97,160, 41,145,227,142, 49, 47,152, 90,158,182, 22,246, 89,167,148, 40, +178,216, 8,205,206,113,212, 41,189, 11,173, 80,158,187,151, 11,175,113,164,115,161,253,117, 51, 11, 55, 95,248, 24, 20,170, 35, + 94,245,202, 96,177,162, 98, 50,195,231, 52,217,101,185,184,247,142,253,229,212,192,129, 85,227,161, 31,121,237,203,221,109,171, +176, 77,152,255, 84,116,150, 82, 80, 82,228, 51, 32,171, 37,205,170, 69, 80, 82,254, 72,125, 79, 79, 49, 61,215,214,100,237,166, + 15,195,118, 68,117,224, 37, 88, 5,109,233,170,205, 18,242, 98,248, 66, 23, 10, 99,213,188,116, 0,112, 48,246,245, 64, 24,109, + 58,184,147, 23,152, 78, 45, 77,195,167,234,193,250,103,113, 43, 56,117,113,145,238,165, 59,136, 59,110,204,138,233,130,138, 49, + 14,149,135,242, 27,121,238,218,104, 39,235, 20,120, 34,226, 54,107,128,213,122,228,189,138,193,236,102, 37,227,180, 70, 23,136, + 96, 59, 91,173,116,169,134,192, 66, 38,161, 62,209,216,210,245,129,199,229,164,118,164,241, 54, 85,231,193,152,215, 32, 22,212, +169, 46,217,216,186,135,182, 52,218,107,169,192,122, 26,199, 81,194, 82, 83,114,148, 49,175,143,230, 4,150, 67,182,188, 2, 99, +129,113, 61,144,202,181, 53,132,206, 41,200, 33,140,129, 59,225,153, 5,134, 21,145,199,244,180, 87,161, 60,140,121,206, 52, 54, + 67,195,188,219, 19,115,152, 57,213,214, 52,250,162,141,193,126, 63,163,164,196,251, 55,234,218,115,206, 90, 29, 82, 88,137,196, + 30,210, 62,153,210,150,168, 48,244,204,235,174,149,198, 48,206, 56,250,107, 69,114,145,137,238,215,245, 61,143,236, 12,154,161, +196,177, 48,244, 74,187,115, 7,233, 89,206,187,229, 37,225,234, 55,206, 51,143,103, 73, 23,145,152,189, 79,241,128, 52, 94,234, +143,238,192,117, 35,218,156,176, 90, 15,184,184,127,130,143,127,252, 67,164, 24, 89, 4,211, 20,226, 99, 61, 85,252,198, 46, 94, + 81,203, 40, 86, 47,160, 27,177,253, 85,201, 31, 22,210, 92,227,188,249, 3,117,169,142, 66, 25,240, 97,205,235, 73, 86,178,253, + 51, 75,184, 68,101,145,168, 83,222,124, 59,216,131, 58, 86, 73, 83,183,148,226,140, 24, 35,110,174, 34,199, 98,174, 48,174, 86, + 56, 62,222,192,121, 79,154,144, 82, 49,140, 3,188,163,148, 64, 52,224,249,231,215,132, 65, 30,137,157,111,205, 76, 89, 0,219, + 27,248,235,151,200,187, 9,215, 79,159,193,195, 98, 61,116, 88,141, 1,206, 26,244,101,194,116,121,137,109,189, 65,253,232, 51, +252,155,223,190, 7,164,130,218, 44,186,206,225, 4, 6, 71,235, 30,253,216,225,238,183, 30, 0, 71, 71, 84,132,111,111,113,245, +242, 10,207, 31, 63,195,143,254,240, 99,252,193, 63,158,208, 13, 3,126,231, 63,255,143,240,253, 63,253, 1,198,163, 17,119,206, + 86, 56, 61, 93,209,244,107, 28, 88,108, 4, 52,107,224,123, 18,222,208, 58,169, 96,189,233,145, 82, 68, 41, 36,122,116,182, 98, +222, 39, 56,103, 16,186,158, 53, 36,149,247,145,148, 87, 95, 12,185,105, 10,219,176, 80, 43,121,210,179, 69,215,143,136,141,148, +197,173, 70, 77,228, 43,217, 34,115,215, 38,221,172, 53, 80,193, 35,137,194, 28, 39,178, 81,250, 86, 65, 62, 8, 18,225,131, 22, + 70,159,167,146, 11,235, 88, 44, 83,208, 50,208, 14,162,138,205, 18, 86, 84, 24, 48, 35,250, 14,192, 34,116, 28,201,220, 56, 39, +130,215, 22, 96, 91,173, 42,239, 43,141,210, 77, 99,240, 82, 17, 70, 43, 53, 28,138,109,199,178,111,111, 7,123,248, 16,122, 30, + 53,251, 69,245,222,170, 78, 44, 32,221, 35,133,250, 81,209, 41,180,180,214,144,203, 82, 60,132,208,193,187,128, 97, 53,178, 37, +213,235,115, 44, 68, 76,178, 15, 6, 78,127, 44,152,166,137,156, 56,205,162,227, 48, 23,233,226, 1,238,240,173, 67,207,147, 12, + 41, 52,104,242,102, 25,175, 76, 29,101,102,177,162, 82, 3,185,160,170, 2, 13,170, 50,117, 21, 26,158,209,243,219, 28, 80, 33, +101,205,235,217,155, 46,211, 3,137,207, 22,123,173,166,111, 50,223,159, 4,148, 60, 9,104, 85,215, 33, 36,206, 44,186,190,164, + 66,180,192, 32,243, 56,221,170,207, 93, 46, 71, 57, 15, 32,177,201,198,192, 66,244, 18,208, 21, 2, 12,255,222, 52,118,209, 73, +142,226, 94, 15,114,228,141, 56,101,242,130,195,150,123,181, 48, 73, 85, 68,221,134,155, 26,104,172,106,125, 45, 75, 93, 82, 37, + 91,109, 44, 42,174,156, 13, 33, 81,117, 86,188,232, 36, 60,145,236,234,204,158, 81, 99, 44,230, 73,130, 48, 22,139, 84,109, 64, +224,174, 89, 58,190, 14, 64,140, 81,247, 79,180,195,170,186,207,241, 33, 48,161,138, 20,211, 49,102,172, 55,180,252, 87,111,187, +163, 7,136,130, 95,232,195,219,239, 19, 54, 71,158, 71,110,128,243, 84,173,251,209,235,101,100,141,133,119, 22,177, 85, 98,106, + 51, 15,222,121,171,227,226,126,236,245, 18, 72,169,106, 21,220, 98,211, 23,139, 46, 32,160,168, 56,176,113,117, 13,182, 51, 65, +131, 32,172, 53,244,251,194,160,236,103,250,157,120,242, 48,239,118,140,127, 12,132, 26,172, 65, 47, 17, 1,218, 84, 78, 93,170, +149,180, 8,158, 63,123, 99,172, 62,136,206,129,187,124, 46,188,184,155,202,205,168,103,155,124,180,203, 14,210,121, 18,121,133, + 16,144, 75, 37,132, 98, 63,114, 53, 23, 84,176, 38, 23,183,236, 98,105,116,196, 15,174,105,216,239,118, 92,113, 39,221, 3, 74, + 23, 44, 7,183,177, 14,171,211, 71, 72,115,198, 48, 4,156, 95, 28,195,180,136, 15,126,244, 55,250,146, 84, 14,110,232,254,127, +170,222,236,215,182,244,186,238, 27, 95,183,214,218,251,116,247,214,189,117,171, 35, 89, 36,139,173, 68,145,161, 8, 65,162, 77, + 88,138, 19, 3, 70, 2,219, 65,222,242,144, 39,191,230, 15,202, 91, 16,228,193, 48, 2, 4,137, 19, 36,113, 12,199,129,109, 82, +164, 40, 82,148, 68, 81,165,106,216, 85,145,172, 42,214,109,207, 57,123,175,181,190, 46, 15,115,204,185,246, 37, 4,148, 88,188, +205, 57,251,172,245,125,179, 25,227, 55,134,225, 36, 91, 32,145, 51, 16, 78,108, 34,206,128, 51,237,228, 5, 83,166,182,228,110, +111, 59,169,156,139,133, 45,216,115, 73, 92,108, 37,126,216,112,159, 28,117,234,203,100,214, 18,142,170,229,165, 75,246,125,233, +222,189,181,130,227,225,200, 29,121,194,179,167, 79,112, 60,220, 98, 62, 28,112,117,231, 18,206, 7,140,227,128,148, 18,246,231, +137,122,142, 21,251,115,217, 43,230,181, 97,154, 34,246, 83, 68,184,126,132,240,236, 35, 20,231,145,107,199,135, 79,111,112,134, + 9, 95,248,220, 43,184, 28, 58, 14,143,175, 17,158, 62,193, 3, 20,252,243,255,228,203,120, 97, 2, 18, 26,234, 42, 25,213, 46, + 4,248, 36,251,222,118,117,142,178, 59,195, 68, 94,248,112,247, 10,211,157, 43,220, 45, 43, 94,191, 72,168, 93, 46,200, 79,156, + 71,220,121, 48,224,241,111, 31,226,248,236, 17,214,245, 37, 60,185,158,241,240,233, 1,183,115,193,179,195,130, 37, 55,124,235, + 31,127, 5,247, 94,186,162, 88,172, 97, 62, 10, 45, 45,175,114, 80,122, 22,103, 10, 82,146,110, 86,242,208,203,186,162,100,160, +228,133,221, 17,187,120, 47,233,102,243,220,208, 91, 68,136, 35, 90,157, 81,248,185, 58, 4,148, 60,195,187, 32, 29,187, 3, 66, + 26, 76, 15, 1,120,194, 55, 4, 73,171,185,217,112,129, 7,185,236, 64, 53,143, 29,102, 61,234,166, 8,246, 74,244, 51,245, 52, + 3, 98,104,199, 27,152,165,158,168, 67,152,231,138, 52,130,225, 71,163,156,103,107,222,112,196, 69,114, 49,100, 37,185,121,151, +213,153,233,221,134, 4, 53,108, 52,247,224,186,218,210,169,155, 66, 97,198,105, 34,219,160,219, 37, 47,227,100,125,190, 29,221, + 32, 50, 29,136, 20,225,229, 82,237, 29, 75,113, 32, 98, 54,218,138, 78,215,116,240,114, 37,117,159,144, 25, 98,116,156,103,220, + 92, 95, 11, 6,119,220,163,148, 46,202,115,120,187,128, 84, 95, 37,255,155,138,222,200,224,144, 17,221, 22,163,205, 9,138, 88, + 82,201, 60, 47,133, 68,182, 78,196, 43,211, 52,169,240,215,253,190,140,237, 69, 15,148,134,209, 38, 21,165,138,104, 83, 34,167, +157,164,187,145, 36,216, 72,116, 68,111,210,165, 67,224, 73,218,173,251,176,173,104,132,117, 80, 24, 12,212,108, 76,174, 46, 33, +237,202,213, 97, 35,103, 67, 39,107,110,203,104, 7, 39, 19,142, 77, 85, 33, 81, 78, 73,171,202, 96,151, 12,130,141, 19,111, 14, + 9, 77, 45,212,136,159,222, 4,208,227, 28,130,231, 61,210,100, 53, 45,137,120, 91, 67,173,233,163,186, 62,150,130, 86, 44,191, +154,135, 18, 3,247,208,141, 42, 72,223,165,106, 90,230,213, 0,247,178, 71,151, 31,158,118, 46,138, 47, 84,251,148, 74,252,163, + 38,179, 13, 3,128,204,203, 59,158,116, 66,222, 84,160, 82,149,110,234,234,105, 26, 49, 47,153,157, 79,130,191, 56, 67, 45, 18, + 56,115,115,125,139,148,228,162,222,157,193, 46,189, 52, 4,203, 43, 78,220, 45,109, 35,106, 29,227, 52,219, 59, 13,100,112,203, +191,215, 15, 76,132, 97,146,204, 36,221,226, 74,209, 90,136,204, 22, 55,102,122,227,136, 94, 58, 87, 21, 65, 29, 15, 43, 74,109, +146, 83,204, 17,113,171, 5,105, 24,248,123, 58,234, 10, 75, 13, 66,127, 62,121, 78, 65, 10,133, 15,149,140,241, 58,177, 14,253, +196, 3, 92, 44, 23, 88,109, 45,122,128,218, 75, 18,156,253,220, 92,237,200, 14,162, 58,143,194, 30, 72,156,178,232,101,238, 52, + 80,226, 36,144, 66, 29, 7,243,241, 40, 94,123,194,136, 42, 95, 62,245,245,251, 32, 5,222,238,234, 1, 66, 58,131,111, 13,231, +231, 19,238, 63,184,196, 91,127,249, 61,162, 31, 55,181, 54,156, 90, 85, 0, 16, 48,162, 99,204,222, 29,170,211,253,183,135,103, +188,108,173,133, 40, 70,230,212,115, 82,209, 56, 33,144, 28,251,186,101, 87, 83,125, 45,133, 82, 49,165, 41,156,131,111, 64,247, +157,106,240,108, 59, 79,157,248,168, 48,197,242,213,169,129, 88,150,249,196, 10, 84,137,208,236, 56, 28,110, 80,139,172, 56,174, +238,220,193, 56, 70,198,195, 54, 12,211, 0,239, 14,124, 73, 43,230,235, 25, 83,185,198,148,111, 17,119, 59,172,213,225,186,207, +120,218, 10, 62,247,210, 43,248,202,151, 94, 3,142, 43,250,188, 96,125,122, 0,114,193,189,203, 17, 67,116,136, 45,227,208,129, +247, 63, 62,224,221,135,207,240,184, 0,135,210,113,219, 62,194,189, 31,188,135,207,191,126, 31,127,240,181,215,241,234, 43,119, + 48,238,119,168,209,131, 10, 10,132, 49, 33,185,134, 59, 23, 59,236,242,130, 97, 63,226,226, 43,159, 64,129,199,237,188,162, 49, +175,250,209,227, 27,124, 60,120,180,188, 10, 56,137,211, 46,143,138, 24,153, 76, 24, 4, 4,211,106, 70, 41,142,209,154, 44,254, + 25, 30,226,156, 94, 48, 34,226,170,101,229, 51, 41,154,150,188,122,164, 97, 66,171, 51,208, 35, 85,219, 13,165,102, 68,229,234, +183,134, 52,142,114,128,114,108,190, 46,194,223, 87, 60,166,247, 17,185, 22, 30,199,116, 95,148, 45, 21,204,241,210,219,248,243, + 5,128, 96, 81, 69,239, 36, 93,127, 36, 13,173,119,113, 5,228, 53, 75,114, 89, 74, 2, 22, 98,110,124, 71, 55,212,234, 41, 44, +201, 25,155, 91, 58,118,239,229, 34, 82,129,149, 83,119, 7, 69,156,234,167, 7,164,179, 78,195,184,133, 51,113,218,151,248,126, +245,147,231, 92,225, 46, 58,106,205,165,108, 99,253,224, 49,142, 19, 82, 74,219,250,194, 68,200,153,130, 49,201,172,207,204,126, +191,189, 57,224,246,112,195,100,190, 17,206,241, 29, 8,138, 1,230, 90,198, 38,179,221, 10,164, 76, 48, 87,101, 46,253,169, 19, + 73, 59,215, 90,132,223,222,154,232, 52, 68,211, 32,120,106,245,124, 55,238,227, 11, 17,220,146,219, 49, 42, 68,119, 59, 99,108, +229, 82,184, 94,203, 39,121, 24,153, 19,159, 42,137,110, 0,245, 3,154,142, 82,196, 58,140, 74, 81, 99, 99,163,218, 54,248, 11, +241,217,202,244,240,110,131, 4,193, 72,128,180,243,241, 66,119,222, 89,134,249,134, 63,151, 19, 45, 70,218,155, 37,234,144, 62, +115,111,171, 31, 75,132,236, 98,137,141,180,166, 53,238,203,213,226, 39,211, 94,152, 6, 73,156, 89,201, 52, 31,170,113, 19, 38, +131,156, 89, 17,206,195, 97, 35,179,233,216, 68,198, 78,253, 57, 85,124,107,221,246,236, 34,173,247, 54,106, 17,220,170, 23,175, + 58,119,112,242, 82,104,226,149,127,110,156,169, 35, 53,181,133,105,231, 54,142,131,141, 49, 23, 39, 29, 91,168, 17,227, 52, 9, + 12,164,169, 15,179,194,119,111,246,167,113, 28, 49, 76,201,162, 52,245, 18,137, 41,201,127,247,158,149,173,136, 19,214,121, 21, +177, 21, 85,212,211,126, 20,237,138, 99,204, 42,154,249,187, 59,243,108,197, 75, 75,155,143,231,216,104, 24,140,243, 61,207,171, +252, 80,104,167,242, 62, 88,222,113, 43, 89,138,130, 78, 32, 66,107, 50, 18,175, 5,205, 9,239,183,183, 77,128, 99, 35, 97, 11, + 50,145,145,188, 39,233,170, 17, 40,161,197, 81, 39,188, 66,237,106,146,202, 37,223,171,239, 25,189,201, 24, 83,243,174, 67,220, +126, 6, 93,160,110,226,131,165,186,184,150, 38, 23, 99,149,213, 64,163,128, 67,172,116, 50,217,170,172, 74,125, 8,216, 93,125, + 2,189, 53, 12, 67,192,229,213, 25,202,114,131,159,190,249,183, 39,160, 28,108,197, 95,107,128,247, 76,119,210,110,187, 90, 71, + 97, 65, 6, 4,138,232,101,176,165, 97,193, 62, 35,121, 22,250, 9,241,169,161, 48,133,111,203,207,110,118,209,200,231,209, 68, +229,111,200, 78,229, 48,104,119, 9,243, 62,231, 44,113,195,157, 97, 50, 96,222,188, 82,203,130,247,104, 77, 14,232,227, 65,248, +253,103,231,103,216,237, 38,164, 52, 96, 72, 17,117, 93,209, 50, 16, 92,195, 24, 39,248,222, 16, 82, 66,244,128, 75, 17,175,222, +127, 9,127,244,247,127, 23, 15,238, 95,160, 30,102,220,126,244, 4, 1,210,221, 58,239, 48, 47, 11,254,244,237, 71,248,139, 15, +158,225, 73, 7,188, 11,136, 20, 48,117, 0, 31, 92, 47,120,239, 47,127,137,239,253,228,215,248,234, 27, 15,240,199, 95,123, 13, + 15, 82, 4,206, 70, 72,171,238, 48,207, 43,194,152,196, 29, 81, 42,234,211,103,240,247,239, 99,168, 13,240, 1,117, 93,241,242, +139, 23,184,153,103,226, 88,133,207, 93,214,140,152, 28,218, 42,124,234,238,153, 26, 5,229,184,203,225, 42,142, 65, 71, 37,182, +144, 17,129,193,200,134,181, 10,247, 97,153,143, 2,216,104, 3,134,233, 2,243,225,153, 89, 66,229,240, 47,168, 33, 34, 36,122, +121,121,209,168, 96, 76, 66, 92,188,117, 42,161, 69,179, 67,170,102,179, 54,136, 46, 72,227,127,187,166,207,245, 77, 23,196, 3, + 53, 13,131,100, 83,248,128,188, 86,219,131,167, 33,145,164, 73, 85,119,109,124, 39,138,233, 46, 60,213,234, 37,175,252, 26,229, +162, 85, 23,132,106, 77,132,105,225, 55, 6, 3,109, 92, 14,154,109, 47,197,254, 56, 77,162,255, 33, 40,199, 57, 65,213,110,150, + 58, 24,107,223,187, 0,120, 78,229,216, 81, 11,251,221,111,133, 47,121,252,242,123,154,129,135, 90,107,184,126,118,141,101, 89, + 4, 99,205, 11, 92,169,140,224,136, 57, 80,185,238,253,166, 48, 87, 27,169, 34,166,205,106,235, 3, 19,252,156, 89,216, 10,173, +135, 82,224, 78, 38,104,221, 0, 54, 30,173, 10,141, 79,168,113,194,116,215,220,120,157,210,169,251, 69,166,136,205,118,244,173, + 84,184, 94,236, 50,215, 56, 90,130, 89,165, 1,170,155,104,205, 59,181, 76, 90,162,203, 70,248,235, 27,129, 83, 39, 61, 26, 38, +165, 22,111, 89,251,184,147,127, 7,134,196,208, 1,208,182, 12, 1, 93, 41,107,175,191,201,119, 59, 11,166,102,169,117,222, 7, +123, 34,244, 12,215,224, 44, 45, 80,172, 96, 34,215, 64,223, 7, 41, 28, 58, 82, 26, 40,180,115,136, 3, 47,239, 82,152, 94,214, + 56, 82,200,197,172, 20, 50, 14,146,145,102, 72, 81, 62, 40, 95, 81,138,183, 3,123, 93, 51,197, 30, 1, 49, 4,212, 32, 59,244, +204, 63, 71, 59, 54,149, 60,231, 92,196,191, 75, 24, 70,171, 21,185, 3,227,228, 25, 9,200,189,106, 41, 8,177, 99,119,230, 76, +113, 93,178,188,196,162, 4,109, 72,105, 27,117,233, 14,125, 24, 5,179,169, 15, 94,226,238,185,123, 81,238,245,214,112,115, 88, +216,237, 15, 54, 38,113, 36,128, 45, 21, 8,154,165,205, 34, 69,210,209,182,136,215,228, 4,195,185,174, 5,199,227,194, 8, 86, + 41, 68, 96, 41,114,226, 59, 31,210, 36,213,104,109,112, 33,160,151,138,218, 36,245, 40, 69,143,222,156,141, 87,106, 41,224, 16, + 71, 46,244, 90,121,240, 9,185,200,161, 19, 58, 17,205, 18,161, 94,118, 40, 28, 2, 13, 30,244,215,247,128,224, 65,139,211,150, +219, 94, 21, 39,203, 60,235,112,178,135,158, 73,162, 50, 21, 60,201,125,157, 1, 3,226,253,103, 97, 51, 93, 34,141,151, 40,185, + 96,191, 31,113,255,165, 43,252,232,219,255,175,237,137, 78,171, 82,112, 42, 17, 25,179,170,187, 38, 45, 38, 10,113,181,157,234, +100, 17, 64, 6,123, 9, 61, 28, 74, 19,241, 75,169,133, 35,175,190, 93,182,232,194,249,167, 99,162,247,102,149,175,122, 76,245, + 50,151, 40,223, 73,246,194,196, 46, 6,231,144, 53, 2, 82, 39, 46,173, 89,170,152, 6,184,196,224, 16,131, 8,155,134,113,224, +216, 86,138,158,154, 87, 60, 91, 22,140,211,132,188, 22, 73,249, 67,199,184,155,176, 60,123, 2,119, 43, 94,240,233,124,196,213, +167, 94,193, 55,250, 25,238,222, 61,199,229,110,192,114,152,113,120,124,141,253,229, 30, 45, 23,188,255,241, 51,252, 31,223,251, + 25,126,177, 8, 86, 55,250,136,192,138,255,156,122,139,133,177,201,107,107,248,206,155,239,227,219,127,251, 11,124,235, 19,119, +240, 39, 95,120, 17,247,239,236,177, 30, 87,140,209,195,223,153,176, 60,140, 40, 77,222,161,154,129,167, 55, 11,230,165, 98, 64, +197,179,210,128,171,196,103,163, 19, 1, 42, 7,122,171, 2, 72, 10, 1,232, 77,190,199,170,185,212, 4,139,196, 20, 49, 76, 35, + 74, 94,140,193,221,155,183, 2,203,117,177, 91,201, 58,206,193,135, 1, 49, 77, 88,151,131, 60, 31, 28,199,171,234, 91, 70,202, +224,142, 49,200,123,131, 83, 30,132,144,227, 74, 89,144,124, 56, 89,191, 48,203,224, 68,136, 38,118,204, 98, 33, 47,222,123, 73, + 71, 20, 0, 5, 73,152,171, 81,218,198, 29, 93, 17, 36,144, 85, 38,246, 9, 16, 43,219, 51,109,137,133,189,217, 58,107,203, 44, +232, 6,168,145, 51, 83, 38,111,206,162, 99, 35,195,137, 58,166,105,226, 58, 40, 96, 24,100, 4,171, 42,119, 45, 92,101, 58, 23, + 72,118,108, 76, 80,148,239,101,226,232, 94,157, 48, 41, 12, 44, 80,212,106, 43,207,247,178,102,204,199, 3,150,117, 21,220, 47, +188,129, 79, 26, 28, 2,223,167,148,252, 9, 41, 31,240, 49, 81, 33,142,231, 46,218, 74, 69,189,166, 24, 10,118,124,181,226,161, +181,142,105,191,231,103, 28, 13,135,234,160, 59,247,237, 2,243,124, 79,185, 90, 70, 36,153, 77,178, 6,164, 17, 66, 35,167,158, +104,225,222,116, 93,216,237,226,244,232,104, 77,226,140, 27,207, 77, 71, 59,155, 92,232, 10, 82,114,219,106, 15, 91,114, 27, 7, +246, 66,253,115,202,206,102,110,123,219, 64, 67, 26, 83, 44,127,182, 51, 75,172,146, 6,205,214,216, 59,106, 19, 17,184,170,232, + 69,148, 46,188,128,224,189,137,221, 84,227,101,207,141, 6,167,245,110,169,148,186,165,108,154,173, 94, 27, 66,116,168, 69,138, +217,168, 21,128,250,141, 67,144,135, 90,213,225, 2,118, 25, 25,222, 81,236, 11, 45,115, 69, 26, 68,200, 37, 23,180,216, 15,214, + 92, 76, 52, 7, 31, 48,140, 82,193,165, 97,144,189,156,151,135,193,195,193, 13, 30,235,202,138,178, 48,149,201,201,223, 39, 35, + 28,170,179, 87,217, 79,250, 16,108,164, 38, 16, 21,152,135,120, 24, 18,169, 90, 9,203,188,152, 85, 41,183,204, 9, 1,161, 50, +172,222,197,183, 62, 48, 97,173,211, 54,163, 24,208,204,104,215, 46,221, 27,139, 26,239, 39, 57, 52, 26, 80,230,140, 82, 58, 14, +183, 71,220,222, 28, 76,197,143, 19,144, 66,111,128, 31, 34,171, 65,174, 2,168,160,245,142,142, 0,126,109,114, 41,173, 38,244, + 82,219,150,166,101,245, 30,108,175,210,170,160,102, 45,128, 1, 82, 60,216,158,142,177,171,112,157, 23, 47,171,208,146, 1,238, +143,148, 71,236, 25,197,169,165,167, 98, 35,101,188,165,197, 82,219,242,162,117, 92,125,210,249, 94,220,255, 12,122,239,216, 77, + 9, 87,119,207,176, 28,158,224,215,191,252, 57,197, 71,180,186, 40, 71,206, 44, 67,253, 57, 32, 71,173, 98,201, 27,198,193,124, +190, 10, 43,145, 67,163,216,244,194,220, 15,112, 22,131,186,137,228,148, 18, 37,251, 85,199,203, 63,132,196, 16,143,196, 93,148, +142,184,104,131,164, 56, 47,231,108, 14,138,101, 97, 74,211, 73,102,113, 34, 48,105,127,182,199, 52, 77, 38,218,217,184, 9, 34, +126, 76, 49, 96,157,103,148,236,208,252, 96,244,185,249,209, 99,132, 82, 49,237, 71, 76, 23,123,212,167, 25,151,119,206, 49, 69, + 15, 44, 11, 14, 31, 61, 70,190,189,133,115, 30, 63,255,240, 41,254,229,119,223,198,195, 90, 16, 93,192, 62, 36,124,254,193, 37, +190,112,111,143,215,238,157,225,206, 89, 66,227,187,144,115,197,135, 79,143,248,235, 95, 60,198,155, 31, 63,195,191,121,239, 67, +252,249,123, 31,227,191,253,131, 55,240,149,215, 95, 64,239,192,254,238, 5, 30,167,143,209,154,195,252,240, 26, 45, 59,148, 39, + 79,241,232,216,112,225, 10,126, 81, 28,238,237, 31, 8, 46,211, 59, 30, 66, 85,148,250,209,137, 90, 62,116,203, 4,144,247, 57, + 32,157, 37,198,252,106,178, 26,139,198, 34,214, 42,181, 15,245, 46, 19,193, 70,187,147,236, 85, 51, 60,249, 7,138,224,245, 97, + 16,109, 78, 76,128, 19, 69,176,138,140,244, 82, 17,226, 96, 20, 59, 28,243, 17,100,140,170,221,164,138,156, 84,221, 47, 29,178, +100,145, 39,211,180,248, 56, 96,156, 38,225,102,199,136,149,121, 1, 42,190,179, 73,101, 99,135,216,113,226, 73,119,182,238, 67, +133,113,225,109,148,101,222,238,102,200,101, 83,241, 67, 26, 23,231, 69,156,230,189,128, 86, 66,218,146, 30, 85,151,161, 9,122, +142, 54,183,202, 73,170,118,106, 41, 69,190,139, 13,209,109,234,232,192, 95,223,123, 37, 81,177,226,246,230, 86,220, 54,107, 97, +182,128,219,248,241,142,170,125, 78, 63, 55,192, 81, 56, 41,192,183,162,165, 54,240,110,200,128, 33,148, 79, 10, 50,231, 17,162, + 4,199,196, 33,154, 75, 65,201,132,104, 21,153,107,205,168, 17,213, 18, 97,199,240, 44,250,204,185, 6,211, 41, 69,175, 20,222, +149,153,235,141, 6, 23,156,136,110, 75,102,202,153, 76, 93,100,152, 92,121,158,118, 4,189,164,233,183,199, 9, 32, 6, 39,132, + 63,141,204, 85, 97,181,118,219,254, 52,154,149,116, 78, 1,193,128, 17,169, 32,252,136,103, 43,116,133, 65,242,155,163, 77, 25, +129,137,122,142,113,171,158,159, 87,162, 77, 82,214,198,195, 56,242,107, 87,132,174, 36,117,246,202,175,205,123,132, 8, 75,239, +172,165, 33,142, 99,162, 0,193,163, 54,207,128,134,110,138, 78,120,142,179,189, 99, 10, 88,165,157, 9,112, 57,163,142, 3, 58, + 42,247,164,241, 36,120,222,147, 31, 14,180, 37,195, 53,135,113, 26,204,247,220,188,216,127,198,105,148,151,139,233, 72,150,145, + 14,129,192, 44, 51, 48,140, 98,175, 26,134,122, 82,177, 80,192, 64,241,137,160, 20,101,100,162,118,186, 82,170,160, 44,179,130, + 71, 88,164, 12, 30, 43,194,137,237,197,155,178, 85, 16,163,158, 65, 4,221,198,239,106,163,200,107,150,241, 9,167, 19,243,156, + 77,165,174,226,171,117, 93, 17,124, 55,223,170, 90,226,106,227, 94,188, 53, 84,181,102,213, 66,112, 3, 51,151, 57, 86, 14, 30, +140, 57, 60,169,146, 77,108, 3,116,238,148,204, 59,172, 40,216,146,101,231,233, 2, 66,148, 17,207, 52, 9, 41, 48,141, 82, 8, + 84, 86,131,178, 35,239, 91,128, 76, 17,158,125,201, 43, 71,237,205,200, 74,182, 58, 49,235,151, 92,176,195,254, 46,226,112, 9, +244,134,253,249,136, 23, 95,186,194, 15,254,253,191,129,115, 18,124,163,137,127,176, 60,228, 45, 34,214,121,143,200,117, 7, 78, +246, 80, 26,165,170, 10,227, 82,178,113, 20, 96,186,141,198,177, 46,177,181,204,175,134, 69,165, 58,235,192,132,122, 22, 69,208, + 2,207,168, 73,207, 11, 94, 46,163,202,159, 65,100,138, 96,103, 74,147,142, 50,199,113, 48,177,203, 48, 16, 80,210, 59,246,251, +221,102, 55,164,245, 42, 70, 21, 91, 2,251, 81,224, 57, 75,115,136,107, 6,214,130,150, 87,140,103, 59,132, 56, 96, 46,133, 69, +104,195,227,159,253, 10,183, 79,174,209, 59,240,183,239,252, 6,255,226,135,239,162,184,128,215, 46,239,226,143,191,249, 59,248, +226,231, 95,198,221,201,163,253,242,151,168, 89, 38, 62,178, 43,140,112,232,120,229,254, 57,190,246,153, 23,240,244,217, 1, 63, +252,233, 99,252,235,183, 63,192,127,255,253,119,241, 79, 31,207,248, 47, 63,245, 58, 66,233,104, 93,210,160,106,233,104, 79,158, + 97, 31, 28, 62,121, 21,177,222, 54,228, 15,158,225, 7,191,190,193,227,155, 5,127,248,173, 79,227,242, 42, 88,170,148,236, 81, + 87, 52, 47,254,217,166,225, 72, 37, 19,246, 35, 63,211,113, 28,144, 91,230,200,186,152, 22, 37,120,135,222,188,125, 46,181, 64, + 8,120,113, 68,136, 2, 8,169,173,159,172,132, 88,152,217,146,161, 91, 17, 81,153,105, 96, 59,206,144,108, 76,169,228, 60, 67, + 88,240,215,108,216,205,190, 5, 20, 85,153, 94,197, 24, 1, 62,207,229, 86, 56,229,195,152,158, 35, 38,154,139,162,119, 22, 52, +164, 72,246,141, 83, 14,180,109,199,206, 11,191,182,138,224,195,182, 23, 55,191, 51, 12, 96, 18, 83,192,126,191,223, 60,216,236, +101,155,135, 21,172,176, 49,120,195,110,191, 51,224, 85, 76, 9, 49,137,179,162,113, 20,171,251,224, 74,207,122,206, 5, 57, 23, +220,222,222,160,148, 98,187, 91, 7, 79,107,169, 20, 79, 90,168,196,152, 78, 64, 46,206,220, 34, 18, 98,228,172,219, 78, 92, 79, + 56,175,251, 50,253,178, 83, 0, 0, 32, 0, 73, 68, 65, 84, 98,142,249,201, 52,177, 96, 46,218,245, 4, 64,148,141,213,175, 72, + 87,181,215,122,242, 79,116,237, 88,153, 81,239, 3, 25, 33,129,228, 56,166,166, 57,235,136, 27,201,106, 69,186,244,222, 76,157, +207, 81,139,104,194,216, 2, 91, 1, 46, 57,103,198, 22,113, 92, 59,240,255,108,143,126, 2, 34,176, 78, 94,173,242, 93,201,110, +104, 50,138,111,218,181,243,158,226,121,102, 24, 95, 78,170, 53,187,194,121,209,177, 41, 0, 72, 19, 21,149,141,160,161, 94,153, +188, 24, 71,139,110,103,199, 39,235, 93,177,197,169,229, 57,170,224, 65, 83,186,224, 29, 82, 24, 12,242, 98, 85, 43,156,169,148, + 91,235,136, 73, 58, 28, 25, 69, 53, 59,184, 79,131, 13,212,135, 55,237, 70, 9, 0, 41, 34,132,144,130, 1, 27, 14, 47, 4,254, +176,173, 95, 36,190,177, 74,244,225,218,153,186,147,196,227, 62, 13, 56, 30, 86,140,196,218, 74,210, 91, 98,247,219,204,166,149, + 6, 79,226, 27, 76, 21, 45, 47, 3, 48, 12, 17,183, 55, 11,134,193,195, 37,207, 76,101, 7, 87,229,240,145, 75,188,154, 31, 94, + 94,200, 2, 31, 2,230,121,193, 50,175, 56,220, 30, 77, 44, 23,163, 55, 59,220, 56, 10, 57, 78, 87, 22, 42, 22,170,117,235, 88, +236,129,229, 88, 89, 84,224,188, 96, 89, 69, 6, 39, 49,147, 53, 47,182,203,113,208,181, 0, 44,247, 87,237, 98,218, 41, 36, 23, + 17,146, 71, 8, 66,109, 11, 60, 72,161,193, 23,212,133,200,133, 39,123,168,101, 89, 80, 75, 54,176,140,238, 29,117,252,172, 8, +208,141,190, 41,240,146,233,234, 19, 40,185, 98,191, 75,184,119,255, 18,215,143, 63,194,199, 31,126,200,176,156,205,106,168,123, + 58,231, 20,221,216,201,165,142, 6,238, 0, 47, 69, 37,254,169,126, 37,132, 64,224,131, 50,236,197,215,217,105,253, 19,253,130, + 67,201,109, 19,228, 1,150,177, 28, 7, 81,180, 15,244,222,142,211, 72, 98, 30, 76,128,199, 6, 65, 18,228,106, 49, 77, 68, 8, + 1,187,105,226,115, 42,123,211,152, 18,198,113,176, 66, 78,112,163,137,207,118, 51,165,117,239, 14, 99,242,184, 56, 75,152, 51, + 4, 34, 17, 2,130, 19,177,230,186, 54, 60,124,248, 12,239,255,242, 9, 92, 95,240,169,207,222, 5, 98,194,175, 63,190,193,255, +252, 23, 63,199, 16, 71,252,189,223,121, 29,127,242, 15,126, 15,247,238, 95,202,101,145, 23,228,228,225,181, 99,116, 50,169, 41, +189,195, 51,111,249,236,124,135, 63,249,234, 30,159,121,241, 2,255,195,119,127,138,255,243,221, 15,241,217,247,159,224,235,159, +126,193, 14, 44,160,195,119,177, 95, 13, 83,192,244,165, 55,240,143,191, 33,123,207,255,233,127,253,115,156,157,239, 49, 76,194, +115,152,143,212,138,132,205,122,228,125, 68,136,242,185,231,156, 49,142, 34,126, 90,215,149,145,151, 17, 64,197, 50,207, 24,122, + 68,233, 14,195, 32, 41,114,121, 45,136,131,116, 32,121,105,136,113,148,226,177,117, 6,105, 52, 99,135,119, 10,155, 84,179,164, + 83,156,224, 68, 46, 32, 10,227,198,238, 7, 39,249,238,176, 73,147,118,215,122, 38,181, 6, 4,170,221,197,189, 38,103,151,231, +115, 31,131,252,220,213,161,148,215,124,130,100,117, 50,129,243, 14, 57,235,206,215,139,149,203,109, 35, 92,229, 55, 24,220,133, +192, 30,237,226, 53,255, 92,244, 64,194,122,215, 9,150,119,162,205,206,107,177,192, 14,253,121,167, 97,160,184, 83,138,136, 65, + 85,226, 39,185,235,157,223,167,142,237,115, 46,204,169, 23, 63,186, 88,167,248, 61, 19,219,108,188,113, 71, 11,151, 10,213, 88, + 44,233,229, 44,161, 79,226, 90,234,108,192, 84,227, 35, 86, 92,217,203, 7, 54,117, 46, 13,204,154,119,150,251,237, 85,183,228, + 61,198,113,164, 46, 71, 14,233, 82,171,116,240, 60, 31, 99,144, 85,176,119, 64,205, 34,118,172,101, 97, 0,153,140,221,157,171, + 70, 62, 84,204, 48,122, 67,240,178, 66,243,116, 47,137,141,248,121,180,174,174, 28,117, 23,174,188, 6, 93,197, 54,158, 93, 26, + 12,165,231,132, 61, 91,170,153,160, 86, 40,104,244, 42,188,184,133,124,180,113,250, 22, 26, 68,167, 14, 60,155,166,192,162,243, + 20, 72,228,204,166, 40,119,151,223, 2,107, 56,108, 40,122, 14,178, 49,149,233,120, 71, 84, 44, 41, 8,235,247, 81,252,149,126, + 24,208, 33,121,193,250,141,119, 10, 47,212, 23,172,135,218, 74,164,101,173, 69, 70, 72, 33, 2, 78,152,215,203,156, 49, 12,178, +252, 31, 6,138,181, 6,121, 17,215, 53,163, 22,142,121, 2,199, 29,206,227,112, 59, 91,220,168,236,188,101,207, 55, 76, 19, 5, +120, 17,216,251, 19, 92,160,116, 91,187, 75, 9,105, 81, 0,132,250,217,123,175, 76,108, 11,130,121, 13, 30,203,156,173,154,149, + 7, 3,198,150,159,215, 76,236,162,183, 96,133,101,201, 56,220, 10,124,229,120, 92, 48, 31, 87,198, 1, 38,171, 0, 85,109, 41, +254, 73,121,114, 74,173, 76,117,106, 39,156, 97, 57,140, 2,199,197,129,208, 2,101, 78,203, 5, 61,195, 59, 71, 82, 30,199,213, +157, 54, 51,134,171, 4, 29,213,163, 19, 18, 66,123,157,147,162, 43, 38,207,169, 95, 23, 46,182, 33, 8,229, 1,107, 20, 28,150, + 44,232, 87, 25,245, 53, 27, 55,169,149,240, 84,208, 88, 57,246,129,115, 24,207,238, 98,119,126, 15,181, 52,156, 93, 76,184,247, +224, 18,127,250,255,252, 7,126,246,160,104,198,217,216, 81, 62,107, 25,197,139, 40, 37,114, 47,180,133,134,104,202,151,198,124, +106,149,156,233,145,151, 84, 58, 71, 33,144, 18,199, 18,106,145,103, 79, 85,162,227,184,131,243,209,216,219, 10,174, 80,117,187, + 56,139,250,230,225,165,229, 70,166, 43,128,247,233,185,164, 58, 73,171, 19, 1,211, 52, 73, 78,187,194,107,210, 16,185,126,111, + 22, 97,108, 48,157,229,136,125, 2,198,208,176,252,246, 49, 48, 37,132, 48,161,149, 21,229,120,139, 95,189,247, 91,252,229,143, +126,129,111,252,209,235, 64, 76,152,115,197,191,250,238,187, 24,134, 17,255,249, 87, 63,133, 63,249, 71,223, 64, 96,198,115,121, +244, 16,158,208,155,226, 51,144, 43, 48, 12,232,181,195, 67,166, 22,174, 55,248, 46,251,236,207,188,122, 7,255,217,231, 95,198, +255,242,119,191,198,247,223,253, 8,159,124,241,108, 43,142,164,217,194,184, 79, 24, 46,247, 24,238,221,197,184,159,100,199, 55, +136,251, 36, 68,143, 82, 59,166,221, 36,133, 32, 54,118,186,163,224,169,148,138, 16,155,169,113, 99, 12, 2, 11,130, 19,215,132, +119,152,143, 51,166,253, 14,165, 20,166, 61, 6, 91,255,192,123,184,144, 16,135, 73, 58,203,146,105,197,244, 39,158, 95, 25,231, +235, 1,219,106, 69,117,155,200, 81, 4,187,202, 45,216, 92, 33,205, 14, 65, 61, 48,157,172, 22, 99,103,216,135,220,231,129,120, + 82,121,151,183,221,166,224, 73, 53,246,171,219, 59, 28, 8, 9,217, 78, 96,216,244, 80,119,201,218,213,115, 45,255,156,242,189, + 55, 96,156,118, 50,233, 26, 70,209,100,140,137,235,164,206, 14,125, 75,160, 3, 97, 72,137,171, 78,193, 56, 23,140,211,104, 10, +244, 77,244,217, 13,146,210,154,184,113,150, 69,105, 99,141,211, 42,119, 18, 79, 29,236,189, 74,105, 16, 22, 0,119,205,218,105, + 62,175,108,223,194,105,154,178, 63,156, 55,231,136, 83,104,144,247,178, 62,116,206,118,253,157, 52,185,224, 29, 65, 58, 68,159, +214,134,230,232, 55,103,216,139,162,137, 43, 54,156,172,216, 23,203, 70,108, 3,163,119,245, 75,211,162,138,118, 53,231,131,228, +155,177, 81, 82, 87,148,254,216,186,219,236,179, 54,130,239,218, 65, 59,107, 62,187,238,234,249,239,192, 11, 25,252,217, 40,205, +112,155,212,136, 40, 64,221, 74,112, 81,198,231, 39, 46, 1,189,176, 29,168, 73, 97,129,238,180,112,228,158, 63,156,228,180, 55, +234, 9,116, 42, 21,163,156, 59, 33,122,201, 47, 80,125, 18, 24,111,168, 34, 6,195,108,106,134,247,201,194, 30, 76,110,106,220, + 47,121,250,129, 99, 10,188, 0, 42,106,208,252,225,196, 49,151, 23,161,131,122, 5,185,187, 57,205, 87, 79, 41, 82, 77,219,185, +255,213, 61, 4, 76, 68, 53,216,154, 0,198, 46, 78, 99, 66,226,174,102,218, 37, 73,207, 33,250, 84, 89,223,149,192,255,141, 79, +223,208,153,131,156,146, 99, 20, 35, 49,139,185, 96, 94,169,230,245, 73, 42,169,218, 81,136,123,173,181, 96,153, 87, 41, 48, 70, + 25,211, 74,192,133, 28, 98,195, 16,159,131,242, 31,110, 14, 76, 36,234,180,190,193,130, 14,188,135, 89,213,148, 20, 37, 15,188, +172, 44,164,240,233, 36,168, 81,249,201,209,187,216,252, 60, 59,255, 98,197,132, 67, 23,132,233, 52, 24,224, 39, 14, 3,224,228, +176,106, 16,139,155,101, 69,231, 85, 64, 12,189,161,149,149, 62, 78,233, 60,225,213, 3,188,133,216,224, 4,127, 90,115,198,229, + 43,175,163,213,142,221,110,192,253, 7, 87,120,248,193,251,184,126,250,196, 68, 68, 62, 60,239,115, 85,100,107, 26, 18,163, 76, +171, 98,192,225,248, 44,136,125, 5, 44, 26,157,121, 83,189,183,102,222,198,248,162, 0, 21,204,237,186, 72,104,135,118, 44,250, +244,123, 31, 13,165, 91,248,252,104, 17,161,135,190,140,144, 69,121, 61,237,119, 86, 13,199, 52,136,245,144,151,117, 74,145,140, +125,207, 60,114, 66,108,106,231,138, 98,219,249,235, 68,170, 12, 30,104, 25, 67,136,240,247, 94, 64,197,125,249, 12,175,159, 0, +189,224,225,227, 91,236, 81,241,202, 75, 87,136,231, 19,254,213,191,254, 9, 30,151,142,255,234, 15, 62,139,111,126,243, 11, 8, +200,104, 23,151,162, 57, 88, 11,218,147, 39, 8, 14, 66, 36,116,178, 39, 14,209, 83, 57,235, 81, 22,201,143,238, 92,229,124,225, +213, 43, 92,189,243, 17,254,242,175,126,138,254,219,143,241, 95,127,253, 53,249,249,140, 3, 46,223,248, 36, 66,138, 8, 67,194, +238,234, 2,189, 55, 28,110,102,212,222, 49,237,146,237, 14,125,112, 12,212,113, 8, 44, 42,123,242, 88,142,210, 89, 87,126,230, +142, 99,102, 61,240,125,136,112, 53,194,123,249,108,133, 79, 33, 5, 65, 76, 28, 49,198,132,238, 21,231,188,179, 46, 95,199,203, + 62,168,111, 88, 68,118,114,129, 69,142, 39,149,147, 14, 56, 47, 24, 78,181, 58,106,176, 77,107,234, 29,150,253,242, 56,120,179, +131, 38, 22,129,242, 28,121,220,222, 30, 37,186,153, 35,121,213,222,168, 55, 94,255,188,206, 0,143,109,207,203,131, 90, 49,164, + 39, 23,135,172,221,212, 29,228, 24, 30, 52, 50,204,202, 99,183,159, 48,140,163,177, 41, 18, 45, 76, 61,103,238,195, 59, 39, 94, +209,186,219, 82,178,172,232, 20,108,211, 65, 11,110,227, 72,182, 88,254,192,241, 56,155,142, 71, 93, 64,232,142,239,133, 20,102, +173, 74,113,225,131, 71, 46,141, 64,171,138,224,187,157, 77, 74, 64,211,137, 98,215,179,137, 99, 99,125,207, 85,169, 45,199,152, + 20,188,173,138,107,160,243,125,151, 11,158, 8,107, 93,179,180,138,249,112,228,120,187,113,172, 12,212, 44,141, 70,231,202,177, +181, 98, 42,118, 71,150, 5,161,233, 91,236,173, 38,117,202,226,136,119,201, 41,174,151,182,187,147,128, 26, 29,198,251, 19,136, +145,102,140,200,133,173,122, 41,137,139,110,173,137, 21,212,176,201,125, 75,140,116, 39,247, 23,156,229, 85, 8, 95, 0,150,167, + 17,194,128, 82, 59, 87,202, 81, 38, 25,173,114, 34,210, 45,171,194, 10,135, 86,145,210, 96, 43, 20, 97, 15,104,163, 35, 98,205, + 24, 2,162, 2, 27,188,229,192,210, 39, 13,221, 73,178,243, 32, 74, 86,253,168,194, 7,167,108,223,109,241,112, 37, 75,230,177, + 8,219,188,169,185, 29,119,106, 18, 93, 39, 98,149,156, 59,243,110,133,118,148,156,199, 90,154, 65, 19,180,226,213,200, 87,253, + 6, 99,138, 72,137, 47,127,240,114,193, 50,195, 60, 4,143,188, 86,130,104,250,201,225, 47,157,147,119, 14,203,178,154, 71,113, + 24, 5,132,179, 16, 97,232, 0,120, 78, 32,116, 5,177, 46,162, 96,238,252,140, 98,234,198, 96,175, 85, 69,134,149,112, 27, 96, +158, 37,156,165, 82, 13,239,212,103,201,209,144, 84,123, 10,202,144, 73, 73,109,204,138, 39,221,104, 93, 22,218, 54,138,125,198, + 42,190, 9,129,126, 96, 84,195, 30, 58,120,238, 2, 71, 97, 4, 3, 34,186,241,201,214, 17,142,197, 90,173, 13,174, 9,208,166, +180,142,188, 46,100,207, 55, 30, 88, 82, 85, 22,250,216,107,219,116, 12,242, 79, 32,237,238, 96, 58,127, 17, 49,122, 92,222,217, +227,238, 11,103,248,246,255,245,111,173,179,210,234,184, 85,209, 96, 40,112, 70, 19,251, 58, 45,121,194, 40, 40, 98, 89, 63, 25, +147,106,202,145,134, 91,120,162,128, 19,195,121,116,186, 36,228, 61,161,114,105,110,116, 55, 76,229, 54,125,177,145,125, 43, 40, +228,119, 59,141,211,164, 8, 47, 48,184, 99,156,118,214,145, 52,218, 44,135, 65,130, 37,134, 97, 64, 26,105, 85,171,149,161, 24, +209,158,125, 41, 40,171,217, 56, 75, 41, 24, 2, 16, 47,206,225, 11,144,231, 89, 20,250, 87, 87,104, 15, 63,194,178, 44,248,212, +131, 43,220,121,225, 28,223,125,235, 67,252,236,227, 27,252,147, 63,124, 3,223,250,195,207, 73,183, 50,238, 17,247,231, 72,189, +193,191,250, 10,202,251,191, 4,214, 21, 46,122,116, 7, 44,199,130, 52,202,231,136, 74,222, 52, 19,248,186,243,120,249,238, 25, +254,139, 47,191,138,127,249, 55,239,225, 71,191, 42,248,214,103, 95,192,107,175,221,195,229,231, 62,137,116,182,151,156,235,224, +225, 52, 52,164,175, 38,126, 85,190,117,171, 21,197,109,171, 53, 31, 34,226, 40,238,139, 90, 86,198, 14, 71, 94,190,222, 18,178, +212,161, 82,139, 98,122, 61,162,249,255, 55, 98, 90,119, 14, 45, 68, 36,239, 49,237,207,225, 67, 66, 41, 29,222,211, 22,202,238, +168, 82,240, 88, 75, 59, 97,108, 51, 96, 42, 36, 32,111, 33, 34, 18,251,185,141, 85,149, 22, 38,231, 13,245, 26, 38,216, 19, 54, +119, 8,145, 60, 7,233,126,197, 61, 83,236,178,146,116,177,106, 9,130,202,235,208, 67, 26,182, 34, 10,150,177,238,188,131,239, +213, 58,110, 88,106,153,172,113,166,221,158, 19, 73, 71,176, 85,181, 73,131, 56,146,196,170,166,255, 41, 89,254,221, 48, 74,170, + 93, 24, 97, 84,206,156,183, 8,211,121,158,197,159,206, 6,108, 89,150,147, 75, 77,249, 34,186, 74, 29,136, 54, 5, 34,127, 77, +140,145,159,177,127, 62, 92,132,207, 88, 61,129,250, 56, 56,211,101,133,232, 44,178, 87, 63, 39,205, 83,208,240,172, 82, 36,113, +174,156,184, 76, 52,128,171, 50,194,184, 17,105, 11,198,163,202, 52, 77, 2,129,186,151,177,185,231, 26,210,187,206, 9, 32,207, +111, 71, 43, 30,141, 98, 81, 5,198,234,121, 84,139,152,131,197,248,186,109,152,179,209,223,116,114, 10, 61, 59,187,233,154,108, + 77,170,171,122,239, 81,123,181,194, 74,246,236,122,102, 71,203,185, 16,222,125, 71, 64,218,210,218,218,115,128, 67,129,175,249, + 77, 24,173,182, 92,229,189,108, 19,102,103,250, 18,239, 3, 92,147,166, 41, 2, 21,193,179, 99, 30,252,201,101,186,153,240, 37, +223,124, 65,140,130,108,213, 93,121, 87,186, 23, 43,245,134, 14,239, 26,242,218, 55, 38, 50,186,101,202, 46,203, 74, 36,101,176, +188,102, 57,172,217,109,244,138, 86, 5,150,209, 90,195, 50,175,216,159, 77,102,129,145, 10, 95, 95,136,136,152, 2,237, 42, 13, +227,200,234,157,200, 78, 85, 56,170, 77,111, 24,226, 9,107, 28,246,131, 6,247,201,199,219, 25,227,152, 88, 77, 49, 87, 26,192, +124, 92,177, 44,133, 44,102, 41, 12,198, 49,225,120, 88, 12,216,163, 69, 73, 99, 53,220,106,145,131,141,213, 84,161, 63, 52, 68, +217,111,107, 85, 29, 61, 44, 65, 40,120,143,117, 93, 88,125, 83,109,174, 59,125, 8,235, 28,138, 90,133,168, 58, 85, 24, 38, 34, +195,132, 97,218, 97,152, 38,132,144, 4, 38,193,125,153,115,226, 50,136,145,126,115, 70, 16,172,115, 22,252,233,124, 48,122,155, + 38, 81,157,142, 15,189,223,104, 88,146,204, 4, 92,189,244, 57,160, 3, 67, 10,184,119,255, 18,143, 62,124, 31,203,186, 72,232, +194,137, 64,166,214,134, 33,208,175,203,140,244,206, 28,104,153,164,136, 21, 82,193, 52, 58, 21,234, 0, 66, 15,102,181,236,189, + 35, 12, 65,212,209,238,196,154,230, 34,187,110,144,173, 0, 59,108, 27, 9,130, 78,195,110, 40,154, 1,119,243, 58, 41, 80, 21, +187,190, 28,202,234, 22, 87,132, 96, 70, 53,165, 48,166,128,196,201, 81,111,242,178,198, 24,176, 46, 89,116, 4,124, 67, 5,146, + 33, 99,215,221, 11,247,165, 0, 40, 11,206, 46,206,208, 91,197,242,100, 70, 91, 87, 60,185, 89,112,247,114,143,135, 55, 25,255, +223,143,127,131, 63,250,242,107,248,135,223,250, 18,252,221, 23,112,251,214, 91,146,163,112,118,134,158, 6,184,221, 14,225,254, +139, 8, 79, 30,162,173,194,104,223, 13,222, 86, 24, 34,151, 16, 61, 70,206, 13, 62,116, 32,120,252,254, 27, 47,226, 71,239, 63, +198,219, 79, 15,248,197,161,226,119,191,252, 89,196,200, 14,198, 73,104, 79,125,118,141,180,223, 9,105, 76, 87, 70,132,129,172, +107,135,227,101,182,155,162, 93, 32,226, 23, 23,152,139, 15, 14,105, 72,178, 58,138, 18,160,228, 60,199,223,189, 99, 62,222,202, +179, 23,131,140, 28,137, 1,149,212, 49, 1, 35, 57, 42,201,215,101, 17, 75,145, 75, 70,245,203,235, 98, 12, 3,197, 29, 43, 84, +168,107, 86,249, 9, 57,210,200,132,110,131,183, 56,207,206, 94,247,189,164,193, 45,179,240,236, 83, 74, 24, 71,153,118, 73, 92, +177,210,234, 28,187,167,108,228,195,110,133, 37, 71,235, 80, 56, 20,108, 90,100,170,117, 71, 68,113, 96,163, 20, 69, 56, 54,142, + 19,215,149,193, 86, 99,133, 77, 78,165, 77, 49, 70,225,209,207,199,217, 10, 37, 13, 92, 82, 8, 76, 56, 89,141,249, 32, 13,193, +178, 44, 40, 12,214, 42,132,192,200,222, 53, 88,102,185,163, 11, 68, 63, 15,125,119, 20,198,162, 90, 0, 93,181,170, 59, 72, 66, +117,220,137, 53, 20,132,118, 21,235,136,101,237,169,240,168,106, 69,128,172,172,156,249,255,117,234,167,239,140,198,136,162, 85, + 89,199,234, 5,223, 10, 98, 0,122,115, 42,206,103, 81, 95,120,214, 87,235,172,213,194,230,156,131,235, 10,235,169, 27,232, 42, + 50,139, 92, 19,213,220,137, 85, 76, 47, 94,108,235, 21,239,148,220,160,122, 9,122,197,149, 8,199,117, 0, 76,160,235,248,103, +176,177,177, 70, 5,204,164, 72, 54,226,151, 38,154,197, 35, 2, 45,116,221,210, 54, 59,127,127,103, 3,167,201,148, 41,249, 19, +111,189,125,225,128,235,136, 50,167,215,131,168, 18,130, 48, 96, 93,148, 4, 38,127,120, 74,114, 17, 79,211, 36, 17,138,204, 29, + 46, 85, 70,209,157, 62, 94,231,221,150,212, 3, 7,228, 98, 82,124,217,167,121,195, 28, 58, 31,144, 98,194, 82, 87,142, 65,101, +204, 89, 91,181,131,254,120, 88,144,115,197,217,249,132, 16, 28, 90, 5,134,113,131,150,196, 20, 49, 78,145, 59,161,104, 34,149, + 90, 26, 3,220, 2,134, 36,149,120,163,223,122, 24,182, 52,174,101, 94,112,184,153,233,203,148,145,108, 94, 10,242, 42, 52,160, +195, 97, 17,136,206, 20,216,101, 11,213, 78, 49,166,181, 20,180, 42, 99,248, 90, 42,150,121, 21,155,156,250, 29,117, 71,237,164, + 67, 93,151, 5, 67, 18,187,148,240,225, 37,213,170, 6, 39, 99,112,170,225,197,150, 37,135, 66,119, 91,231,171,188,117,231,129, +224, 54,142,125, 26, 39, 76,251, 51,120,166, 78,249,144,108,167, 44, 42, 89, 17, 63, 90,236, 45,247,200,181,172,150,194, 20,188, +136, 89, 82, 10, 20, 60,249,173,219,162, 69,200,133,128,180,187,194,249,221,151,209,123,199,197,229, 30,103,231, 3,126,248,195, +159, 32,132,100,171,140,142, 46,138, 77, 10, 13, 85,165,233,189,108,158, 60,191,246, 20, 61, 33, 47,133, 35,164,110,163,175, 92, + 50,233,122,186, 87, 93, 77,191,160,113,186,250,146,118,242, 8,192,201, 66, 35, 84, 40,176, 27,215,110,202, 91, 33,229, 12,222, +163, 30, 96, 61, 28,158, 83,200,186,110,157,135,198, 91, 74,232,132,116,202, 62, 72, 53, 94, 75, 17,126,182, 58, 28,184,247, 10, +110,194,176,223, 33, 31,142,168,168, 8,174,163, 62,123,132,225,241,199,168, 49,162,199,132, 47,188,254, 0,239,252,230, 26,251, +105,192, 63,248,250,235, 66, 53,123,244, 16,195,229, 5,220,186,162, 29,111, 17,199, 29,224, 61,202,249,185, 60, 83,183,183, 24, +234, 13,202,218,224,209, 0,142,198, 93,136,242, 30, 81,157,223, 29,144,162,195, 55, 94,191,135,119,254,250,128, 95, 95, 47,130, + 74,245,226, 73,174, 77,190,231,117, 94, 49, 31,102,228,226, 25,245, 40, 19,181,249, 88, 0,178,192,135,113, 64,206,176,207,160, +107,241, 15,241,247,107,216,143,136,190, 6,180, 90,176, 63, 15,152, 15,206,198,215,195, 56, 89,158,122, 94, 51,133, 95, 27,103, + 0,232,136,221,145,224, 6, 22,180, 43,173,143, 98,225,139, 41,162,172,197, 86, 58, 14,157, 23,182,240,204,141, 0,217, 27, 39, +120, 42, 50,146,157,122, 72,210,189,166, 16,132,114,198,115,100, 93,165, 48,235,224,250,128, 95,115,233, 39, 30,102, 10, 57, 79, + 99,129, 45, 6,211,183, 19, 33,150, 55,102,134, 9,158,154,147,119, 36, 38,236,247,123, 92, 94, 93, 98,152, 70, 78,162, 68,139, + 0,163,110, 50,182,212,111, 90, 1,209, 36,200,207, 55, 40, 28,172, 11,234, 90, 11,187,227,225,136,101, 89,172,171,172,165, 72, +106, 91, 20, 12,183, 78, 35, 60, 19,210, 68,143, 34,151,174,170,232, 85, 47, 82, 74,145,179,131, 83, 28,161,150,109, 80,175,206, + 12,112, 45,168,226, 36, 43,129, 86,183,181,197,178, 48,170, 25,242,174,116,238,208, 58,232,159,175, 91,183,222, 91,165,183,188, + 17,139, 93,209, 25,128, 37, 90,162,142,200,228, 77,113, 47, 54,222, 67, 50, 29,241,212, 35,105,196,170, 20, 39,253,185, 8,230, +222, 53, 30,156, 19, 64, 54,125, 98,127,212, 44,144,246, 92,152,139, 9, 47,149, 47,224,228,235,175,106, 33,174, 42,160,147, 34, +169,218,234, 69,120,240, 22,232, 3, 71, 87,147,124, 61,193, 11,119,161,148, 83, 33,168, 96,147,107,107,240,188,128,133,255, 18, + 45,133, 13,155,154,195,220, 28,141,211,209, 16, 2,162, 70, 18, 2, 74, 78,131,189,108,102, 45, 33, 1,104, 33,194,181,159, 0, + 57,134, 33, 17, 50, 82,237,129,200,172,228, 58,237, 51,250, 64, 26,238,143, 81,152, 1, 14,205,201,238,254,120,152, 81,138, 8, +110,198,105, 32,117,108,195, 19, 46,180,142,233,126,214, 7,233,128,207, 83, 32,192,166,157,208,163,156, 29,250,154,168,212,122, +133,235, 64, 26, 2,202,154,141, 93,189, 44, 5,227,148,248,195,109,152,143, 98, 83,211, 49,219,110, 39,197, 68,239, 13,243,113, +101,120,128,100,245,230,117,181, 46,125,157, 87, 27, 9,174,139, 6,178,176, 66, 99, 71, 93,104,255, 89,151, 21,173, 8,169,172, + 22, 71,133,123, 49, 96,199, 48, 36,126,238,222, 94, 40,239, 60,124,226,247, 85, 43, 29, 36,146,143, 62, 76, 35,198,221, 30,227, + 52,241, 48, 9, 8,105,176, 8, 92, 5, 94,200,231,207, 40,221, 86, 81,170, 42,206, 59,119, 99,176, 48, 7,239, 35,121,218,222, +176,134, 50, 18,138,184,124,241,211,200,107,195,217,217,128,123, 47, 94,226,241,135,239, 99, 57, 30,145,146, 40,155, 53, 62, 50, +165, 96,222,101, 41,128, 86,192, 24,198,180,173,241,208,242, 42, 18, 81,236,107, 41,114,113, 82,160,178, 46,139, 5, 63,108,143, + 52,131, 92, 74,177,245, 68,237,210,225,120,183, 89, 62,128,182, 29, 62, 44, 40, 66, 18,225,145,247,193, 46, 19, 29,177, 41, 31, + 64,199,158,129, 86,154,113, 74, 4, 69,180,109,228,185, 10, 72,102, 93, 22,155, 42, 84,142, 21,157,247, 24,247, 13,126,185,193, +248,240, 3,244,155, 5, 97,190,134, 95,103,248,139, 29, 50,130,140,177,167, 17,127,246,119,191,198,103, 63,243, 50,238, 62,184, +131,224, 58,194, 75,175,160, 31,110,209, 30, 61, 68, 59, 30, 81,246,139, 20,138, 33,160, 93, 92, 34, 92,221, 65,125,251,109, 70, +120, 74, 71, 14,146,207, 52,229,203, 19, 0,235, 6,143,171, 93, 66,116, 1,143,175,103,209,125,116, 15,172,183,232,113,194,202, +160,144,156, 51,110,143, 29,227, 46,202, 65,234, 60, 42,170,104, 47, 86,113, 60,228,213, 97,156, 18,122, 79,178,106, 35, 3, 65, +129, 34, 33,142,156,232, 56,161,246, 57,135,113,218, 11,192,137, 29, 91,140,130, 99, 14,180, 78, 57, 34,123, 37, 79,187, 33,132, +198,245, 83, 65, 43,171,117, 70, 10,152,106, 93, 46, 7, 25, 85,119, 50, 53,220,182,103, 4, 76,212,100,105, 90, 28,139,139,118, + 8, 22,218,227,204,139,222,128, 46,227, 99,158,185, 82,168,215,142,113,154,176, 44,171,113,222, 55,209, 48,117, 69, 20,177, 58, +183, 89, 35, 55,245, 59, 15,123,138,169,134, 97,100, 62,192, 30,211,110,162, 56,118, 91,109,149, 92, 54,252, 54,255, 89,114,161, + 48, 84,163,151,131, 81,244, 58,191,158, 92, 10,157, 27,138,148,173,182, 87,215, 34, 35,120,103,197, 38,232,100,104,198,160, 15, +182,154,139, 73,244, 75, 10,128,210,229,179,142,131,197,122, 12,211, 53,152,159,221,116,116,130,133,173, 68, 42,131,235, 79,253, + 79,235, 13,203, 44, 83,201, 94,149,109, 32, 14,134,202,128,150, 86, 56,169, 68, 59, 25,181, 83,152,215, 27, 47,120,216, 68, 77, + 99, 78,213,134,104,137,110,253,212,180,227, 78, 52, 89,145,133, 70,132,243, 58, 53,168, 22,227,171,187,113,168,167,222,144,189, +141, 83,140,106,231,181,114,223,183, 76,138, 13, 2,102,158,247,154,225,124, 66,213, 7,146,214, 59,177, 71,119, 91, 55,162, 3, +181,101,196, 56,160,212,130,105,218,177, 24,149, 21,161, 22, 4, 90, 92,169,205, 88, 27, 39,160, 35,138,127, 84,204,242,174,122, +123, 65,243,186,114, 52,230, 13, 17,106,244,185, 92, 49,237, 70, 30,212, 50, 38, 73,227, 32, 30,246,210,159,203, 17, 94,150,194, + 49,210,214, 77,203, 8,103, 11, 82,105,181, 98,156, 6, 19,214,213,218, 16,180,186,230, 72,169,208, 58, 22,210,102, 75,208,135, + 82,199,172, 41, 5, 19,186,182, 38, 54,163,202,188,221, 24, 60, 86,238,184,101,132, 38, 97, 47,170, 46, 92, 87,241, 11, 31, 15, + 2,123, 24,167, 68,241, 71,197,237,141,132, 90, 28, 15,179, 1,248,165, 32, 88, 36,154,243,246, 96, 85,109,175,109, 3,159,168, + 10,149, 95, 95, 45, 43, 59, 15,193, 26, 74, 72,140,131, 75, 17, 14,241,185, 29,138,142,177, 28,228,130,139,195, 32,225, 46,232, +240, 81, 18,219,156, 3,198,105,194,180, 19,143,107,154,246, 38,102,107,204,149,247, 84, 40, 43,207,189,115,135,115, 92, 86, 3, +121, 4,247,188,229,167,210,154,215,106,135,243, 29, 53, 87,248,152, 16,131,135, 75, 59, 12,251,123, 98,157,186,152,112,113, 57, +224, 39,127,246, 38,149,202, 91,114, 92,171, 32,177,170,211,239,222,101, 15,152, 11, 74,213, 41,138,231,222,211, 33, 13,145,209, +140,162, 28,151,112,182, 66,145,163, 82,225, 68, 12,165, 44,127,197,139,118,125,137, 84,161,170,249, 4,181,113,135, 11,140, 19, + 97, 39, 10, 46, 33, 63, 64,210,243, 26,253,229,210,181, 40, 99,161,181,138, 20,147,249,215, 85, 1,237,106,195,124, 56, 34, 13, + 50,102,214, 66, 47,175,235,137,122,181,162,151,134,155,242, 12,111,190,245, 19,124, 33, 14,120,112,231, 10, 45, 5, 92,135, 14, +220,125, 9,183, 31, 63, 66,115, 14,239,252,234, 33, 30,221,174,248,227, 79,191,140,120,126, 6, 63,237, 68,213,142, 14,119,251, + 20,225,252, 28,213, 11,240,168,174, 25,136, 17,249,233, 51,148,121, 70,115, 30, 8, 17,174, 85, 75,144,234, 0,134,216, 49,157, + 37,212,181, 32,103,135,253,110,192,218, 42,150,165, 0,203,130, 94, 87,244,203, 59,242,235,215,140,101,205,240,113,192,211,199, + 31, 99,119, 22,141,206, 88, 74,145,116, 48,205, 74,112, 29,232,242,189,170,203,100,154, 6,160,123, 83,253,171, 27,193,105,150, +182,247,240, 97, 64, 41, 71,225,251,119,135,158,169,222,101, 58, 70,136, 3, 74,158, 57, 46,174, 28,195, 31,205,218,104,214, 32, + 11, 47, 2, 45, 67,140, 68,205, 21,158, 44,241,231, 60, 75, 60, 92,209,221,150, 31,174, 20, 70, 42,188,101,183,235, 73,139,148, +194,180, 50, 83,161, 18, 62,227,253, 38,186,117,206, 83, 48, 9, 54, 13,133,211,197,128,188, 30,105,237, 18,139,129,119,226, 85, +239,173,210, 83,158,176, 63,219, 99,183,219, 75,183,219,186,105, 78,138,129,152,154,177, 14,150,101, 69, 46,121,211,135,152,150, +201, 91,110,121, 37, 95, 99,165, 5, 78,199,189,243,124,220,166, 25,238,212,131, 46, 99,253,214,177, 21,210, 4,208, 12,195, 96, + 28, 11,109, 40, 24,148, 72,224, 13,185,242, 77,196, 99, 41, 5,227,147,119,178, 67,250,218, 45,107,221,185, 19,180,172,158,103, +164, 61,138,210,189,161,243,231,168,147,135, 86, 87, 99, 19, 40,144, 76,133,212, 10, 98, 17,118,187, 59, 81,188,243,248, 33,191, + 66,187,114, 71, 47,184,218,209, 0,143,144, 6, 3, 87, 9,164,140,162, 96,120,132, 86, 12,252,163, 35,251,205, 53,195, 20, 62, +213, 79,212,106, 96,173,126,234, 97,103, 17, 9,167,119,129,219, 80,213,240,155, 61,178, 59,251,124, 59,164, 48, 52,193,107, 41, +116,107,100,106, 32, 2, 80, 65,219,163, 51,244,178, 57, 20, 12,122,212, 17,197, 95,205,174, 50, 54,162, 20,193,177,148,254,230, +134, 86, 57,102, 11, 50,134,214,143, 82, 2, 31,100, 28,186,180,213, 64, 20,219, 15, 85,170,140,218,128, 97,216,196, 1, 49, 58, +126, 65,221, 68,112,195, 32,157, 93, 28,156, 9, 96,212, 58, 34,255,191, 84,211,112, 13,174, 73, 36,170,238,146, 4,132,176, 81, +171, 98, 10,100,239, 74, 87,218,122,195, 56, 38, 75,157,219,159, 77, 88,103,249,192,106,149, 46,124, 93,139, 89,145,228,114,163, +138,116, 89,208, 90,177,203, 66, 71, 90,183, 55, 7,219,171,233,133, 84,233, 6,232,156,114,232, 4,192, 51,176,197,178,156,187, +170, 41,183,177,186,170,105,123,111,244,150,203,222,112,140,145, 15,113,178,135,221, 71,143,253,217, 57,210,144, 48, 78, 59, 62, +200,129,196, 39,103, 29,130,190, 56,178,195, 17,236,110, 94,102,180,186,152,136, 76, 70,252,167,124,129,106,149,185,143,201,192, + 16,206, 7,156,223,251, 52,214,181,226,252,124,196,221,123,151,120,255,221,119,176,206,179, 92,222, 44,202, 90,109,188,208,169, +248,109,219,228,196, 66,139,224, 54,208,140, 78, 31, 32,118,181,117,153,181, 52,129, 66,169,117,207,174, 46, 10, 87,130,249,138, +109,215, 90,164, 75, 23, 63,185, 28,188, 57,103,203,110, 87,171,165, 71, 20,209,162, 3, 39, 65,193,242,190, 55,143,121, 67,164, +224, 9, 8,240, 67, 50,242,158, 67, 39, 14, 83,104, 87, 74, 91, 84, 76,176,254,188, 85,187,241,238,163,103,120,239,131,140,255, +244,247,207,224, 99, 5,174, 46,225,206, 46,177, 62,155,177, 54,224,189,199, 71,164,224,241,210,213,132,233,222,125,209,158,112, + 61,213, 47,174,208,198,189, 80,222,196, 39,136,118,156, 81,127,243, 27,132, 96, 16, 79,192, 69, 17,136, 6,199,148, 43, 15, 71, +251, 38,178,236,149,207,199, 17, 87, 83, 68,123,252, 16,241,222, 61,184,152,128, 34,127, 15,122, 70, 15, 9,207, 14, 43,206,206, + 34, 15, 84,210,196, 84, 27,211, 36,252,167,148,130,200,119,178,172, 11,174,215, 5,187,253,132, 24, 35,230,227,145, 43, 19,158, +110,112,204,107, 16,144,137,226, 73,199,113, 68, 8, 35,137,126,213, 58, 40,237,114,212,194,214,186,120,202, 43, 97, 28,165, 84, +203, 87, 47,185,129, 57,147, 39, 23,185, 51,117,118,224, 14,178, 80,101, 47,128,156,138, 33,116, 62, 39,193,212,218, 29, 27,177, + 78, 5,111, 34, 16, 13,178, 6,211, 41,160,141, 73,197,114, 41, 34,189, 17,190, 54,196, 88,177,142, 51, 74,185,230,249, 74,219, + 28,125,231, 49,142,152,166, 9,187,253,153, 97,176,213,117, 36,152,109, 25,107, 59, 47, 62,237,117, 37,110,181,202, 68,174, 51, + 20,166, 50,185, 81, 45,122,219, 74, 16,156,134, 20, 19,227,110,107,164,112,162, 93, 9,198, 45, 87, 17, 45,168, 73,201, 69,244, + 61,162,113, 58, 33,134, 14, 9,206, 5, 54, 78, 34,134,171, 44, 70,182, 60,143,102,123,245, 16, 3, 82, 79, 27, 98,183,107,158, +130,156, 65, 64, 23,156,176,126,214,181,114,245,152,233, 49,119,155, 85,152,206, 29, 15, 57,219,108,225, 76,175,190,103, 99, 42, + 82,128,109, 34,224, 57, 45, 82, 65,164, 68,230, 10,171,194, 71,209,129, 24,114, 38,146,213,223, 6,212,186,210, 58,167, 94,117, +177, 14,203, 93, 88, 72,105,151,245,133, 68,194,118,179, 32,154, 91, 76,119,238,142, 69, 0, 5,167, 27, 27,126,107, 46, 58,215, + 43,157, 2,197,101, 89, 57, 89,226, 29,160,228,205,225,164,216,206, 50, 25,215,203,255, 52, 48, 45, 90,154,153,177,211,171,236, + 99,205,255,185,165,199,117,133,130, 56,111,222, 72, 77,137,233, 93,132, 50,128,195,124, 92, 49,142, 9,243,178, 10,167,184, 73, + 88, 61,200, 52, 86, 66,145,122, 33,107,107,152,166,145, 20,177,102,222, 59,185,128, 61, 21,171, 2, 34, 8, 76,126,106,173,193, + 87, 25,129,245,190,229,103,167,129,112, 11, 66,114,164,218,238,232, 77,188, 83, 34, 68,147, 2, 64,193, 55,135,219,163, 76, 1, + 98,192, 58, 47,232, 97, 75, 48,107,173, 11, 97,173,111, 97, 30,189,119,204,199,213, 14,128,154, 11,161, 45,236, 26,213,226,193, + 67, 37,240,229,170,154, 78,232, 3,125,209,205, 42, 84,137,255,219,144,163,222,109,161, 16,162,125,138,104,165, 34, 80,151, 48, + 77,131,248, 84, 9,173,112,124, 75, 29, 54,178,157,128,119,188,141,143,123,235,162,136,173,197,252,168,189, 53,185,184,217,137, +117, 84,243,158,106,133, 29,147,124, 61, 62,237,145,246, 47, 32,120,135,179,179, 17,251,157,195,223,188,245, 38, 97, 45,204, 64, +142, 17,235,146, 81, 74,197, 48, 73,166,120, 8, 78,246,103, 93,189,252,234, 63,175, 40,153,234, 97, 86,245,121, 61, 73,148, 58, +205, 37, 86,223, 48, 3,165,165, 67,231,200,189, 86, 50,179, 55, 76,175,162,109,119,187, 29,114, 41,228,124,147, 56,150, 43,188, + 69, 82,202,165, 21, 67, 64,227, 8, 56, 14,113,139,202,244,114,112, 28,111,111,205,238,148, 41,250,105,204,111, 86, 15,109,224, + 8, 76,196,126, 64, 28, 68,169,253,228,151,215,248,250,171, 47, 99,246, 1, 57, 78,112, 45, 96,184,185, 65, 15,226,133,159, 82, +192,241,184,162,246,142,101,201,200,243,140, 86, 50, 14,207,110,112,221, 60, 94,124, 81,136,105,205,121,244,245,136,254,254, 47, +224,123,177,213,150,186, 58,162, 87, 66, 96, 64,184,220,161, 92,223,152, 72,232,152, 27, 11,157,128,225,229, 87, 16,247,123, 75, +223, 42,237, 8,112,130, 49,207, 25,227, 62,144,245, 79,101, 56,187,146,234,156, 36, 93,161, 97,173,171, 93, 72,206,117, 44,243, +140, 54, 12,240, 14, 56, 30,212, 74, 40,251,194, 56, 4, 90, 17,121,126, 0, 70,169, 84,188,114,173,178, 2, 89,151,133, 77,128, + 88,191,114, 23,194, 91, 39, 9, 38,156,128,178, 90, 7, 90, 46,150,254,165,221,178, 42,192, 55,161, 90,160,173, 76,126,191,132, + 62, 21, 76,123, 15, 31,129, 50, 23,248, 24,249,253,116,172,235,102,229,148,149,141, 71, 41, 43,179, 38,202,115,152, 99, 64, 68, +170,126, 12,200,235,140, 97,220, 83,164,182,156, 8,157, 26,134, 65,112,180,103,231, 23,194,105, 63,205, 35,128, 80,229,212, 22, + 38,239,106, 51,161,159,194, 93, 2,137,107,150,212, 70,171,220,225,150,159, 25, 19, 39,107,115, 88, 41, 44, 4, 9,120, 82,160, +121,120,159,236, 66,145,117, 7,167,158, 67, 98,135, 46, 83,166, 49, 70,134,196, 4,140,211,200,181,134,112, 47,244,140, 26,167, +209,254,252, 82, 10,208,168, 70, 15, 30,190,138,182,162,150,138,228, 3,121,240, 21,165, 22, 75,139,243,102,155,109, 40,235, 2, +244, 98, 98, 55, 5,113,121,167, 43, 67,103,130,176,198,201,171,118,227,114,161,111,147, 25, 69,140,147,182, 33,207,182,134,189, +116,106,100,168, 15,210,108,151,222, 10,124,100,156,244,113,165, 59,198,111,164, 79,234,167, 36, 30, 53,160,180,110, 60, 3,249, +187,170,116,222,108,218,156, 89,184,101, 69,208,153,176,102,105,123, 44,250, 55,106,109,103, 3,188, 26,137,180,214,138,101,153, +217, 4, 39, 11,233,241, 20,154,107,232,148,211,209, 0,179, 54, 34,200,254,245,220,235, 8,223, 90, 50, 98, 91,238, 20, 91,121, +178,214,229, 33,146,196,159, 70, 90, 16,204,179, 30,200,207,214, 48,149,148, 18,188,243, 66, 49,170, 13,235,186, 98,208,248, 83, + 10, 4,206,206, 6,179, 61, 84,190,240, 58,234, 82,248, 76,136, 98, 83,147,138,180,216, 7,162,163, 51,231, 9,183,161,119, 60, + 4, 17,240, 69, 23,176,178, 74, 28, 70,185,248,114,145,252,220,186,200,165, 26, 83,192,157,187,151,112,174,227,201,227,107, 90, +211, 10,213,193, 30,173,174, 8, 94, 60,203, 2,103, 1,179,220,101,151,191, 44, 11,122, 8, 72,105,176, 7, 60,132, 77,221, 47, +187,121,152,186, 85, 59,237, 86,189, 21,156, 64, 35,141,200, 26,249,226, 88, 0, 0, 32, 0, 73, 68, 65, 84,109,227,225, 24,128, + 70,216,149,170, 48,185, 83, 30,167, 17,105, 72, 34,178,225, 47, 8,244,121, 91, 92,110,221,208,177, 90, 33,175,121,177,148, 53, +199, 61, 79, 59, 69,115,118,241,133,138,218, 55, 81,212,232,204,247, 59, 93,125,130, 16,150,136,187,247,175,240,222,219,111,226, +246,250,153,117, 28, 37, 23, 11,187, 8,222, 97,157, 15,178,155, 59,137, 77,236,246,119, 87,227, 36,195,121,234, 11, 50,139,174, + 98,118, 53, 61, 64, 85,146, 37, 35,210,184,209,149,188,116, 15, 10, 6, 81,230,127, 28, 71, 43, 58,199, 81, 52, 26,228,240,200, +158, 46, 70, 68,230, 29, 59, 30,108, 91, 55,228,108, 63, 85, 9, 18,242,222, 97,237, 13,189, 70, 94,244,180, 24,149, 44,123,176, + 90,144,210,192,159, 97,160,123, 99,198,199,239, 31,240,245,215, 94,197,203,111,188, 6,255,226,203,192,178,202,232,219,121,185, + 8, 91,199,211,219, 5, 41,120,228,219, 3, 60, 83,174,150, 53,227, 47,223,254, 16,223,254,225,207,240,223,253,243,127, 36,130, +194, 86,177,254,230, 3,248,227, 12,151, 0,248,200,208,137,142, 66,112, 78,109, 29,195,254, 28,238,193,171, 64,126, 31,235,245, + 17, 62, 38, 60,165, 35,229,165, 87, 94, 64, 79,137,147,153, 6, 31, 7,233, 54, 0, 44,115,198,245,237,130,179,125,183,239, 89, + 52, 26,213,224, 33,181,139,104, 22,168,134,243,212,189,182, 94, 80,243,113,193, 48, 80,208, 24, 35,214,121,181, 95,187, 28, 15, +242,231,122,143,188, 74, 17,144,131,184, 9, 74, 94,140, 46,214, 90,160,163, 97, 36,104, 67, 68, 69,114,209,110, 98,218,198,174, +212,135,190, 89,217,136, 25, 22,113,221, 32,221,103, 20,193,104, 72, 56,217,241,118,179, 49,169,110,165, 86,105, 16,114,150,231, + 32,165, 36,246, 92, 98, 71,117,237,163,234,229,245,184, 98, 10, 1,165,138,215,120,154,118,168, 53,227,233,227,153,123,126,121, +184,134,113,135,253,254, 12,103, 23,231,212, 48,129,152,104,153, 44, 42,146, 84,199,173,173,111, 64, 44,121, 46,219, 38, 66, 85, +146, 25,128,195,141,228,210,235, 8, 33,231,202,125,117,216,146,228, 98,226,101,189,193, 87, 20, 60, 35, 74,113, 2, 78, 92, 64, + 26, 7,158, 97, 81, 82, 2,121, 81, 6, 10,201,160,174, 5, 78, 75, 68, 64, 11, 19, 90,151,210,158, 11, 97, 10,222, 99,158, 23, + 34, 98, 87,163, 71, 10,191,188,160,215,138,146,103,123,142,184, 54,151,100, 75,134,165,200, 5,201,220,134, 46,169,151, 58, 9, +113,180, 0, 75, 58,166,179,201, 85,239,155, 91, 71,211, 21, 85,175,238, 67,132,227,228, 49,196,136,178,102,248,148,184, 18, 85, + 30,129,183, 8, 95, 37, 28,202,138, 47,152,208, 78,179,228, 69,136,183,185,193,244,159,206, 5,254,247,102, 44, 7,241,175, 7, + 54, 43,167,170,251,126,130,218, 85,184,150,183,233,109,109, 21, 81, 39, 95, 85,177,236,218,120, 21,226,180, 43, 82,140, 28, 94, +241,224, 23,146, 92, 18,197, 40,171,104, 31, 58,163, 37, 55, 85,166, 1,212,232, 53, 85,171,212,198,201, 15, 6,246,112,222,139, + 39, 49,203,203,151,215,204, 81,143,228, 78, 47,203,138,148, 18, 85,227, 17, 46,120,219, 73, 86,122,193,243, 90,120,240, 87,192, +117, 12, 41,146,189, 94,177,219, 15, 38,218, 59,222, 46,136,105,203,189,213, 56,207,200,238, 94,242,212,163, 20, 6,206,225,252, +226, 12,243, 44,233,106,243,241, 40,164, 48, 66,250, 59,197, 28, 25,157,170,223,108, 49,138, 58,154, 87,116, 32,152,199, 45, 5, +205, 96, 69, 16, 76, 49, 41, 63, 47, 29, 41,201,248,100, 35, 81, 5, 31,208,181,146,118, 32,206,208, 33,142,193, 20,222,158, 23, +244, 48, 37,140, 67, 18, 2,149, 35,213,200, 75,225,164,157,172,173, 35,214, 85,246,209,190, 99, 57, 30,101,236,222, 42, 71,202, +219, 88, 91, 20,195,178,163,212,125, 77, 43,154,137, 44, 35, 65,132, 9,227,249,125,212,218,112,118, 62, 33,250,140,119,127,252, + 35, 99,198,151,117, 38,101,140, 59, 83,122,110, 37, 39,185,155,197, 69,242,170, 87,196,152,144,215, 89, 34, 3,153,182,134, 16, +104,249, 32,185,137, 72,216,196, 78,204,249, 64,213,174, 50,145,189, 41,222,189,217,104,128,144, 6,235, 8,163, 30, 56, 44,137, + 69,232,179,219,172,155,220,165,107, 17,145, 43, 61,214,174,217,244, 5, 68,109,206,237, 22,227, 56, 89,215,163, 7,164, 56, 42, +146,237, 16,215, 85, 58,158,103,143, 22,188,122,231,101,188,244, 59, 95, 2,246, 59,100,120,184, 16, 16,210, 30, 46, 38,204, 43, +173,120, 73,220, 5, 79,110, 23,219, 9,250,105,194,107,159,124,128,223,207, 29, 88,142,232, 45,160, 35,192,173, 51,252,160,238, +128, 66,237, 9,237, 54,228,153,247,204,169, 72,147,131,165,118,224,167,143, 14, 24,135,132, 23, 38,143,128, 14, 87, 51,194, 52, +193, 59, 96, 72, 30,115, 76, 72,195,128,227,188,224,140,226,201,188,102, 84,118, 95,146, 52,213,205,142, 36,140,132,198,125,167, + 55, 38, 1,136, 87,213,181,157,121,112, 25,203,234, 67,192,202,136,223,117,145, 68, 68,231,129,117,174, 36,243, 9, 26, 86,133, + 85,165,108, 98, 52, 40,178,217,117,227,168,251, 32,130,167,198,115,137,170, 33,187,172,115,206, 86,244, 67,227, 78,163, 88,214, +116, 10,217,185,203,244, 81, 70,170,135,195, 34,239, 55, 5, 99,222, 59, 44,115, 53,152, 85,240,219,184, 83, 44,177, 51,166,105, + 39, 9,151, 41, 98,191, 63,195,186, 28,113, 56, 60, 3, 0,140,227,132,253,254, 12, 23, 87,151, 38,136,211,181, 92, 12,209, 64, + 50,250,174,136,230, 70,211,191,152, 5,193,162, 61,166, 68,152, 75,198,241, 56, 91, 51,164,236,134, 82, 86,251,218,228,207,141, +220,165, 71, 68,238,146,193,159,133,126, 45,206,123, 68, 42,172,135, 81, 8,119,167, 9,135, 33,198, 19,219,164, 92,112, 67, 10, +108, 14, 69,196, 42, 93,172,186,158,154, 9,248, 42, 5,175,130,132, 22,197,124, 94,142,146,102, 88, 50, 58,177,192, 65,228,238, +155,158, 8, 85, 66, 98, 56, 77,210, 29,178,212,142,142,140,130, 13,201,235, 44, 50, 74, 82,249,108,253, 81, 53,198,186, 24,158, +213,199,128, 97,220, 25, 80,103,152, 38,251,181,158,216,214,231, 66,172,160, 54,181, 45, 70,186,107,116, 43,163, 87,181,104, 56, + 45, 0,236,130,199, 70, 28, 52,218,160, 66,188, 26,172, 0,232, 39,147, 6,243,204,119,157, 58, 57,158, 71,222,180, 63, 33,108, +221,186,231,212,217, 57,143, 40, 66,133,110, 25,192,190, 87,172,185, 82, 21,232, 56,106,207, 39,182, 16, 37,217,176, 74, 96,119, +229, 84,176,196,111,192,187, 96, 57,188, 74,134,242, 1, 54, 94, 81,175,186,238,129, 20, 16, 2, 42,163, 83, 74,194, 23,230, 94, + 71,132,117,219,174, 75, 85,224,122,129,245,222,108,181, 86,153,104, 20,130, 99,198,239,182, 70,104,205, 89, 58, 91,239, 29,169, + 5, 28,111, 86,226, 93, 11, 5, 48, 29, 55,215, 55,172, 4,133,103,157,115, 49,101,234,186, 40, 82,148, 34, 32, 22, 48, 30,120, + 46, 97,201, 57, 37,240,117,219, 55, 13, 41, 26, 72,192, 49, 69,173,179,115,180,232, 64, 3, 82, 53, 83,116,150,218,176,219,143, + 84, 13,115,103,143,198, 48, 4,221,211,115, 92,221, 42,150, 89,146,175,188,151, 11,233,246,217, 19,174, 16, 4, 41,219, 91,101, +215,238, 76,149, 44,153,227,145, 2,168, 0,128, 47,116,235,216,221,253,180, 32, 67,199,136,123,247, 47,241,243,159,252, 0, 37, +175,204,115,119,112, 49,241,231,209, 79,188,172,162, 10, 13,209, 91,138,154,230,190,235,136,169,247,198, 60,106,190,140,221,115, + 50, 32,138,220, 13, 64, 20,141,118,232,177, 41,212,141,217,239,165, 35,225, 60, 78, 52, 27,124,225, 84,249, 30,211,176,173, 9, +194, 38,154, 3, 68, 65, 47, 22,194,194,139,200, 1,173,161, 48, 49,175, 80,172,116,172, 5,195, 48,162,205,178,227, 87, 27,229, +178,244,147,110,160, 35, 23,143,158, 47,241,197,111,254, 14,252, 56,202, 1,218,128, 52, 77, 76,253,170,120,244,248, 86,138, 32, +122,175,127,254,243,143,240,141,175, 61,129, 59,191,128,115, 14,175, 62,184,194,203, 47, 94, 97,157, 23,120, 39,121, 2,254,238, + 93,244,103,143,209, 15,139,224,115, 1,140,209, 51,116,168, 35, 57, 15,148,134,118,115,139, 94, 43,226,221, 11, 44,211, 5, 62, + 60,190,141, 16, 60, 94,185,119,142,246,244, 49,194,197, 21,106,172,104,222,163,187,128, 30, 28,110,142, 29,143,159,221,224, 69, + 92, 80,187, 0,142,198,155, 65, 93, 42,187,177, 20,165, 51, 27,166,145, 83, 18, 94,178,116, 74,172,171, 96,153,165, 91, 79,104, +181, 32,141, 35,128, 70, 23,200, 22,239, 41,232,231,100,151, 12, 36,244,140,207, 96,181,142, 5,236, 96,251, 73,106, 94,169, 5, +105,156,224, 3, 51, 5,216, 69,233,197, 37, 7, 57, 15, 99,238,247, 5,231,186, 57, 5, 34,167,110,189, 50, 84, 6, 27, 38, 57, + 37, 17,116,169, 32, 75,131, 60,204,121,209, 36,199,193,251, 64,175,189,140, 67,167,221, 25, 74, 94, 81,234,138, 97,148, 61,186, +247,222, 48,194, 62, 68,218,113, 71, 22, 47,197, 46, 19,231, 61,208, 68,219,164,207,116,109,221, 62,163,170, 60, 12,102,150, 43, + 13,113, 93, 23, 35, 48,234,101,174,251,219, 16,146,137, 12, 1,135,105, 26, 40, 88, 21,254,250, 48,136, 5,118, 24, 73,227, 12, + 50,181, 21, 16,152, 55,173, 72, 96,206,133,144, 52, 59, 71,254,178, 90,148, 21,192, 54,233,210,168,234,214, 43, 27,183,133, 19, +142, 32, 95,119,145,156,133,192,241, 56,168,124, 23,112, 76, 55, 18,164,196,255, 54,152,168,219, 57,106, 44,194,230, 25,247,155, +172, 66,217, 20,170, 18,223,198,241,160,118, 38, 89,172,179,106, 38, 78, 69,107,122,246, 74,151,236, 45,119,189,243, 60,217,184, +236,221,172,219, 22,211,234,157, 5,113,105,130,250,115,220,120,203, 35,104,112, 62, 73, 20, 12,207,237, 70, 78,139,247, 17, 13, +197,186,120,231, 52,238, 87,108,225,170, 85,171,181, 91,252,118, 87, 3, 76,111,136,173,109, 29,118,175, 29, 69,129, 50, 53,195, +117, 66, 17,152,182,182,174,217,184,190, 10, 32,208,180,170, 90, 26, 47,109, 7,201,126,103, 62, 53, 47,100,197,220,117,219, 47, + 87,184,193, 51, 68,192,243,101,237,182,167,108, 93,196, 54,109,229, 55,221,181,210,151, 15,168,201,111,147,140,116,150,232,145, + 29, 79, 94, 11,118,103,145,246, 42,111,168, 89,181, 75, 1,162, 92,175, 28, 85, 45,139, 18,224,138,249,219, 99, 10,204, 33,102, +150, 56,111, 90, 85,230,162,117,219, 77, 57, 64,118, 60,158,182, 17, 45,144, 20, 11, 25, 37, 68, 6, 65, 80,126,138,137, 45,165, + 32, 48,154,181, 41,218,211, 65, 4, 78, 94,178,197, 83,146, 47, 56,141, 73,148,242,189,161,148, 5,193, 71, 98,122, 43, 2, 21, +246,138, 92,172, 69,188,189,206,129,223,219, 1,228, 94,200,131,210, 96, 35, 68,157, 28,120,175,213, 34,137, 97,105,144,206,208, +121,196,221, 11, 72,103, 47,194, 59,224,234,206, 25, 98,200,248,205,207,223,230, 67, 4, 94,204, 20,146,148, 66,143,184,208,219, +164, 88,113,182, 98,144, 76,112,165,250, 17, 85,203,188,108, 9,193, 73,219, 10,161, 53,171, 76, 79,131,130,122,239,116, 98,200, +190, 30, 78, 34, 32, 59, 39, 54,206,188,165,242,191,249,184, 97, 63,245,251,116, 54,114, 85,170,220, 74,201,170,188,112,226,102, + 40,180,178,116, 75,150,130,243, 88,151,102,221,253,178, 44,219,216,222,235, 5, 18,112,253, 40,224,239,127,243,247, 4,122, 20, + 2, 92,111,168,101, 97, 88,144,195,188, 44,248,179,239,191, 9,133,131,123,239,241,203,223, 94,227,248,236, 6,187,105,148, 92, +119,186, 50,128,142,114,115,131,190,204,200, 31,124, 0,248, 0, 87, 42,133, 56, 29,107,237, 24, 61, 53, 8,154,152,117,156, 49, +125,238, 13,248,221,132, 31,124,231, 77,212, 14, 12, 41,226, 19,191,251, 57,132,203, 61, 16,100,140, 92,214,140, 86, 37,194,248, +250,120,131,181, 44,200,101,130,207, 78, 60,239,218, 1,195, 89, 55,182,121,177,229,179,179, 41,140, 33,211,194, 9,154,147,251, + 66,105, 43, 56,174,141, 92,115,201,217,146, 73, 73,243, 33, 26, 51,219, 57,111,133,161,115,162, 65, 9, 49,160,173,213, 84,217, +185,213,109, 34,208,157,132,187, 48, 93,175,219,243, 35,121, 15,202,203,214,139, 77,237,110,195,176,237,232,157,247,104, 37, 83, +217, 47,226,209,198, 88,100, 69, 19,215,162, 25, 18, 30, 61, 55, 19,105, 30, 15, 7, 92,221,185,195,181,219,128, 28, 87, 76,187, + 51,180, 54,224,236,252,130, 34,204, 96, 19,162,222,157,141,225,117, 84,172,211,192,117,201,156,222, 84,243,208, 55,142,233, 15, +183, 51,214, 92, 12, 2, 86,171, 76,169, 50, 81,176,142,142, 37, 79, 22,123,136, 9,105, 72,240, 46,216, 69, 40,142,152, 38,226, +198,148, 12, 89,235,131, 76, 74,210, 16,217,217, 11,199,161,228,138,204,203, 58, 70,209, 44,121, 47,228, 76,160, 97, 94, 51,224, + 58,230,227, 81,206,117,231, 44,227, 99,229,100, 86,222,167,106,239,145,186, 16,212,237,163, 88, 99,199,192,156,238, 28,156, 50, + 36, 66,223,210,245,200, 10,209, 40, 82,109, 46,123,231,165, 91, 79, 51, 48,164, 10,171, 6, 9,146,117,142,210, 38,211, 48, 80, + 4, 39,204, 14, 79,234,169, 93,226,132, 36,169,223, 92,160, 73,141,252,170,211,112,171,254, 92,247,173, 54, 32,239, 2,116,113, + 72, 58,199, 73,184, 21, 51,225,187,183, 4, 75, 45, 60,236, 50,167,243,199, 84,248,174, 99,158, 15, 76,188, 27,184,131,207, 54, +105, 81,225, 93,244, 54,122, 23,251,202, 48,141, 84,160, 75,114, 82,140,226, 95,238,173, 81,177, 9,190,144,218,221,121,120, 38, + 31, 41, 10, 79,255,125,235, 64,173, 14,105, 8, 28,219,108, 1, 13,173,117,233, 64, 72,121, 26,134,168, 42,127,169,142,107, 39, + 45,174,218,139,172,135,166, 38,197,213, 69,254, 30, 87,156,253,125,178,215,246,198,107,214,177, 95,229, 74,161,243,146, 62,222, +206,155, 32,171, 85, 6, 4,136,170, 28,189,161,172,178, 31, 86, 70,120, 91, 5, 46,163, 73,104,170, 18,239,167, 49,162, 58,246, +161, 82, 18,157,176,149, 38,123, 32,233,194, 59, 74,151,188,114,129,199,109,228, 36,157,190, 8, 76, 78, 30,242,154,133,194, 20, +131, 71, 26,130,140,154,233,217,172, 37, 19,119, 41,213, 95,240,226, 52, 80,254,118,205, 43,202, 50,147,227, 76, 0, 8,147,127, + 53,141,168,210,111,153, 56, 26,243, 33, 81,233,206,212,184, 56,226,234,229, 47,162, 54, 96,127, 57,226,238,253, 11,252,244,175, +191, 71,165,106, 19,255, 63,161, 50,153,161, 2, 26,166,208,171, 80,246,132,134, 36,246, 53,101, 33, 58, 78, 20,164,171, 78,128, +226, 42,153, 0,166,225, 47, 49,170, 81,203, 25,182, 52, 70,137,106,140, 62,108,168, 71, 34,126, 7, 83,169,107,148,163,179,130, +204,161, 33, 70, 66,120,208,129, 70,129, 35, 9, 86,162,110, 46, 28,101,174,214,137,128, 49,162,202,224,246, 70,225, 74, 38,164, + 25,134, 36,194,163,214,241,232,227,138, 47,125,254,139,120,229,181, 7, 40,243, 44, 22, 30, 39, 71,132,226,110,255,226, 47,222, +193,207,222,251,173,105,182, 99,111,120,122,155,241, 87,223,127, 11, 95,251,242,171,136, 47,221,151,200,221, 14,212,155, 3,240, +155,247, 17,122, 67,109,128,207, 69, 62, 63,239, 17, 18,215, 17,206, 35, 6, 57,208,251, 56, 34,125,226, 21, 52,239,112,115, 61, +227,207,127,252, 30, 98, 12,248,196,131, 43,156,159,203,216, 81, 97,250, 18,155,156, 16,207,207,112,243,211, 15, 48,164,104,103, +129,135,176, 13, 74,165,136,150,142, 22, 9,176,144,203,168, 46,213,214, 46, 27, 39, 66, 45, 87,242, 46,170,127,222, 19,246, 34, + 7,124, 70,107, 43,166,221,132, 14, 41, 62,133,255, 30,237,157,146,115, 66, 46, 94,193, 59,207, 82, 36, 54, 78, 3,201, 23, 55, + 71,137,121, 19,156,112,181,243, 44,127,191,238, 63,157,183,164, 73,213,229, 52, 69,117,118,152,146,188,179,155, 15, 1, 8,209, + 33, 31,138,193,160,182,221,113, 53,103,128, 82, 16,151,229,136,221,254, 12,232, 30,251,253, 30,193,123,248, 0,236,246, 98, 95, +243,126,115,101,140,187,105, 91, 93,114, 93,133, 34, 7,232, 56, 13, 40, 89, 64, 56,250,123,156, 83, 16, 87,182,207,106,158, 23, +230, 81, 44, 38, 52, 21,218, 88,226, 5,226,204,137, 80, 93,181,142,125, 24,101,213, 34,151,249,198,200, 71,239,216,237, 71,211, + 67,233, 69,234,188, 52, 45,165, 52,228,163,116,219,215,207,142, 6,142,169,181, 72, 56, 23, 69,184,193, 98, 97, 35,167, 94, 91, +156,106,111, 13,185,108, 34, 99, 43,114, 20,158,194, 70, 72, 5,103, 29,133,107, 10,143,214, 43,130, 11, 54, 33, 85,167, 15, 84, + 56,200, 34,221, 17,119, 13, 50,228, 37, 6, 91, 86,164,211,217, 37,179, 5, 28,163, 78, 43,139,127, 13,227,169,114, 95, 52, 90, +110,241,252,100, 70, 39, 29,142, 23,177,174,150,106,237, 34, 92, 85,115,123,239,164,204, 61, 63,154,215,187, 79, 87, 62, 50,153, +137, 0,167,185, 91, 1, 41,171, 37, 84,253,239, 13,142,103,144,234,190,148,208, 87, 74, 35,161, 81, 46,246,232,122, 19,225,129, + 99,215,205,195, 53,112,175, 42, 7, 93,197, 56, 73, 68, 94,201, 84,162, 71,226, 78,157, 67,173,126, 75,238,105,250,195,106, 4, + 70,200, 97, 63,142, 35,173,155,225,249, 49,189, 86,218, 76,128, 67,174,162, 94, 79, 1,153,130,180,224, 55,102,113,107, 2,140, +145, 8, 64,143,227, 49, 99, 28,101, 44, 5,250,151,229,128,245, 70,147, 26, 71, 9, 88,105,185, 96, 89, 86, 28, 15, 7,217,241, +179, 48,169, 57, 91,130, 84,201, 98, 81, 18, 76,102, 55, 53, 98, 39,191, 89, 70,201,110,203, 21,143,218,145, 83, 97,206,180,181, + 90, 42,134,193, 97, 93,178,140,186,155, 88,168,214,121,133,247,224,218, 66, 70, 41, 62,108,211, 4,101, 43,131,105, 71,195, 40, + 85,115, 26,162,225, 82,117,236, 23,130,162,111,165,184, 40,244,173,246, 38, 16,133,229,120, 96,199,228,184,131,118, 38,118,145, +206,181, 98, 72,147, 85,156,162, 8,149, 49,156,129, 25,134,187,112,195, 29,248,218,112,118,190,131,111,183,248,224,231,239,152, + 56,175, 45,178,183, 55,146, 26, 59,180,154, 87, 50,180, 69, 89,110, 38,118,118, 59,232,149,110,135,184,225, 21,109, 69, 34,227, +220, 24,189, 60,168,156,108,196, 52,112, 29,147,172,144, 82,246,186,217,246,156, 38,170, 37, 75,116,219,146,153, 40,214,227,184, + 82, 20,235, 84,220,215,188,101, 31,215, 76,221, 65, 55,171, 78, 34, 71,255,212,227,139,222, 48,142,227, 9,207,187, 97, 62,116, +164,114,134,207,126,234, 5,212,117,209,250,156,153,210,210, 37, 62,126,122,139,255,248,189, 55,101, 76,215, 58,134,224,240,223, +252,241, 23,240,191,125,231, 29,252,187, 31,255, 10,159,189,191,195,221,243, 61,112,117, 71,138,192,195, 13, 80, 42, 48,142, 24, +175, 46,208,142, 51,218,113, 69, 28,165,200,139, 67, 64,175,194, 7,240, 99, 66,250,228,107,112,204,138,255,187, 55,127,129,135, + 79, 15, 40,181,225,139,159,125, 0, 23, 19,124,175, 6,240,112, 46, 96,184, 56, 71,237, 29, 31,252,230, 17, 62,251,233, 87, 81, +251, 99,160, 74,135,164, 90, 24,225, 5, 84, 91,135,152,243,197,203,180,226,226,242,156,144, 20,254, 60,216, 69, 62,199,216,166, + 98, 61, 4,143, 74,148,112, 41,149, 23, 70,198,178,136, 39, 61,198,136,117, 93,105, 67,114,182,215, 86,224,139,163, 61, 84, 46, + 97,181,182, 58,218, 31,229, 18,247,209, 99,152,188,117, 66, 33, 6,212, 6,243,105, 59,174,233,210,232,133,128,217,229,235, 20, +203, 28,125,195,126,179,103,174, 89, 82, 12, 29, 17,197, 49, 6, 1, 98, 81,144, 39,142,152,163, 92,150, 65,198,216,206,203, 4, + 41, 4,103, 46,151,148, 34, 71,218,142, 14, 32, 7, 84,153, 8,148,156,145,198,100, 93,185,106, 75, 66,144, 70,105,153, 23, 91, + 31,109,239,146, 20,241,181,201,229, 36, 2, 53, 79, 66,154, 60,171,203,154, 49, 12, 9,195, 48, 98,156, 38,164, 52,112, 21, 34, + 86,220,152, 18,198, 73,247,233, 73,156, 66,156,154,138,165,183, 88,174,251,186,172,116,178,208,249,193,159,161, 93,240,165,162, + 58, 25,149, 47,243,108,240, 21, 79, 12,182,216,219, 58, 3, 85,156,173, 82,117, 90, 37,218,130,245, 36,167,222,157,196,155,246, +173, 97,169,213,166,162,114,142,202,132, 6,158, 57,232,100, 79,200, 58, 71,206,202,221,254,194, 70,240, 42,214,117, 0, 90,203, +230, 38, 16, 24, 76,149,105, 18, 33, 66,178, 14,177, 91,203, 28, 57, 50, 74,167, 69,205,235,162,157,161, 48,206,211,218,173, 13, + 73, 55, 24,141,131, 19, 76,173, 11, 38,166, 83, 82,161,138,252,132, 7,179,110,182,186,214,224, 66,148,142, 28, 10,213,146, 41, +151, 48, 52,152,149,225, 61, 98,229, 72, 81, 48,161, 30, 46,136,112,165,181,134,192, 12,110, 31,100,166,175, 30,116,221,179,234, + 56, 74, 8, 60, 14,109,110, 38,158,144,177,151,167,130,209,111,227,214, 78,101,164,146,148,186,238,173,202,137, 42,149,240, 26, +223,183,124,116,215, 57,174, 11, 40, 69, 70,218,243,177, 96,127, 54,178, 74,115, 38,126,209, 67,118, 24,252,166,140,102,100,146, +118,152,203,113, 62, 49,237,119,250,123, 29,230, 69,186,183, 82, 42, 43, 80,237, 72,155, 78, 64, 76, 36, 7,200,132, 66,172,126, +234, 57,231,232,175, 22, 34, 18,219, 22,120, 95, 10,119,138,133, 4,165, 78, 49, 76, 51, 70,180,122, 97,161,252, 98,205, 66,231, +223,229,221, 73, 82, 90,173,240,157,157, 16, 11, 10,181,169,101, 22, 92,157, 93,205, 48,122, 3,186,232,239,143, 12,243,208,203, +212, 7, 73, 10, 50,128, 10, 60,206,238,191,129, 90, 26,246,103, 3,238,189,120,129,119,126,240,239,165, 35, 45,153,187, 68,111, + 59, 34, 81,166,242,226,236,186,167,118,220, 1,121, 11,229, 64, 55, 11, 51, 17,186,222,246, 96,202, 54, 22,177,161,124, 94, 33, + 68, 3,131,216, 56,215,235,136,204,219,244,194, 83,180,225,135,141,196,167,187, 97,199,112,136, 90, 86,142,215, 42, 74,209,103, +160,146, 64,119,106, 67,113,246, 94, 32,240,197,118,222,184,241,137,151, 67,136,220,117, 51,174,245,246,105,197,183,190,254, 6, +198,216, 81,111, 30, 3,113,196,120,126, 97,246, 30,180,140,111,127,231,111,240,219, 71,215,102, 57, 42,181,227,234,108,196,223, +251,252, 3,252,139,255,248, 54,254,252,157,143,241, 15,239, 94, 74,145,229, 60, 92, 89, 49,220,189,196,238,149, 87,144, 99, 68, +155, 23,244, 52, 0,143, 62, 6,142,183,232, 49,194,237, 6,184,251, 47,194,143, 3,192,209,220,237,237,130,239,254,213, 47,208, + 1,140, 67,196, 23, 63,255,170,124, 14, 33, 34, 12, 1,173,103,189,190,208,225,240,244,201, 53,190,244,149,215,240,214, 47, 31, +113,212,183,200,196,134, 7,211,154, 89,144,214,138,222, 35,122, 43,232,193,145, 77,190, 96, 24, 7,138,185,154, 77,200, 58, 58, +227, 75, 97,106,248,249,120,144,179,160,214,109, 77, 69, 59,155,115,128,219, 57,179,178,118, 66,148,224, 60, 82, 26,248,220,119, + 11, 24,233,144,206, 74,246,171,178,142,242,129, 22,192,238, 17,124,180,240,164, 97, 8,166,250,150,226, 3, 22, 19,220,114, 59, +225, 40,248, 19,216,144,104, 82, 28, 96, 2, 52, 27,153, 86, 25,255,251,238, 25,226, 35, 14, 14, 9, 0, 74,184,184, 58, 63, 89, + 91,200,249, 52,140, 35,243, 41,146,101, 44,196, 24, 81,242, 44,151, 61,188, 9,199, 10,227,162,123,151,145,124,161,134, 72,197, +153,226, 42,170,198,202, 16,226,163,114, 37,136,128,109, 98,167,219,237,247, 24, 39,241,201,135,152, 4, 84,147, 51,198,105, 36, + 51, 32,156,164,211, 53,148,220,120,161,175,146,235, 78,255,123,111,186,251,173, 12,103,145, 2, 57,175,153,225, 79, 2,124, 58, + 28,142, 8,222,203,116, 37, 8, 83,162,209,142, 90, 40,146,211,219,140,122, 85,227,156, 11,237,173, 89, 4,179, 34,111,225,188, +129,166,100, 75,236, 24,186, 83, 41, 36,222,108,184,154,207, 46,226,229, 29,210,160,232,236, 77, 65,174, 2, 52, 93, 23,128, 26, +141,118,162, 84,119, 94, 26, 6,237,214, 37, 47,194,155,232, 87,245,246, 50,197,225,180,248, 36,205, 82, 52,105, 39, 25, 40,236, +206,133, 93,208,100, 91,228, 20,157,171, 97, 49,242,123,106, 43,136,113,148,203,157,231,126, 46, 43,134, 97,162, 11, 68,112,215, + 18,120, 84, 41, 8,236,136,211,126,111, 8, 70,169, 14, 68,241, 59,237, 70,212,186,193,251,117, 28,166,220,118, 37,199,137,224, +204,157,240,131,163,197,176,250,230,249,226,117, 19, 72,169,208, 64, 5,108,178,255,109,150,175,155,213,111, 87,165, 26,143, 12, + 47,200,107,165,101,163, 73, 78,251, 34, 23,199,241,152,205, 62, 97, 99, 15,170, 84,199, 49,114, 95, 75, 6, 47, 36,148,101,156, + 18,106, 73,104,213,155, 31,178, 86,142,214,209, 33,192, 32,103, 56, 90,201,158,119,152,231,197,112,164,162, 92, 36,254,149,226, + 20,245, 54,107,138, 79,163,160, 67, 42,173, 76,143,181,140,222,165,138, 84,253, 2,184, 91, 92, 17,169,244,244, 65,198,116,145, +194, 20, 29,173,201,231, 73, 50,104,136,176, 53,234, 56,200,215,223, 42,187, 13,142, 98,125, 55,204,173, 50,148, 45, 93, 73,145, +154, 33, 48,217, 77, 60,245,181,118, 9,131,153,238,163,226, 12,206,117,156, 95,236,113,124,250, 17, 30,127,248, 43, 1, 76, 48, + 0,166,214,186, 97, 81, 21,196,172,176, 7,136, 31, 85,212,234,133,161, 52,167,153,238,196, 94,178,144, 83,177,164,248,248,171, + 8,210,204,103,235,140,126, 21,153, 34, 40, 23,188,252, 12, 67,140,132,201, 68,122, 82, 97,187, 85,215, 43, 65, 30,149,171,149, + 21,181,172, 40,153, 94,222,214, 81,212,227,172,151,118,154,136, 63,222,152,223, 29,206, 98, 26,149, 21,239, 29,217, 2,112,120, +242, 48,227,171,159,123, 3,175,191,114, 9, 31,128, 60,238, 81,253,136, 56, 36,187,192, 62,250,232, 26,223,255,209,187, 82, 64, +215,138, 94, 43, 14,185, 32, 31, 14,248,189,207,188,128,127,251,163, 17,255,238,239, 62,194, 11,251, 17,191,251,153, 35,250,197, + 30,253,206,125,196, 59,231,104, 44, 12,252,217,185, 36,178, 5, 7,196, 8,119,255, 1,194,249, 5,124,244, 72,193,163,176, 51, +248,211, 31,188,139, 15, 63,190,134,243, 14,159,126,229, 46, 94,188,119,137, 94, 10, 48, 36,204,135,133, 29,144,140,215,231,249, +136,103,207, 14,184,119,239, 14,218,207,219,134,163, 12,160,213,170, 24,193, 49,232, 74,137, 5,103, 45, 21,227,180,229, 41,228, +156,177,219,237,182, 40,206,147, 9,147,228,207, 15, 88,230, 3, 61,225, 51, 66,216,157,228, 5,204, 22,198, 33,214, 81,141,103, +246,204, 45,168, 20,222, 10,195, 28,212,150,168,251,196,249,184,157, 97,211,206,166, 5,165, 86,218,186,100,250,151,115,179, 8, +103, 89,231,101,114, 28, 68, 36, 28, 57,120, 85, 92,168,178, 49, 84, 67,227, 24, 11,173,239, 66,229,249, 57, 31,143,152,118, 19, + 82,218,227,236,252, 92, 20,237, 76,213,146, 46, 61,217,243, 44,190,113, 9, 91,114,222, 99, 8,129, 56, 80, 89, 51,138,235,166, + 96, 62, 30, 45, 47, 91,221, 64,235, 42, 35,120,229,188,139,248, 75, 46,116, 13,113, 42,165, 98,127,182, 71, 76, 35,166,157, 92, +232, 29, 78, 38, 14, 94,220, 63, 66, 0, 28,204,246, 53, 31, 23,115,148,172,107,198, 45, 25, 30,153,194, 60,205, 57,208,226,119, + 93, 87,148,188,178,147,150,162,119, 89,229,217,210,127,102,114, 62,180, 96,232, 22,207,123,130, 60,213,115,181,109,211, 29,157, +236,168,184, 44,192, 61,135, 9,215,105,218,105,228,177, 94,218, 14, 64, 28, 39,122,237, 71, 22,229, 48, 11,176, 22, 71,186,138, +172, 85,128, 63,121, 93,184, 51,239,128,219,154, 87, 89,225,200, 63, 79, 57, 30,138,105,214, 53,144,142,219,197, 89,227, 21,130, + 7,205,109,235,246,164, 59,115,109,169,165, 82, 58,240,141, 22,232,157, 76, 45,156,247,228,205,119,190,139, 43,156, 19,177, 97, + 74,129,186, 40,191, 69,161,119,120,227, 93,151, 70, 95,104,223,124,227,150,124,229,229, 5, 23, 91,153, 67, 74,130,128,117, 74, +187, 9,178,227,170, 76, 68,242,188,112, 26, 65, 50,189, 59,100,142,195, 91,151, 95,191, 46,133, 98,187, 72, 28,106, 21, 97, 17, +167,165,235, 90,224, 73,110, 18, 43, 82, 64,206,242,226, 13, 99,218,136, 59,140, 3, 45,165, 97, 28, 2,179,122,189, 21, 34,133, + 66, 26,169,192, 28,197, 32, 3,242,178,176, 67,117,100,184,139,226,114,152, 18,242,202,204,229, 20, 49, 31,229,161,157,166,145, +248,220, 77, 89, 89,203,150,227,171, 80,148,218, 52,232, 3,132,156, 56, 11, 35, 80,155,148,176,207, 25,211, 23,228, 7, 38,185, +242,114,232, 76,187, 9, 41,146, 85,205,189,115, 55,150,177, 55,143,101,181,108, 93,249, 26,242,154,229, 80,163,157, 78,188,242, + 5, 49,137,130, 84, 4, 38,222,226,101, 53,189, 74,217,221, 62, 70,132, 36,163,163,241,206,167,209,152,173,253,194,189, 51,188, +245,189,239,152,144, 81,213,175, 10,143,240,126,115, 71,200, 51,145, 25,152,224,233,245,230, 14,191, 9,227, 89,198,138,209,178, +205,245, 65,118,188,220,225,196, 71,154,232, 15,246,118,225,122, 30,222,180, 8,186, 45,215, 60,198, 72, 47,181,132,241,232, 36, +166,183, 6, 71,174,115,111, 5,173, 74,142,124, 74,137, 19,162,141,222,148, 98, 2,188,130, 51, 50,162, 22, 20,250,156, 41,166, + 82, 45, 42, 85, 85,203, 1,231,195, 29,124,245, 83,151, 72,243, 45,250,221, 7,136,251, 51, 17,116,213, 46,120, 87,231,240,237, +111,255, 24,183, 7, 57, 8,255,233,215, 94,197,211,103, 51,254,239, 55, 63,196,245,245,130, 59, 83,196, 63,251,250,107,248, 31, +191,243,115,252,239, 63,254, 53,194,217,132, 47,125,234,147,162, 92,166,212,102,205, 21,111,189,249, 75,124,249,181, 61,166, 94, +225, 94,125, 13, 97,218,163, 66,196,164,203,154,209, 93,192,159,254,217, 91,248, 15,223,127, 7,206, 75, 17,244,205,111,124, 78, + 60,196,168,240,124,159,186,115, 88,142, 11,144, 59,150, 34, 29,105,138,170,127,225,180,206,156, 26, 26,158, 34, 63, 67, 15, 57, +180,208,186, 5,168,168, 11,193,169, 58,153, 7,105, 74, 17,199,227, 98,187,118,231,130,137, 11,107,150, 98, 58,141, 9, 46,175, + 18, 78,210,142,166,186,238,229,180, 83,151, 11, 62,151,133, 83, 18, 57,204, 53,139,188,163, 25, 24,165,201, 75,136,200, 78, 43, +210,129, 33,249,214,206, 34, 47, 59,247,253,122,192,250, 32,221,154,142,190, 51, 51, 25, 26,173,117, 53, 55, 25,157, 86,153, 44, +232,232, 93,180, 73, 29,203,124, 4,250, 29, 76,251, 9,251,179, 61,150, 69, 32, 61,121, 93,101,133, 73,145, 94,224, 94, 95,243, + 15, 44,160,200, 1,165, 74, 92,168,192, 71, 86,131,112, 9, 12, 75, 68,103, 57,103, 59, 75, 98, 76,180,123,146,151,193, 3,116, +154,118, 56, 59,191,192, 56,141, 44,108,154,137, 88,135, 97, 16,171, 40,243,212, 3,133,121, 57, 23, 89, 25,242,239,138, 76,171, + 43,156,154,229, 53,139,221, 49, 23,155,252,105,167,156,115,182, 14, 62,115,132,110, 60,246, 86, 49,207, 43, 5,113,206,166,114, +122, 73, 27, 92,135, 8,238, 83,225,165,103, 81, 45, 43,196, 96,107, 93,121,150, 54,251, 87,253,255,233,122,147,103, 91,178,243, +186,111,237, 46, 51,207,185,247,190,174, 58, 20, 88, 68,161, 33, 1, 82, 12,137, 22, 41,202, 38,105,133, 7, 30, 40, 60,176, 35, + 60,245,208,255,155,103, 14,207, 28,242, 64,161,144,108, 90, 38, 77,147, 4, 9,130, 68,145, 42, 20, 0,162,250,238, 53,247,222, +147,153,187,243,224, 91,223,183,243,210,225, 1, 2, 64,189, 87,175, 57, 39,115,239,175, 89,235,183, 88,184, 77,211,132,105,158, + 44,225,174, 59,200, 59,196,223, 79, 18,226, 26,249, 12,109,144,248,232, 36,176,110, 91,181, 83,125,136,249,164,176,108,104,189, +176, 41, 26, 92,248,238,250,129, 40,231, 44, 17,210, 49,188, 74,215,147,206, 41,116, 7,195, 54, 71,221,135, 2,147, 70,228,173, +116, 97,185,238,140, 94,237,214,145,135, 32, 43,141, 41,137, 24,184,100, 57,211,162,178,126, 69, 98,223, 45,208, 93,114,164,147, +229,148, 59,218, 14, 60,247, 31, 98, 73, 83,235,138,228, 80,203,206,202,219, 72, 69,227, 21, 21, 90,163, 81,129,222,115,204,222, +196,170, 85,155,140,172, 36, 60, 32,152, 48, 79, 41,103, 82,205,102,139,239, 3, 41,120,206, 7, 44, 41,202, 5,163,249,239,193, + 97, 62, 49,123, 59, 38, 10, 92, 60, 16, 58,106, 1,243,187, 69, 44, 87, 91, 55,225,219,216,179,192, 84,177,197, 59,134,219, 36, +193,228,170, 8,200,201,174, 92,198,208,237, 1,167,221,123, 80,244,231,135,154, 19, 13,101,247,104,173, 24,156, 68, 72,110,145, +161, 5,224,231, 47,224, 26, 13,125,240, 28, 77, 6, 79, 88, 72,235,140,185, 12,134, 27, 84, 46,126,201, 5,251,186, 49,108,198, +141,209,189, 87,177, 82, 51, 81,204,176,149,193, 70,214,114, 81, 10, 1,173,163, 34, 93,189,141,238, 79,240,189,227,241,211,107, + 92,158,127,140,231, 95,124, 66,199,152,224, 91,107,173,210,203,180, 6,159, 4,134,160,208,155,224, 3,242,190,201,180,130,227, +119,231, 28, 34,161, 24,145,244, 44,229, 64, 74,244,163,120,133,131,218, 52, 90,135,143,225,128,239, 4, 33, 28,222,108,145, 70, +153, 67,103,220,109, 99, 55,145,109,173, 32,157,132,240,202,189,235,112,196,240, 74, 40,134,178,157,163, 5,214,168,218,125, 89, + 78,166,109, 80, 48,146, 99,130, 89,201,178, 47, 60, 93, 93, 33,165, 19,126,254,254, 5,255,250,247,222, 65, 42, 43,240,218,155, + 8,143, 30,115,124, 91,225, 90,199, 52, 69,188,248,228,115,252,229, 95,255, 12,235,190,227,119,127,245, 41,126,255,159,189,139, +255,237,143,127,138,105, 74,120,121,183,161,191,126,198,175,190,113,131, 63,248,238,235,248,163,159, 63,199,255,252,127,255, 12, +191,191, 59,252,225,239,253, 26,150,229, 10,190, 3, 95,127,117,135,255,229,223,254, 37,254,199,255,254,247,240,237,119,223,130, + 75,147, 20,125, 78, 86, 12, 47, 46, 5,255,230,223,254, 25,222,251,224, 51, 9,183,241, 30,191,249,189,183,240, 43,223,124,138, + 38, 97,235,104,165, 89,247, 85,107,197,253,203,231,184,253,252,115,220,221,175, 56,159,102, 89, 5,133,113, 0, 58,230, 37, 40, +123,194, 4,157,173,195, 5,216,231,163,169,119,122, 48, 5, 47, 93,227,190,151, 17,211,217, 14,180,182, 16,225,107, 69,105, 13, +177, 3, 62, 38,148,114,129,144,117,212, 79, 62, 33,196,201,118,242, 18,127, 43,142, 10,207,162, 81,109, 79,137,157,160, 11, 30, + 49, 58, 59, 71, 66,244,134, 84, 21, 91, 89,192,229, 66, 10, 37,134,173, 86,221, 45,242,190,203,143, 43,165, 45, 67, 41,147,221, +214,145,165,102,138, 85,165,107, 10,244, 89,106,129,217, 58,112,253,232,138,206, 28, 78, 13,157, 51,191,123, 74, 9,219,101, 53, +203,154,172, 56, 59, 59, 52,185, 96, 45,103,156, 0,158,187,187,141,241,206,156, 88,248,104, 19,188,209,169, 59,156, 78, 39, 44, +167, 43, 78, 26, 61,182,109, 19, 31,250, 36, 34, 57,141,112,245,156, 50,237, 91,198,186,110,242, 14, 57,221, 85,123,177,198,214, +202,127,222, 57,165, 45, 54,177, 48, 46,126,161,149, 77, 39,190,156,202,185,131, 24, 88,181, 24,181,140,244, 70,109,122,156, 93, +156, 13,153,207,167,242, 43, 42,253,234,129,231, 84,107,157,124,134, 38, 46,168,224,140,107, 63, 77,147, 1,170, 4,113, 13,218, +126, 29, 39, 53,195, 26,233, 32,127,174, 74,101,254,122,185,151,245, 32,241,185,253, 31,141,210,161, 78,248, 16, 6,190,186,107, +163,218,216,173,247,193,203,111,221, 82, 49, 97, 74,127, 79, 69, 59, 56,241,109, 66, 83,116, 1,206, 41, 6, 54,142, 60, 11, 21, + 18,187,225,230,208,130, 71,185, 49,165, 85,248,220,141,217, 18,197, 70,162,251,139, 38,130, 11,163,225, 59, 42, 5, 37, 22, 48, +164,196,241,172,136, 35,224,100, 87,187, 94, 54,104,199,175, 54,148,152,102,120,126,137, 41, 9, 35,215,123,143, 56, 37,115,190, +116, 38,106,113,129, 76,168,130,164,209,120, 99,133,203, 14,102,223,170, 5, 26,104, 88,252,148,196,195, 41, 22, 12,143,137, 22, +140, 24, 60, 64,171,204,188,200,143, 93,238,183,113,113, 83, 1,223,154, 60,172,178,183,146,191,239,188, 76, 12,177,232,164,212, + 77, 36, 74, 37,219,209,224,128,144,236, 61,153, 71,177,115, 84,236, 89,116,200,175, 81, 49,207, 39,236,105, 67, 43, 5,181, 38, +120,215, 12,134,161,190,204, 64,178,211,188, 8,138, 52, 77,226,229,158,230,201,216,201, 2,158,144,142, 76,147,154, 4,204,211, +121,151,137, 88, 13,222, 35, 38,201,169,167, 76,153,251,217,209,241,118, 19, 96, 84,132, 56,153,119, 58,120,143,210, 60,166, 39, +223,198,158, 27,174,174,102,188,246,250, 25,127,245, 31,254,157, 84,251,101,248,182,197,182,230,232, 67,110,166, 2,110,252,140, + 28,228, 66, 85,132,109,239, 29,133,234, 99,249,254,229,223,117,222,141, 73, 4,139, 51,167,150,197,218,224,101,242,218,158, 0, + 0, 32, 0, 73, 68, 65, 84,217, 49,136,125, 18, 22,238, 18, 40,182,234,202,223, 5, 5,136,196,230,202, 97,180,171, 95, 83,242, +152, 21,253,169,144, 31, 90,127, 60, 71,120,150, 87, 60,157, 72, 22, 12,182,147, 31,137,111, 34,144,115,206,227,116, 58,227,171, + 47, 51,190,245,198,155,120,237,236,208, 79,207, 80,211,130,169, 73,100,169, 10,126,252,237,115,252,249,127,252, 43,220,174, 25, + 79,174, 22,252,215,191,243, 46,166, 41,162, 57,135,101,158,112,187, 22,209,101,132,128,127,245, 91,223,196,167,119, 25, 31,188, +216,240,199, 63,250, 5,254,238,103,159,225, 15,254,249,119,240,253,239,125, 3, 79,159,156,240, 63,252,119,255, 18,175,191,245, + 4, 13, 82, 48,191,120,117,193, 39, 31,127,133, 15, 63,121,142, 31,191,255, 41,110,137,156,141, 33,224, 59,223,120,130,255,234, + 15,254,137,116, 80,154,130,230, 52, 50,147,200, 79, 52,124,241,213, 45,166,232,209,246, 77, 8,121, 36, 47,182, 14,236,185, 32, + 17, 50,163,152,230,125,207, 12,103,146,142, 95, 97, 56,145, 1, 31,173, 85,116, 68,139, 40, 85, 45, 71,182, 80,138, 9,121, 95, + 57,209,171,156,210, 13, 17, 91,154,228, 80,142, 81,253,235,193,214,108,177, 70,130, 90, 64, 36,114, 28,124, 8,254, 29,189, 53, + 13,212,210,168, 0, 56, 70,166, 19,118, 11, 45,105, 20,123,201,251, 10, 76, 44, 56,203,182,217,251,165,218,147,214, 33, 46, 14, +218, 72,119,166, 92, 10, 59,165, 96, 94, 78,164,150, 73,227, 50,207, 34, 48,214,115,196,178,200,117, 66, 26,101,157, 86,115,230, +231,221,140, 80,184,239, 59, 53, 23,242,207, 50,193, 81,149,136,105,231,165, 51,247,212, 94, 72,176, 74,199,245,205, 13, 98,228, +229,230, 3,246, 61,203, 46, 61,136,207, 89,187,121,157, 12,212, 42,130,224,206,223, 75, 21,243,235, 46, 25,238,121,223, 41,154, +227, 78,159, 22,102,157,130, 85,106,142, 90,173, 84,182,119,187,188,245,125,243, 62,152, 9,172,249,118, 0,255, 16, 30, 21,184, +182,195,200,159, 16,145, 93, 55,220,183, 11,222, 58,118, 79,145,156,231,152, 62,198,196,189,185,220, 49,106, 66, 83,148,112, 39, +255,223,199, 40, 54, 96,142,239, 85, 73,190, 17,204,213, 15,227,126,221,161,119,232,148,174, 13,224,152,209, 97, 6,203,253, 24, +139,170, 32, 28,253,105,173, 54, 70,210, 86, 3,202,232, 58, 71,113,228,210,148, 11, 92,169,243,204,214,108,146,166, 36, 58,155, + 56, 15,247, 89,212,117, 75,206, 50,157,240,129, 47,139, 3,246,117,195, 60, 79,216,214,157,204,221,145, 22,166, 2,182,198,241, +176, 11, 9,161,202,229, 54,159, 2,189,214,157, 64,131,131, 16,174,117,250,167, 71,158,185,120,215,171,141, 82, 99,116, 6, 42, + 0, 24,148,177, 55, 83,168,202,248, 94, 70,190,177, 39, 9, 38,112,192, 60, 71,162, 3, 65,136,139,140,116, 36,196, 67,109, 86, + 5,121, 31,163,156,156,139, 28,166, 20,212, 4,138,175, 52,144, 67, 4,125,176, 93,115,222,229,210,191,220,175,216,182, 93,170, + 58, 69,191,242, 80,208,185,184,119,195,186,179,239, 5,137,156,246,245,178,138,142,160, 86,204, 36,143,165,192, 46, 32, 37,130, + 86,100,108,228,157,122,210, 41, 18,105,154, 24,196,106,148, 69, 81,107,205, 82,208,122,109, 88, 47, 23,228,204,145, 39,186, 88, +201, 90, 69,243, 14, 49, 48,224,133, 25,194,181,169,138, 95,227, 30,243,232,216,209,177, 60,126, 23,240, 51,188, 47,120,250,250, + 13,190,250,240,167,184,127,249,149,236,218,181,171,233,242,123, 84,227,215,195, 46,245,206,120, 66,207,253,158,146,152,128,209, + 85, 57,231,225, 35,201, 90, 7, 27,100, 96,190,186,250,223,131, 55,189, 42,215, 65,147, 69, 13,230,109, 35,155,187, 91,170,150, +166,254,229,125,227,239, 57,220, 4, 78,102,193,232, 85, 40,124,129,246, 45,231,186,129,100,132,179,204, 34,143, 17,174,181,237, +198,171, 90,150,217,118,189,211,188,160,212,128, 47,126,241, 10,255,234,247,175, 16,106, 69, 63, 95, 35, 56,143,253,178, 34, 6, +218,171,214, 11,190,254,240, 19,252, 31, 63,250, 16, 62, 4,124,247,141,107,188,249,248,132,146, 43, 46,165,201,100, 39, 4, 57, +112,224,144, 92,197,127,251, 59,239,224,223,255,248, 99,252,217,135,175,240,213,203, 21,255,235,255,254,183,248, 55,127,244, 19, + 60,185, 57,225,124,154, 17,131,172,126, 46,123,198,139, 87, 43, 59,107,140,201,152,247,248,195,255,236, 91,248,207,255,197,175, + 73,162, 98, 19,187, 94, 79,178,210,136,201,163,230,130, 24, 38,224,217,130,207,111,127,138, 55,159,156,176,189,124, 53, 60,232, +141,107, 55, 5,143, 4, 21, 42, 49,216,137, 86,212, 68, 27, 97,138,194,134,192,212, 45,110,185,121,119, 0,112, 84,219,149, 59, +134,126,148,146,109,125, 53, 47,103, 56, 72, 92,104, 48, 11,171,248,180,125, 28, 57, 19, 34,138,147,253, 47,156,132, 67, 57,229, +216,231,130,121,158,204, 87,110, 93,114, 19,209,109,140,137,202,117,165,220,141,140,234,118,152, 96, 57,115,231,200, 88, 93, 53, + 67, 71, 49,150, 2, 67,100,181,235,145,166,136,211,249,108,208, 46, 65, 57, 79, 54,221,144, 49,191,250,168,197,102, 91, 75, 29, + 35,104, 38, 74, 10, 82, 59,219,217,219, 90,145,105, 95, 25,254,244, 14,225,248,203,132,201,155,232,245,234,250,138,136,215,217, +198,218, 41, 69,195, 87,123,254, 60, 37,206,137, 21,111,199,133,187,116, 7,103,104,211, 86, 27, 19,226,154,145, 52,109, 66,227, +197,118,235,201,222,240,109,108,140,213, 34, 38, 28,122,197,204,202,208, 93, 38, 26,193,118,242,170, 91, 80,189,145, 35, 44,166, +113,242, 3,162, 99,125,148,253,178, 22,112,141, 46,152,137, 23,121,240,206,216,253,149,118, 96, 56, 9,192,129,243, 50,100,111, + 29,158,190,111,213, 8, 8, 77,244, 86,112,207, 44, 52, 80, 85,169,220, 45, 86, 85, 35,106, 85,153, 62,194, 91,154, 49,223, 71, + 28,116, 55, 18,104,109, 85,226,122,219,112,230,232,154,178, 99, 8,244, 52,145, 84, 38,224,205, 84,240, 18,102,211, 44, 85,110, +100,177,132,177,174, 41,133,232,117,208,254, 71,128,137, 98, 54,107,235, 12,162,144,145,153, 11,222,246,227,170,172, 30,192, 23, + 5, 1, 80, 64,183,151,129,231,107, 98,107,107,173, 35, 32, 72,202,142, 27,226,143,211,121,198,229,126,103, 21, 39, 86, 57, 65, + 11, 86,218, 36,138, 77, 12, 36,105, 71, 68, 26, 14,193,114,117, 99, 12, 28,119, 51, 17,139,197, 65,222,251, 17,163, 75, 91,147, +100,169,123, 31,208, 88, 57,247,222,224, 23,177,210,197, 24,209, 56,202,211, 75,187, 49,134, 79, 57,238,251,182, 83,120, 49, 80, +141, 71,214,186,163, 18, 83,199,147,121,207,182,175, 15,206,139,181,139, 28,101,231,135, 3,210,251,136,105,138,214,229,132,160, +135,168,227,152, 88,213,222,158, 35, 36, 57, 12, 26, 67, 48,182,109,229,206,235,144,149, 66,136,138,163, 88, 67,170,118,103, 26, +130, 78,161, 93, 35, 61,174,235, 10, 32,156, 16,174,190,137,188,101, 92, 63, 58,225,209, 77,196, 95,252,201,255,195,132,188,206, +189,147,140,183,229,193, 82,208,141, 63,248,147, 27,179,184,187, 41,240,187,209,236,228,101, 81,191,188,116,127,196, 80,134,110, +251, 79,129,240, 4,179,188,105,242,147, 35, 7, 64,177,149,199,138,183, 57,247, 96, 4,239,156, 67,160, 56,198,146, 9,225,224, +168,142, 22, 97, 39,215, 28,116, 98,140, 56, 71,241,149,151,178,115,247, 72,253, 4,247,120,154,115,252,193,123, 95,226, 7,143, +207, 56,213, 12,156, 94,199,180, 76,184, 92,118, 82,181, 0,151, 55,224,243,207,240,254,207,190,192,171,189,225, 60, 69,252,151, +191,241, 22,210,156, 80,106,199,125,149, 53,130,139, 1,126,154, 80, 86, 57, 92,151, 57,226,191,249,157,111,225,215,222,126,137, + 63,254,233,151,248,232,213,134,117, 47,120,121,191,227,235,219,149,118,158,142,156,229,243,234, 89, 14,146,243,146,240,155,223, +126, 29,127,248, 47,127, 13,223,251,238,219,118,145, 58,239, 81,247,140,238, 60,150, 37, 33, 56,160, 78, 19,226,249, 6,229,171, + 59,124,252,197, 43,252,254,111,191, 99,226, 45, 41, 56, 3,211,189, 24,142,161, 62,107,178,244, 91,111, 35,199,185,139,104, 42, +165,132,208,130,196,165,114,180,170,147,149, 61,231,113, 56, 86,135, 52, 77,140, 61,149, 21, 30,156, 19,136,208,193,215,235, 3, + 44,164, 69, 69,184, 26,196, 17, 72, 25,204, 37,219, 20, 33, 68, 97, 92, 56,122,173,229, 61, 33,206, 86,155, 13,245,168,107,113, +156,139,145,216,112,192, 9,195,138,145, 65, 53,212, 67, 84, 3, 53,100,106,181,195,135, 9,203,233,132,171,235, 51, 78,231, 19, + 78,231, 5,211, 44,123,235,202,203,188, 27,249,203, 97, 55, 24, 75,183,236,140, 90, 59, 71,250,197, 10, 29, 25,123,115,229,213, + 21, 93, 26,144,146, 51,161,108, 8, 17, 33, 69, 94,112,129,246, 99, 41, 18,150,147,216,212, 34,153, 13, 74,180,211,179,251,213, +203,187,195, 57,116,136,105,173, 93,152,229, 12, 96,209,245,132,240,219, 59,207,222, 65,118,203,117,183, 73, 87,167,206,161,212, +138,232, 15, 49,168, 26,237, 76,155,171,250,194,189, 27,156,141, 78,177,153, 50, 0, 36, 1,148,120,222, 64, 81,164, 79, 6,198, +241,252, 78,116,178, 43,231, 36, 76,207,213,125,167,112,215,147,233, 47,236, 17, 61,143,238,239,238,144,243,202,226,222,153, 48, + 79,149,237,232, 93,122,126, 34, 91, 85, 80, 46,232,225, 54, 64, 50,102,251,236,212,149,133,129, 18,102, 20,183, 98, 98,149,249, + 32, 26,167,136,218,138,172, 46,237, 0,119,150, 95,160, 69,133, 8,126,251,131, 9,130,112,100,102, 43, 52, 2, 39, 25, 17,109, +140, 50,116,190,148,184, 19,150,241, 48, 0, 47,226, 52,237, 4,130, 23,193,142, 10, 0,114,110,112, 85, 89,125,236,184, 14, 4, +176,204,110, 68, 70,246,242,178, 94,238, 46,166, 96,188,220, 75,151, 46,234,115, 25, 93,245, 60, 10,135, 94,186,217, 27, 64, 54, +251, 52, 5,164, 36, 95,212, 52, 69, 83, 97,247,214, 76, 25,218,106, 55,172, 97,100,146,144,197,167,214, 54,146,150,248, 31,169, + 12,157,165,208,205, 75, 96,222,113, 65,206,192,114, 58,161, 85, 57, 0, 0,201, 50,175,204, 81,143,204,144,158,231,201, 30,174, +156, 11, 2,157, 5,101,221,141,235, 14,116,184, 54,184,249,129,123,100, 79,228,170,236,193, 70, 66,153,250,114, 53,112,167,215, +110,182,174,188,113,114, 0, 71, 65, 9,197, 24,222,113, 44, 40, 52, 51,229,149,171,242, 83,168,125,221,146,226, 20,185, 20,111, +222, 69,105, 2,205,120,246,250, 13, 62,124,239, 47,113,185,187,147, 49, 85,206, 38, 54,212,253,168,163, 95, 92, 9, 93, 45,175, +114,217,243,192, 87, 91,146, 90,209,114, 21,139, 77,171,149,123,199, 46, 74,110,142,119,189,242,174, 99,178,195, 87,125,233,189, +100, 84,116, 19,137,180,146, 77, 89, 47,170, 89,114,242,163,135, 43,180, 8,122,254,154, 65,148,199,246, 34,246, 42, 93,191,243, +163,115,162,136, 40,239, 27, 71,211, 50, 21,170,173,194,117,103, 54,185,180,156,208, 91,197, 39, 31, 93,144, 94,117,188,243,235, + 11,106,239,168,206,193,191,186, 69,127,249, 2, 62, 70,244,109, 71,223,118,220,223,110,248,143,127,251,137,168,208,159,158,240, +237,111,220, 32, 70, 47,147, 22, 7,156,150,132, 92, 59,178,218, 68, 41,144, 41,165,226,187,111, 92,227, 55,127,247,251,184,237, + 14,127,247,159, 62,193,223,127,240, 41,158,223,110,184,187,144,241, 29, 28, 30,157,103,188,245,218, 53,254,233,111,124, 19,223, +255,245,119,240,214,235,215,136, 65,196,144,173, 86,226,129, 29,194,114,102, 1,235, 49, 79, 1,211,205, 35,148,238,241,245,135, + 31,227,203,207, 62,199,219,143,190,141,249,180,200, 94,150, 36, 64,203,174,225, 78,219, 59,111,172,235,192,172,122,153, 72,200, +132, 78,196,108, 66, 28,171, 94,206,129,125,219,173, 83, 20,229, 46,187, 21,120,204,203, 34,240,158, 57,113,119, 31,113,190,190, + 70,222, 54, 78,163, 10, 66,104,164,160, 9, 47, 35,239, 69, 14,107,120,131,121, 56, 39,248,224,146, 43,210, 20, 14, 4, 66,111, +151,152, 90, 94, 21, 25,171, 83,141, 74,143,120, 76, 51,225, 66, 14,217,196,115,205,120,196, 57,231,129,138,181,160, 15, 17, 59, + 37, 82,190, 98, 76,210, 37,235, 10,142, 68,184,245, 34, 83,208,162, 54,180,195,132, 32, 70,225,104,136,213,139,231, 9,153, 21, +165, 10, 7,190,181,194, 8,105,241,190,235,217,230, 92,144,204, 10, 47,226, 90, 41,212,229,123, 59, 95,157, 48, 26, 72, 17,199, +117, 94, 52,251,158,201, 15,247, 44, 14,139,173, 34,106,149, 61,243,195,198,170,211, 98, 10,130, 95, 58, 73,162,133,130,212, 67, +175,234, 37, 21,207, 59,137,255,237, 68,106,111, 12,196, 82,155,151,238,163, 65, 76,107,101,206,122,103,158, 5, 71, 60, 50,141, + 73,178,118,149, 88,225,137,147, 76, 45, 66, 58,139, 2, 63, 34, 89,121,198,187,174,162,228, 42,239, 40,173,116,165, 20,236,219, + 61,202,190, 26, 48,166,243,206,147,201,114,163,248,216,217,133, 94, 45,181,241, 64,193,115,227,179,232, 7,104,142,142,242,123, +131,173, 84,228,159, 13,212,185,126, 78,186, 39,215,181,131,248,226, 85, 61,223, 44, 42, 87, 47,116,163,178,214,102, 57,237, 10, +235, 2,128, 40,223, 89, 21,129, 88,147, 7, 5,157, 22, 3, 7,238,112,155,141,136, 53,123, 61,120,233,138, 52,187, 91, 67, 41, +116, 52,230,116,134, 69,101,228,122,127, 47, 29, 89,169,163, 66, 46,157, 54,162,142,109, 45,134, 70, 44,205,234, 31, 98, 19,119, + 75,106, 66,143,100,131,139,224,101, 90, 34,213,215, 96,215,186,225,114, 89,185, 47,150, 11,103, 89, 38, 42, 69, 69,196,118,127, +183, 10, 8,100,156, 87,246,133,180, 90, 12, 27,153,183,102,152, 76, 85, 5,123,159, 70,222,179, 41,191,165,130,181,108,242,222, +137, 43, 36, 57,136,151, 80,154, 40,144,227, 5,214,122, 71,156,162,237,139, 5,182, 50,128, 42, 58, 34, 3,237,105, 26, 24, 34, +135, 83,197,190,101,174, 39, 18, 28,201, 77, 66,254, 99,118,176, 31,129, 16,106,195,208,174,202, 51,161,172,225,104, 87,188, 70, +188,126, 11,251, 86,241,248,181, 27, 76, 97,199,199, 31,252, 68,252,200, 85,139,184,102, 80,138,110, 54, 22, 38, 46,117, 25,149, +181,154,121,161, 43, 1,169,219,186,194,251,104,251, 83,125, 41,192, 61,187, 12, 50,130,225, 71, 3,156,237,226,213,179,142,222, +109, 31, 38,123,125,162,120, 3, 65, 14,144, 23,151, 27, 45,219, 43, 58,146,220,228,179,243,136,113, 54, 1, 95, 63,248,236,161, +161, 60, 44,244,250,145,199, 16,132,191,157, 98,196,221, 93,198,171, 15,119,252,206,183,158,192,123,135,151, 95,223, 33,189,248, +123, 44, 87,147, 68,121,166, 8,191, 76,232, 62,224,167, 31,191,192, 47,190,190,224, 60, 79,248, 47,190,255, 6,124,154,144,171, + 80,205,155, 27,213,127,222,118,118, 72,164, 72, 65,132, 71,203,156,240,206,179, 71,248,173, 31,188,141,219,219, 13, 47, 94,109, +184,172, 98, 19, 90,247,134,235,115,194,163,155, 19, 82,240,136,203,132,121, 73, 56,205, 19, 60, 58,194,105,145,174,188, 84,160, +238,112, 93, 70,211, 55, 79, 30, 33,221, 60,198,254,209, 47,240,211,207, 62,196,228, 61,174,230,136,190,221,155, 54, 68, 4,111, + 29,206,119,146, 11, 27, 47,211, 78, 50,156,140,136,139,134, 57, 17,230, 36,142, 1,218,122,170, 20, 2,209,137,174, 38,196, 4, + 80, 81,223,209, 49, 47,139,185,111, 84,184,102, 73, 90,158, 98, 49, 90,100,211, 60,143, 17,182,151, 98, 88, 96, 52,132,183,236, + 93,126, 14,215, 63, 66,149, 4,106,174, 2,164, 57, 40,173,229, 50,239,214, 17,139,173, 44, 30, 34,127,137,113, 14, 30,165, 56, +123,175, 99,164,135, 90,213,254,164, 4, 78,243,132,229,180,224,116, 94,144,104, 69,213,104,105, 17,125, 53, 90,245,104,213,226, +129,172,201,108,121,207,114,209,114, 53, 86,184,230,139, 33,160,244, 98, 99,101,129,143, 72, 82, 98,173, 98,209,157,150,197, 80, +202,154,248, 54, 47, 51, 90, 17,151,144,160, 96,101,183,222,187,224, 93,107, 46, 7, 7,135, 56,123,246,109,183,134, 68,216,237, +187,173, 44,181, 91,111,236,210,215,109,167,189,176, 90,226,156,104, 5,226, 3,251, 98, 35,129, 80,185, 31, 7, 65, 21,155, 9, +197,166, 54, 22, 89,149,205,137, 67,156,102,203,104, 72, 41, 90,168,149,169,102, 21,195,195, 92,130, 70, 58,153, 62, 67, 33, 70, +138,209,228, 39,102,230,183,239,219, 42,161, 50,173, 28, 38,116,116,225, 56,111,147,186, 78,245,190,158, 43, 96,147, 2, 47,110, + 38,117,136,140,145,186,126,183,245, 96, 89,107,236,222, 31,254, 60,189,156,187,117,230,132,223, 80, 77, 15,106, 75, 36,176,136, + 85, 37, 27, 15, 33, 89,118, 75, 14, 20,237, 79, 20, 33,118, 72,136,218,185, 6,165,129,232, 47, 74, 50, 78,169, 69,126,177, 82, + 81,155, 8, 36, 44, 79,216,123,160,118,203,235, 86, 79,175, 4,159, 48, 66, 78,125,165,222, 97, 91,243, 65, 5, 40, 21,212,101, +219,121,153, 55,203, 27, 23,210,152, 51, 36, 35, 84,197, 26,100,207,182,204, 9,211, 28,109,164,156, 98, 36,109,105, 88, 61,164, +242,142,112,213,225,190, 86,217,203,183,138,203, 61,204, 87,142, 46,241,174,208, 2,192,233,143,193, 40, 73,219,186,155,189,165, + 17, 69,106,233, 64,125,236, 14,151,101,226,132,128,144,147, 58, 42,249,206, 68,161,188, 53, 17,212,208, 30, 53, 77,201, 46, 35, + 3, 30,176,242, 82, 27,155,121,249,107, 69, 43, 21, 62,176,138,133, 10,241,216,133,107,158,252, 28,196,105,224,186, 85,217, 33, + 58,134, 87, 4,116, 18,179,148,128,231,109,191,229,113,126,227, 7, 88, 55,153,170, 60,125,237, 10,191,248,241, 31, 97,187,220, +113,239,199,152, 81, 10,124,140, 92,215, 57, 66,204,154,121,236,134,216, 77, 73, 80, 20,154,120, 31, 77, 60, 34, 54, 26,217,133, +121,242, 8, 60, 11, 60,207,113,109,239, 77, 14,228, 30,208, 91, 49, 70,190,247,180,233, 69, 79,177, 94,165,192, 70,138, 50,137, + 7,142,182, 3,246,220,209, 47,167,133, 88, 73, 24, 56, 71,234,206,202,181, 71, 56, 8, 96,116,143, 90,104, 9, 20,180,167,168, +233, 51, 62,254,249, 5,223,127,114, 5, 95,129,187, 59,209, 72,192, 7,108,117,135,107, 13,137, 22,214,189,118,252,233,223,125, +138,243,245, 9,255,226, 91, 79,240,171,223,124, 6,106, 25, 81,107,195,186,107, 69,223,237, 29, 44,157,107, 61,105,141,177,175, + 43,214,251,132,103, 79, 22, 44, 87, 39,172,165, 33, 45, 19,124,175,200, 69,190,187,144, 38, 76,215, 87,184,190, 57, 97, 62,205, + 56,159, 38, 44,167,217, 44,121, 64, 67,219, 54,212,237, 30,249,178,225,252,228, 10,117,223,240,229, 47, 63,196,123, 31,124, 46, +193, 67,165,163,126,246, 9, 69,159, 32,124,199,150,135,230, 10, 0, 68,107,226,252, 16,220,233,247,176, 94, 86,156,175, 78, 28, +126, 17, 38, 20,228,217,113,156, 38, 21, 30,102, 82,204, 50,101,141,104,101,167,249,228,222,163,150,140, 52,113, 92,155,228, 98, +108,174, 15,251,163,243,220,201,139,253,213,209, 64, 30,147,236,153,149,101, 32,129, 32,157, 63, 22,108,242,229, 14, 16,167,209, +129,226,176,247,214,130,197,113,180, 57,146,249,116, 37, 17, 52,152,101, 94, 24,137, 60, 25, 60, 73,127,174,173,225,138, 20, 19, +153, 13,193, 17,171,187,231, 76,191, 59,108,207,222,232,159,110,173, 89,184, 85,136,137,161, 51, 14,167,243,140,101, 57, 97,154, + 39,174, 53, 43,197,121, 11,210, 20, 80,188, 36, 44,182, 46, 58,133, 82, 68,136,220, 56,229,211, 56,108,157,130,240, 43,199, 70, + 23,141, 4,243,136,210,125,223,118, 67,185,214, 34,216,220,157,239,144, 22,114, 18,151, 61, 31, 80,187,205, 2,123, 70, 97, 80, +144,162, 71,103,119,237,152,249, 33,107, 57,209, 21, 73,243, 53, 81,196, 9, 91, 85,154, 5, 78,221, 88, 18,101, 39,172, 10,158, +195,158, 40,236,214, 10,122,174,102,245,213, 34, 42,239,171,185, 97,192,184, 32, 35, 96,112,186,162,184,113,157, 38,129,216, 89, +167, 34,224,134,195, 37, 78,209, 27,255, 44,106, 71,235,173,137, 16, 79,129, 53, 93, 19, 37, 15,246, 56,112,165,122, 32,196,105, +129,131, 38,231,137, 3, 40,146,139,240, 8,232,182,215,135, 77, 89, 85,175,166,249, 22, 81, 69, 0,250,226,154,117,141, 10, 89, +231, 58,122,205,220,169, 58, 30,152,244,210, 57,145,206, 41,136, 70, 51,178,197,179, 88,205, 42, 85,246,157,216,206, 74,138,150, +116, 39,154,145,222,155, 55,107,210,168,148, 7, 46, 79, 95, 30, 21,235,120, 47,246, 21, 25,223, 68,222, 33,157, 66,146,108,185, +222,234, 3,175,181,227,124,158,209,170,166, 27, 21,214, 46,210,217,195,130,103,132, 91,236,188, 16,156,148,195,155,179,100, 99, +107,176,130,142, 73, 20, 7, 43,228,164,108,214, 52, 29,217, 40, 57, 8,246,240,145,142, 7,177,254, 77,196,219,206,147, 39,120, +161,195,209, 79, 46,105,105, 29, 46,114, 36, 84, 10, 92, 76,168,101,133,111, 94, 48,154,112,152,151,197,138, 40,231, 3, 2,119, +153,129,254,118,249,189, 61,171,255,138,192,164, 45, 83,254, 82,193, 26, 78,111,160,250, 71,112, 46,227,230,209, 9,229,254, 11, +124,250,243,255,196, 67, 69, 84,246,114,136,110, 70,141,211, 98,200, 98,119, 27,168, 62,174,220,185, 30,226, 9,155, 4, 46, 56, +218,126, 36, 69, 47,216,238, 83,173,114, 26, 82, 35,255,142, 8, 89, 26,195,105,228,193, 13, 98, 35, 50,123,220, 24,167,187,230, + 76, 44,231,220,248,179,132, 52, 41, 29,119, 36,246, 89,234, 84,196,178, 44, 44,218,196, 66,163,123,204, 70,187, 18, 66,176,195, + 6, 0, 94, 62,175, 56,191,200,120,244,230, 25,123,110, 8,231, 25,253,234,140,116,117, 66, 57,159,209,190,248, 28,121,189,199, +212, 29, 62,252,242, 30, 31,124,117,193,227,243,132,223,250,149,199,198, 18,104,165, 96,111, 50,203, 85, 33,106,205, 44,144, 74, + 67,131,199,118,217,112,158,129,237,178, 35, 78, 59,246,234,112,190, 62,225,126,111, 84,160, 23,212,178,163,182,142,251,187,130, + 37,223,225,235, 23,247, 50,110,228,184,115,154, 34,182,251, 21,181, 85,108,151, 13,183,183, 47,241, 15,255,240, 41,238,214, 13, +119,151, 59,220,111,247,240,209,225,141,239, 77,248, 63,127,250,247,112,222, 99,219, 11, 66, 18, 1,156,116, 6,162, 1, 9, 90, + 32,181,110,162,164,198,221,122,221, 51,153,252,188, 20, 89,213,213,218,224,179,103,168,136, 92,216,209, 57, 20, 28, 98, 69,131, + 71,173,194,242,214,168,226,121, 89,176, 94, 58,156,227,184, 52, 23,212, 34,124,137,202,247, 87,119,184,235,186,217,249,144,115, +198,180,204,210,169, 77, 82,140,251, 69,156, 32, 58, 69,204,123, 57, 76,230,154,217,101,101,154, 22,153, 45, 95,236, 44,210,145, +184,231,190,182, 41,244,209, 7,164, 83,194, 52, 37,156,174,206,152,166, 25, 49, 37, 99,104,168,167, 58, 80,192,103,142,152,170, +164, 76, 57,155, 54, 70,151, 74,250,176,231,116,162, 89,131,163,190,105, 31,100, 45, 26,130,104,124,230,121, 33, 92, 70, 58,183, + 20, 29, 93, 25, 48,198,136, 35,128, 68,130,174,100, 26, 16, 72, 71,204, 89, 57, 12,242,191,245,207,208, 8, 98,145,243,114,179, +244, 71,231,100,106,170, 0, 50,237,254,181, 32,246, 10,107,105, 56, 36,112, 54, 42,246, 9,172,177, 96, 41, 41,234, 28, 11,133, + 24,147,176,242,185,215,247, 65,169,162,114,237, 5, 10,242, 84, 11,225, 8, 41, 83,177, 89,135, 0,168,108,221,114, 96,173,244, +166,116, 80,225,213, 59, 77,147,112,221,162,104, 21, 50,164, 24,215,214,221, 97,138,235,108,218, 8,235,232,221, 72, 87, 99,135, +109,207, 84, 19, 2, 95,211, 32,168,134, 65,251, 68,231,222,222, 63, 88,101,134,144, 40,124,230, 42,220, 53, 30,221,188, 47, 9, +229,210,203, 60,165, 25,206,105, 76,236,241,222,172,136,101,223, 8, 47, 81, 16, 3, 44, 65,169,211,106,144,247, 17, 20,175,209, +154,157,127, 67, 5, 58,232,125, 86,184, 95, 81,208,126,167, 87,119,223,154, 49,116, 27,191, 84,217,191, 17,155, 74, 53,188, 20, + 13,220,235,176, 75, 23,209, 50, 71, 89, 41, 98, 57,205, 72, 83,194, 60, 79,210, 97,176, 59,211,176, 22, 71,129, 86, 41,133, 15, + 78,199,122,217,108, 4,239,208,105, 47,145,151, 89, 14, 28, 90,155, 60,255, 14,117, 76, 11, 98, 12, 40,140,234, 83,216,142,116, +244,242,208,184, 42,135,221,182, 83, 37,237,186, 49,173,213,174, 16, 24,235, 89,225,224, 19,153,237,181,216, 46, 94,186,206,110, +162,156,222,186, 0, 33,184,191,143, 73, 46,179, 86, 27,106, 47, 68, 51, 22, 19,239, 28,119,195,222,192,110,149, 58, 7,122, 66, +189,116, 89,193,123, 82,252,228,179,113,126,194,242,230, 15,176,174, 59, 78,167,132, 39, 79, 79,120,239,255,250,119,200, 59,243, +154,115,181, 49,165,114,136,125,224,159,135,222, 93,176,139,233, 10,241, 9,142, 76,230,102,144, 6, 79, 5,116,156,102, 98,137, +131, 88,122, 40, 4, 4,173, 61, 50, 5,145,169,139,119, 74, 21, 19, 11, 85,160,191, 86,214, 63, 59, 71,160, 71,238,123, 39, 85, +174,218,243,162, 32, 9,209, 26,137,167, 63, 77,179,113,246, 27,131, 38, 92,239,226,101, 15, 76,246,234,146, 28, 55, 45,139,165, + 3,150,226,241,217,251,175,240, 27, 79,174,113,161, 74,214,157,175,144,207, 87,232, 81,168,124,238,245,183,224,190,250, 12, 47, +110,239,241,167, 63,127, 1, 23, 60,126,235,237, 71,120,116, 53, 25,187, 92, 58, 73,177,139,229,204,226,165, 3,141,233, 85,117, + 47,152, 60,144,162,195, 79, 63,121,129,159,255,248,125,132, 63,237,120,237,217, 13, 82,114, 40, 77, 14,220,125,223,208,123,181, + 68,185,198,228, 50,207,176, 27, 69, 16, 87, 85,175,179, 51, 13, 49, 33,156, 59,206,179,183,207,251,235,124,135,214, 35, 98,156, +244, 35,179, 29,167, 17,179, 28,108, 29, 49,114, 7,100,229,211,122, 19,229,255,190,137,184, 80,187, 25, 62,211,105,154,216,225, +203, 5,149,152, 53,145, 38, 5, 33,201,129, 60, 77,193,224, 34, 49, 77,104,125,199,171, 23,119, 8, 49,113, 50,225, 12, 77,237, +131, 20, 12,165,116, 78,221, 70, 74,162, 34,170, 53,176, 68, 61,219,221,117, 75,155,212, 72,101,153,250,201, 65,171, 44, 5,155, + 72,129,193, 62,236,208, 43, 5,127, 49, 70,164, 20,177,156, 78, 88, 78, 39, 76,203,108, 29,250,114, 94, 16,147, 48,224, 47,247, + 43,187,192, 96,157,221,182, 21, 76,115,228,152,189, 24,239,189, 85,105,168, 42,139,165,222,155,197, 78,171,232,110,154, 19,230, +121,193,147,167,143,100,133, 25,229,157,150, 34,201,113,210,229, 13, 39,171, 59,242, 90, 71,194,157,228, 25,196,193, 0, 33, 21, + 50, 51,148,165,213, 42,216, 94,116,100, 42,253,229,252, 35, 89,175, 53,148,170,147, 78,207,181,236,112, 72,168,186, 93,162,122, +243, 64, 59, 43,124, 39, 70,115,178,136, 75,198, 91,103, 46,123,229, 96, 57, 21,206,123,203,206,240,206, 83,227, 2, 54, 85,197, +238, 0,242,134,184, 78,174, 38, 44,204,251, 69,196,140,204,232,104, 26,201,174, 52, 47, 22, 22, 48, 33,218, 64,211,154,142, 73, +221, 77, 29,195,142,172,182,188, 67,102,133, 76, 87,250,131,231, 89, 47,112, 1,239, 4,244, 94,108,154,169,239, 71,119, 18, 87, +222,221,192,229,154,251, 41,120,243,216, 71, 18, 22,181, 91, 55, 50, 94, 23,155,233,233,116, 66,108, 85,184,178,121, 19, 35,126, + 96,117,169, 93, 82, 45,172, 46, 26, 14, 50,126,205,176,245,244,237,118,180,174,212, 45, 33,187,237, 91,150,189, 48, 28,166, 73, + 4, 1, 58, 94, 86,219,155,144,145, 10,213,199, 64,111, 25, 13,193, 30,186,192, 49, 91, 41, 13,211,180,136, 47,115, 74,132, 11, + 56, 83, 60,106,183,216, 90,227,232,168,154,159,177, 85,221, 81, 53,126, 64,178,255,174, 53, 75, 84, 32, 31, 94,207, 81,149,140, +121, 2, 87, 15,221, 14,125,253, 2,106,145, 80,152,148, 34, 95, 22,194, 23, 56,134,214, 7,190,247,134,189, 22, 9,171,200,153, +171,133, 78, 5,103, 68,160, 42,216,187,110, 23,179,166,226,137,229, 75,162, 87,181,115,133, 27,188,226,237,178,241,159,201, 24, + 84, 35,112,149, 37,222, 29,108,100, 14,200, 56, 95,117, 2,158,158, 91,231, 61, 90,151,162,108,122,252, 46, 74, 75, 72, 9,120, +250,218, 13, 94,124,242, 62, 94,124,241,169, 4, 67,184,142, 22, 96,106,115,122, 89,196,206,150,179, 37, 72, 53,170,115,171, 93, +248, 21,221,139, 55,216, 81,184, 2, 45,156, 66, 28,192, 29, 72,168, 77, 0,197, 32,181,160,113,212,238, 57, 38, 69,175,210, 41, +171,206,130, 47, 48,208, 76, 23, 33,177,138,147,133,178,184, 56,217,110, 78,172, 52, 82,160, 74,225, 22, 56,150,211, 9, 73,229, + 30,158, 48,159,125, 19, 81, 82, 45, 70, 43, 19,176,134,195, 47, 62,184,197, 91,105, 70,243, 30, 91,131,176,214, 91,135, 91, 87, + 52, 23, 80,154,136,190,250,227,103,248,232,139, 11,126,249, 98,197, 57, 6,124,247,173,107,249, 76, 90,131,139, 73, 4,100,247, + 43,182, 44, 99,207,141, 42,246, 92, 58, 82, 12,112,121, 71,156, 59,220,147,103,120,254,179,175, 17,230, 29,215,215, 1,107,126, +142,220,152, 63,237,164,147,149,142,163,115, 76,237,120, 17, 20, 19,192,118, 30, 94,122, 17, 3,206,214, 61,129, 19,178,198, 73, +145, 90, 10, 77,164,211, 61, 59,105,233,252,106,107, 72,233, 24,101,234,209,208, 68, 60,218, 59,122, 20, 65,150,162, 90,245, 63, +161, 11, 81,177,146,106, 38,197, 65,176,117, 86,135, 67,175, 13, 33, 69,228, 34,100,172,105, 94,100,109,183,109,216,246, 21,125, +221,177,156, 26,150,243, 21,193, 37, 20, 50,213, 14,239,155,145, 37,229, 51, 14, 72, 49,114,228,221,172, 11,211,209,176,238, 55, +157,229,111,143,149,218,182,237,166, 76,151,179,165,217, 58, 77,173,147, 41, 5,184, 41,146,171,126,194,249,234, 76, 0,204, 8, + 70, 9,196,118,234,254, 83,253,240,194,170,119,216,214, 93,206, 64,186,104,244, 82,112, 22,138, 64,100, 51, 17,160,206, 59,204, + 81, 56,238,211, 60, 3, 78, 84,240,222, 59,211, 60,169, 0, 24,189, 90,218,151,188,251,157, 69,188, 27,120,235, 82,209,218,110, +161, 44,162,108,151,240,154, 66, 81,160,136,177, 6, 53, 79, 87,162,130,181,141,140,210,117, 44,254,186,217,137, 37,252, 75,130, +146, 68,175,227,224,125, 18, 49,172,119, 12,121,114,182,250,213,231,209,133, 1,237,114,182,194, 21, 17, 92,235,213,208,190,146, +133,209, 25, 6, 84,121, 94, 87,128,188, 13, 41,116, 51, 74,222,134,178,189,105,200,133, 31,129, 92,124, 31, 70, 50,160,179,187, +222,178, 35,104,157,209,233,179,194,102,116, 66,112, 76, 46, 29,194, 57, 28, 26, 95,141,111,165, 53,142,161, 67, 20, 66,177,208, +179, 32,215,131, 32,110, 32,103,189,143,230, 28,208, 0,155, 16,146, 5,123,181,222, 16,168, 87,138,222, 49,137,204,201, 1, 46, +249,214, 3, 70, 47,135, 69, 59, 48,156,199,126, 86,163, 54,165, 51,211,132, 49,103, 64, 24,221, 21,170,160, 78, 76,244, 26,169, + 87,141, 3, 44,171, 6,103,149, 71, 48, 91,141, 6, 30,120,170, 27, 3,230, 57,113, 92, 19,201, 72, 6,249,211, 5, 59,125,228, +219,186,139, 55,151, 56,214,194, 29,149, 84,173,160, 48, 79, 66, 91,246,109, 29, 23,121,240,136,113,178,106, 86, 65, 52,181,200, +142, 71, 58,212,136,211, 89,186,151,182,107,117, 93, 13,191, 88,154, 10,119, 58,202,158,129, 36, 10,239, 94, 11,166,137, 93, 41, +134, 88, 70, 89,227,158,161, 45,181,116, 90,189, 96, 97, 36,186,127, 43,121,199,118, 89,249,185, 56, 19,175, 9,246, 50,154, 18, + 84, 45, 34,222, 7,134, 1, 4, 59,192,101,124,229,172,210,140,203, 35,248,243,219,216,247,134,171,235, 25,167,185,225, 71,127, +252,103,112, 62,114,183,218, 16,208, 16,147, 27, 22, 62,215,137,250, 29,241,140,218,173,123, 66,113,100, 45, 34, 47,183,142,197, +188, 83,124, 48,119, 66, 14,232, 57, 75, 49,213,187,224, 91, 77, 52, 37,180,169, 16, 28, 28,162, 89, 54,208,155,248, 57,131,236, +112, 61,199,183, 33, 77, 86,252,104,252,164, 70, 61,182,222, 49, 45,179,113,232,237,185, 59, 88,135,188, 15,216,183,141,136, 93, +185, 8,230,101,193,180,156,216, 89, 39,180,210,241,226,179,140,119,191,113,133,181, 59,224,124, 70,127,252, 24, 27,128,190,222, + 99,158, 42, 92,243, 40, 77, 68, 68,127,241,193, 87,104,189,227,183,191,121,131,171, 36, 48,142, 20, 3,218,158,209,168,166,174, +188,236,246, 38, 34,195, 41,202, 52, 99,185,114,216, 78, 79,144,231, 5,207, 30,159,241,234,171,207,168,106,246, 3, 88,161,156, +130, 62, 24,229,186,239,148, 75,127, 0,147, 60,113,160,106,151,145, 21,154,124,126,131, 80,229, 76,208,229, 31,168, 11,168,252, +167,166, 68, 84,209,222,198,209,114, 48,123, 17, 86, 85,112,122, 32, 29,175,226, 63, 67, 12, 88,215, 77,138,242, 16, 24,191, 42, +239,147, 2, 77,172,191,225,119, 20, 99,180,164,171,206,241,103,206, 5, 97,207,152,102,242,188, 33, 34,175,245,178,155, 22,163, +182, 6, 87, 27, 66, 96,151, 3, 25,215,246,126,144, 12, 97, 60,183,141,207, 46, 14,120, 82, 85,137, 59,195,143,182, 17, 52, 68, + 20,105,107, 29,203,105,193,249,250,204, 9,226,194,120,217,104, 43,139, 20, 35,214,203,106,221,155,115,142,227,126, 25,231, 23, +238,165,197,211, 61,212,212, 58,246,117, 62,194,209,159, 47, 80,170, 25,203,233,140,148,130,137,140, 67,244, 86,152, 52,138, 85, +205,177,208, 52,239,193, 83, 20,214,236,188, 82, 50,156,172, 43,119,142,200, 9,148, 33,179, 94, 69,144,129, 25, 30, 58,205, 24, +224, 21, 54, 49,236,202,245,187,149,221,180, 76,165, 18, 59, 77, 77,219,180,132, 58,221,151,107,156,180,146,100,148,224,118,192, +111, 59,239,209,235,200,221,104, 96,212,116,169,112,104,168,112,212, 50, 21,244,154, 9,211,169,156,204,106,145,212,161,174, 69, +160,219,217, 9, 28,149,235,135,117,244,112,152,141,231,164,203, 84, 75, 5,143,131, 87, 32, 99,172,162, 42,116, 54,166, 93,187, +117,174,181,117,146,164, 58, 38, 17,125, 71, 43,192,132,182, 25,237, 98, 47, 53,203,101,221, 10,159,147,104,239,159,138, 13,117, +234,221,200, 17,137,219,186, 82,213,190, 91, 12,170,115, 28,104,246, 66, 3,189, 92,136,224, 72,164,213,134, 94,253,193, 79,215, + 80, 89,106,212, 3, 95, 93, 89,188,173, 53,177, 56,112,103, 82,107,230, 37,212,185,119,106, 54,230,214,145,190,226,135,122,147, +241,207,213, 44,251,174,214,192,156,225,161, 30, 84, 32,131,118,254,232,221, 62,192,198, 5,152,142, 0,143,162, 24,217, 69, 53, +148,188,211, 99, 27, 81,115, 65, 33, 51,120,223,216,201, 78, 50,246,243,204, 13,151, 47, 3, 60,116,228,162, 16,255,164,116,130, +138, 40,197,212,109,143,237,130, 88, 81,166, 20,169,202,148, 17, 85,154,100,215, 95, 90, 19, 43,142,143,195,247,223, 52, 61,205, +163, 53,114,149,189, 3,202, 33,151,156, 66, 51, 29,189, 43,232,191,213,102, 59, 33, 71,161, 94,247, 99,135,163, 79,229,252,244, + 59,216,101,229,143,103,175,221,224,195,191,251, 83,166,142, 69,118,112, 1,193,171,141,172,243,239, 87, 16, 34,189,202,181,162, +213,142,156, 55,179,206,132, 32,163, 53, 56,133, 16, 69,177,155, 81,148,167, 54, 31, 52,217, 27,229,245, 66,150,187, 55,159,180, +236, 23, 35, 21,239,196,146,234,133,229,228, 66, 10, 49, 26,211, 89,252,211,201,240,187, 53,239, 98, 81, 76, 73,220, 4, 28,225, + 53,102,169, 15, 50, 96,225, 1,151, 37,232,165, 10,136, 39,166,132,229,124, 37, 36, 68, 39,221,253, 60,123,156,175, 23,124,122, + 39, 8,209, 19, 46,240,165, 34, 62,122,132,234, 38,180,220, 17, 80, 49, 37,143,247, 63,248, 12,159,125,117,139, 39,215, 11,190, +255,235,223,128,219, 46,112,189,161, 87, 22,112,173, 97, 93,165,160,245, 14, 56, 77, 17, 41, 2,113,114, 40,197,161, 76, 55,136, +215,143,228,114,242, 28,199,146,213, 32, 99,188, 97,183, 18,206, 4,115, 23,104, 85,148,119, 50, 51,235,220,143,164,169,131,245, +200,135,177,143,115, 4, 59, 12,188,101,179,139, 46,248,192, 65,139, 55,140,166,138,233,212,230, 42, 17,197,244, 99, 55, 77,176, +234, 84, 47, 75,177, 16,200, 33, 16, 88,148, 31,172, 6, 78,184, 66, 12,216, 55, 89,179, 56,238,202,115,150, 53,211,124, 18, 88, +143,138,198, 66,172,214, 21, 43,111, 64,166, 14,117,116,215, 12,138, 50,113,174,237, 64,155,237,175,133, 77,126, 80, 33,115,244, +173,241,166,165, 20, 91, 13,193,116, 0,162,198,214,142,124, 89, 68, 36, 39, 89, 11, 9,137, 43,159, 52, 37,131,106,197, 20,177, +239,249,176, 91, 87,120, 20,108,114,230,117,111,157,139, 93, 6, 34,222,108, 92, 55,206, 88, 78, 39, 78,164,100,226,145,146, 31, +211, 16,238,241, 47,247, 27, 65, 60,154,132, 22, 41, 52,172,182, 74,211,108,190,156, 11,246,125,195,182,110, 38,100, 19,209,115, +179, 14,183,183,134,230, 7,183, 18,153, 40, 0, 0, 32, 0, 73, 68, 65, 84,100, 74, 46,150,106, 24,235, 76, 65,154,230,121,139, + 23,190, 48,215,189, 31,124,232,129,216, 83,174, 91, 44,198, 55, 88,241,233, 60, 76,107,211,122,229,153, 10,212, 74,141, 20,131, +162, 36,241, 17, 70,181,147, 73,212,206,137,237,142,195, 2, 92,206,198,134,193,137,239,162, 96,215,189,184,194,174,228,249, 45, + 54,197,209,117,147,237,232,185,179, 86,205, 66,227,106,198,188, 90,221, 1, 8,230,152,106,221,153,230, 71,227,197, 71,247,221, +249,122,141, 17,189,112,239, 3, 31,211,254, 48, 56,134, 69,168,247, 13, 83,154,237,222,169,181,153,176, 91, 28, 0, 29, 81, 42, +196, 54, 84,174, 24,201,108,208, 49,194, 65, 13, 47, 35, 8,217,125,111, 12, 68,145,142,204, 89,228,169, 9,177, 66,192,101,205, + 70, 12,114, 33, 9,149,201, 57,219, 3,143,131,105, 68,206,193, 57, 52,114,154,247,178, 34,132,100,163,216,121, 78, 99, 68,194, + 67, 74,186,244,140,187,219,123,218, 46, 26,214,117,195,233,124,226,197,215,200,137, 14, 88,215, 66,133,181, 67, 45, 35,227,214, +162, 81,157, 67,207,221, 32, 56,206,123,236, 59,173,122,220,133,214, 90, 56, 14, 18,139, 83,222,165, 3,217,214,237, 65, 23,158, +210, 4, 7, 33, 23,165, 16, 57,162,146, 78, 36,114,247,164, 44, 97,169,151,188,169,214,251,131,160, 12, 88, 80,139, 88, 8, 61, + 5, 92, 84, 10, 7, 9,110, 41,123, 70,154, 68,116, 36, 81,160,206,180, 17,173,117,248, 22,132,146, 70, 63,167,155,158,162,135, + 71, 40,235,138, 39,207,174,209,243,115,124,249,209, 63,200,222,135,170, 75,221,227,244, 94, 1, 39,113,155, 33, 78,180,135, 37, + 56,223, 16, 98, 23, 44,112,240, 6,101, 16,224, 75, 61, 20,114,176,142,209, 57,135,188,101, 73,222,234, 28,229,145,172,103,236, + 0, 34,116,155,133,107,136,229,204,113,199, 46,207,132, 35, 74,119, 49,254, 0,232,211, 15, 49,218, 46, 62,120, 79, 92,109,231, +122,168,154,191,118,223, 46, 76, 25, 44,134, 50,245, 33, 98, 62,223,208,149, 0,184,152,208,122,192,190, 53,228, 6,220, 6,143, +215,207, 9,190, 3,113, 22,219, 90, 74, 65,224, 16,232,216,114,199,143,126,242, 75,180,214,240,187,255,244, 93, 44,111,190, 1, + 60,255, 26,254,197,115,187, 52, 83,244, 0,225, 66, 29, 29, 87,147, 92,232, 62, 56,196,215,222,146, 28,241, 82,112, 90, 34,238, + 95,222,179,120,242,240,209,217,232,112, 92,240,163,176,117,156,142,116,219,217,117,248, 3,123, 90, 47,113,207,176, 21,181, 34, + 41, 39,189,163, 24,165,236, 65, 22,122,215, 48,160,134, 86, 58, 60, 1, 76,129,129, 31,170,144,246,174,217,123,225,181,211,114, + 64,219, 55, 94,176,238, 65, 7, 36,130, 50, 41,150, 53, 66, 84, 2, 83,220,200,108,143, 9, 33, 87, 52, 63,156, 17,138, 26, 22, +209, 80, 2,224, 13, 26, 37, 66,167, 17,163,234, 92, 27, 43,136, 58, 70,232,160,175, 61,239, 5,167,171,147,240, 57,218, 80, 74, + 43, 22,180, 20,217, 69,107,102,195,233,124,178, 32,170,211,105,193,180,204, 50, 14,231, 69,126, 58,159,100,252,238, 61, 90,136, + 88,203,134, 90, 68,168,216,121,145,110, 91, 54,240,147,167,245, 77,237,100,222,117,132, 52, 26,146,148, 18,210,188,224,116,117, + 30,254,123, 63,242, 34, 44,119, 34,120,138, 0, 97, 64,157,121,153,217, 93,118, 58,145,164, 72,242,228,218,239,219,134,117, 93, +205,107,190,179, 16,160, 6, 91, 88,245, 33, 90, 97,163, 32,159,100,241,219, 64,138, 73, 64, 49,138,252,238, 13,181, 13,232,144, + 3,108,106,227,186,156,241, 41, 70, 84,200, 84, 65, 91,141,214, 26,187, 77,189,240,128, 86, 26,217, 40,254,176, 90, 24,251,251, +188,239, 64,175, 76,130,171,230,172,210,162, 76,157, 47,253,216,241, 3,112,221,161,234,170,195,143,179,206, 25,229, 77, 53, 21, +120, 48, 13, 51, 62,129,218, 35,209, 13,187,173,191, 79,135,190,131, 67, 20,168,212,184,214,184, 47,247, 3, 77, 46, 69, 73,179, + 40,114, 41, 46, 3, 84,185,166, 98, 56, 41, 76,135,151,253,104,121, 6,167,105,206,121,196, 90,170,161, 31, 77, 48,224,130,189, +196,218,185,195,121,170,172,101,252,230,117, 68,113,176,188,168,218,207,192, 40, 57, 91,151,215,253, 8, 60,145,207,172, 35,171, + 5,129,135, 71,161,197, 74, 31,240, 14,134, 66,196, 32, 94, 87, 98, 60,245, 82,212, 48,150,156, 11,246,156,109, 23,111, 99,179, + 82, 40,148,210,209,136, 8,231, 52,221,168,240, 16,176,168, 60,139,234,237, 60,164, 86,248, 24,145, 8, 63,209, 17,118,224,158, +252, 56,186,237,173, 91,101, 90, 75, 6,226,225,208, 33, 96, 70,171,114, 57, 68, 59,247,242, 21,145,187,102,177,219, 72, 69, 29, +147,163,202, 18,216,183,213,200,105,141, 66,197,152, 38, 99,119,235,139, 51,205,146, 58, 38,190,244, 32, 59,202, 40, 8, 75,111, +233,110, 26,225,151,176, 60,253, 14, 94,221,110, 56,157, 38, 60,126,178,224,103, 63,252, 19,218, 6,101,199,191,109,155, 76, 74, +178,238, 28, 61, 60, 47, 83,225,189, 11,249, 76, 31, 90,101,204,171,106,210, 24,206,170, 90,175,197,178,237,153,168, 43,226, 55, + 30,236, 74, 35,236,228,198,235, 67,175, 20,187,224, 29, 69,118,210, 33, 76,167,133,119,134, 6, 7, 21,225, 32, 51, 75,185,146, + 46,167, 40,219, 66,129, 83,201,186, 71,204,128,210, 11,249,148,196, 52,227,124,243, 8, 33, 78, 40, 53,224,207,255,226,107,220, +222, 61, 71, 41, 29,123,233,184, 90, 78, 56,167, 29,174, 3, 79,175, 38, 60,122,124,131,235, 39,215,104,181,225,114,191, 33,120, +224,199, 63,249, 16,175,238, 55,124,239,157,103,120,247,157,215,132,202, 56, 37, 82,193,100,180,237, 99,192, 90,138,116,101,173, + 99, 78, 14,211,121, 70, 56,157,176,157, 22,132,109, 71, 93, 51,226, 20,112, 61,123,236, 95, 85,224,202,161,100, 48,228,199,161, +218,152,184,217,139,173,159,221,113, 47,219,213,126,217,117,106,213, 1,223,141,178,167, 98, 32,104,160,145,111,230, 99,142, 73, + 52, 40,137,222,253,105,154,176,173, 42, 58,149,164, 69, 80, 4,138, 94,205, 30,232, 29,184, 79,141, 8, 93,138,228,125,221, 48, +159, 70,174,132,171, 64, 11,221,222, 67, 79, 39,196,186,174,150,161,160,194,160,121,153, 81,234,133, 89,217,129,200,214,192, 92, + 9,118,123,209,161, 49,161,208,118,145, 65,118,169,226,171, 47,246,158, 15, 30,124, 52,160, 72, 43,131,250,229, 67, 64,203,242, + 1, 77, 76,135,243,206, 33,206, 19, 34, 83, 20, 99, 12,152,151, 9,243, 60,155, 55,252,116, 62,145,251,158,164,200, 45,213,236, + 98,149,217, 22,165, 8,147,163, 20,103,164, 68, 17,254, 73, 67, 19,210, 16,128,165,148,224, 67,194,188, 44,182,211,214,193,129, + 39, 44, 70,173,129, 98, 59,109,214,132,205, 44, 52,106,107, 40, 91,230,202, 67,132,173,247,247, 27,197,194,133,201,100, 21,219, +186, 31, 80,192,206, 20,228, 58,141,213, 76, 14,179,246,213,193,211,152,195, 68,191,127,182, 85,208,128, 12,141,110,247,152,191, +161,106,112,176,224,240,204,123,240, 78, 11, 3, 33,202, 73,198,185,140,235,213,250,215,123,149, 68,191,154,105,155,237,230,188, + 26, 43, 39,111, 20,118, 19,190, 81, 96, 55, 34, 93, 27, 80, 15,248, 86,189,192,155,198, 11,107,103, 61,212,236,120,208,157,143, +203,187,107, 10, 32, 84, 80, 55,246,234,181, 61,244,167,123,174, 9, 11, 83, 77,187,218, 40,221, 96,204, 43,159,164, 19,187,171, +236,151,218, 6, 24, 71,221,100,234,254, 10, 33, 32,194, 9,115,214, 7, 81, 19,235,174,163,247,134,170,149, 71, 3,122,205,150, + 12,134, 94, 37, 44,196,118,164,236,238,131,140,102,125,240,242,107, 58,238, 60, 88,149,212, 90,108, 4,219,154,103,247, 78,200, +131,119, 84,203, 86, 27,155,169,176, 71, 73,111, 49, 37,204, 11,253,139, 76,237,217,182,140,245,178, 98,223, 50, 5,105,149,244, + 42,207, 10, 88,186, 99, 23,228, 98,221,214,141,212,176,140,105,138, 88, 87, 25, 53, 21,170, 67,231,121,178,253, 99,151,183, 4, +205, 59,120, 23,108, 20, 34, 92,102, 32,239,170,112,167,112,208,113,197,224, 60,124,146,157,239,249,234, 44,169, 96,225, 97,186, +149,118,159,141, 30, 92,249,177, 96,112, 25,173,194, 42, 99, 99, 75,150,142,197,251,202,142, 32, 90,172,173,247, 2,254,232, 24, + 65, 50, 90,145,170, 45,194, 57, 79,138,155,140,128, 78,175,125, 23,247,171, 20, 89,215,143, 78,184,124,245, 75,228,109,165,138, +221,147,192,197, 65, 45, 99, 86,157,239,140,120,132,141,252,106,107,136,230,134, 24,158, 79, 56,245, 94, 71,138,223, 4,146,211, +109, 55, 68,200, 78,144,146,188,236, 59,153,226,145,207, 74, 54,216,142,163,242, 55, 26,195, 90,232,112, 67,196, 40,216,198, 24, + 84,129,223,152,174,229,152,119,159, 81,157,132,189,168, 88, 77, 86, 20,153,160, 37,160, 54,135, 52, 79,184,126,244, 20, 29, 1, + 64,196, 15,255,234, 5, 62,251, 66, 40,129,243,146, 16, 75, 69, 90, 78,168,104,184,119, 19,214,219,138,187, 79,111,241,122, 6, +222,124,227, 6,143,175, 34,238, 47, 25,239,189,255, 9,174,207, 19,126,239,159,127, 15, 33, 6, 76, 41,160,110, 27, 2,153,237, +189,117,164, 8, 4,250,184,247, 82, 81,111, 30, 35,190,243,171,168,205, 97,170, 25, 29, 13,201,157, 16,131,195,107, 79,207,184, +125,239,130, 39,143, 79, 38,190,106,165, 89,154,150,115,209,118,190, 15,105, 86, 50,114, 15, 12,187,108, 29,131,244,215, 20,164, +197,176,112, 46, 98, 29, 39,116, 29,141, 83,172,128,152, 24,126,225,100,101, 22, 2, 59,138, 14,218,154,132,201, 93, 25,230,161, + 68, 57,121, 95, 68,119, 51, 77,211, 33,139, 92,157, 17,157, 69,168, 36,205, 21,211, 6,200,103,148,247,221,224, 68,160, 78, 66, + 70,171, 2,197,106, 97, 76,146,148,149,209, 90,160, 38, 69, 27,133,106, 74,249, 52, 77,116,173, 52, 67, 41,151, 44, 69,200, 60, + 51,231,188, 54,244, 24,237, 64,119,214, 69,139,253,107,154,147, 1,102,148, 72,231,131, 39, 7, 95, 64, 47,105, 74,152, 79, 51, +208, 59,238,110, 47, 22, 83,188, 83,128,199,233,177, 48, 54, 88,148,128, 8,109,165, 26, 58, 42,237,125, 72,240,220,167,135, 32, +116, 62, 13, 53,170, 44,118,228,172,148,233,164,124,102,206, 66, 94,138,177,219, 11, 66, 0,106,145, 98,125, 91, 55,108,219,102, +171,167,109,207, 18,132,133, 49, 50, 14,196, 71, 71,186, 20, 52, 23, 65,133,107,157, 80, 28, 81,208,239,244, 75,215, 7,163,107, +221,253, 2, 35, 20, 71,173,198, 90, 52, 4,181,177,113,122,160,126,120,121,214,139,113, 12,180, 65,168,125,252,111,189, 54, 77, +255,209,117, 45, 9,158,177,149,193, 98, 92,243,246,142,230, 49,166,161,132,167,117,235,184, 49, 32, 48, 74,109,163, 53, 88, 69, +113,253,240,123,142,139,189,143,232, 84,186,191,218,131,127,174,243,143,193,111, 25, 43, 2, 45,170,245, 99,243,182, 58,232,180, +221,121, 22, 82,114,174, 37,101,218, 81,253,222,145,210, 66, 77, 67, 68, 84,111, 98,111,142,162,153,102, 59,166,166, 88,192, 48, + 56,191,186, 83,210, 17,123,171,133, 94, 99,207,177,142,140,209,244,146,143, 49, 80,188, 65,114, 22, 83,201, 74,145,125,159, 60, +196, 96, 18,145, 84,126,182,199,160,127, 87,124,171, 51,199,127,170,186, 23,161,145, 8,134, 10,187,135,194, 88,196, 66,242,155, +168, 49, 99,138, 6,116,112,222,163,108,187, 9,197, 90,131,169,198,209, 69, 9, 31, 56,110,210, 81, 76,219, 68,181,158,248,235, +232,200,195,170, 80, 18,246,132,131, 46, 59, 41,181,103, 36, 50,138, 29,132,202,215, 14,188,103,225,209, 51, 57,107,138,188,196, +162, 21, 38,146, 55,127,176,144,229,194,128, 20,201,164,158,151,161, 24,143, 73, 69,120, 30, 21, 69, 62,103, 47, 82, 22,209, 51, +116, 35, 85,165,211, 51,180,248, 4,117, 93,113, 58, 77, 88,166,138,159,255,228,239,200, 92,158,197, 86, 81, 43,189,242, 77,224, + 53, 77, 98, 35,187,217, 63, 48,236,126,244,220,202, 69,237,132, 40,231, 2,224,153,234,228, 60,224,154, 88,216, 18, 89,205, 94, +138,195,206,100, 38,169, 76,154,101, 26,171,224, 47, 16,158, 50, 77, 51,224, 58, 82,154,105,125,219, 31, 64,107,132, 20,181,161, +213,140, 16,147,100,215,239,155,133, 54,228,125, 51, 33, 93,183,116, 36,126,247,112, 72,193,227,116,245, 8, 33, 45,240, 33,226, + 39, 63,121,133, 23, 47,129, 39, 79,174, 13, 54,228, 67, 68,156, 18, 5,148, 13,251,186,225,242,209,231,120,254,245, 45, 62,253, +135, 79,240,108,114,120,177,101,132, 57,226,159,124,251, 77,252,202, 59,175, 65, 13, 3,113,142, 8, 97, 65,171, 29,209, 9, 36, +232,101,121,129,155,235, 19,182, 61,227,141,183, 94,147,238,174, 3,185, 22, 41,156,162, 67,108, 5,201, 55,220,222,109,104,117, +178,156, 6,141,223, 21, 6,255,176,144,170,136, 82,143, 57,111,169, 86,242, 25,121,117,151, 96,236, 75,189, 15,200, 69, 4,139, +106, 89,148,216, 83,134, 3,213, 62,162, 67, 67, 64, 8,130, 57,206,165, 34, 32, 90, 98,160, 22, 28, 57,239,216,209, 69,204,229, + 2, 90, 43,216,247,142, 24, 19,182, 77,214, 98,210, 37, 7, 19, 13,133, 24, 17, 3,164, 91,140,222,236, 67,128, 4, 28,229,189, +143, 41, 30, 15, 88, 97,218,187, 3, 2,185,195,149,138, 94, 69, 69,157,146,168,245,227, 36,106,227, 66,255,183,138,185, 74,238, +230, 28, 17,139, 85,146, 64,154, 92,198, 84,173, 57, 20, 62,231, 51, 33, 47,105, 74, 76,168,131,216,107, 83, 66,140, 17,203, 89, +176,172,167,243, 66,213,121,193,122, 33,238, 54,103,226,104, 5,198,212, 57,194,150,176, 42,216, 40, 91, 71,233,167,243, 66,205, + 3, 44,210,118,223, 55, 99,117, 0,130,129,213,116, 57,141, 71,213,164, 58, 31, 36,110,181, 86, 78,171,170,124,175,219,182, 97, +189, 92,100,191,207, 70, 6, 93, 28, 23,160, 63, 60, 96,146,180,182, 24, 13, 97,171,250,161, 66,248, 88, 35, 78, 92, 46,115,102, + 93,208, 78,236,120, 22, 42, 34, 53,248,177,242, 83, 24,149,234,154,130,235, 72,105,146,119,150,113,171,114, 97,203,101,158,247, + 13, 37,175,104, 45, 83,196,221,172,163,149, 6,177,216,109, 78,186,137, 53, 23, 77,199,233, 84,148,107,161,167,112, 33, 17, 13, + 87,168,199,205,238,190,166, 34,183, 62,242,206,209, 31,184, 70,154,195, 96,100,112,159,110,214, 54,117, 89, 28,199,242, 38,198, + 28, 68, 60,131,152,113,212,239,237,199,187,225,110,181, 80, 47,228,133,200,132, 89,196,115,193, 38,200,210, 12, 70,229, 7,232, +152,164,150,130, 56, 69,195,223,233, 94,163, 55, 94,220,222,163, 23,181, 86, 21, 38,152, 21,238,152, 59,186,243,135,216, 57,181, + 57,120, 99, 23, 23,138, 89, 40,209, 17, 97, 29, 59, 2,241, 44,139,130, 59,103,217, 23,136,218, 86, 62,160,243, 60,201,120,235, + 52,177,106, 13,204, 54,110,184,191,189,199,182,237,184,187,189,231,152, 8,244,245,137,130, 51, 77,137, 74,206,177, 43,144, 48, +130,136,187,219, 59, 76,115,196,190, 9,130,210,103,200,129,180,115, 28,232, 37, 96, 37,121, 1,231,108,171,170,167, 11,124,149, +142, 92,240,165, 14,123, 46, 12,156,168,182, 62,208,220,111,143, 78,159,115,163,248, 75, 14, 49,141,166,117,212, 20,132,200,189, + 17, 71,117, 62, 0,251, 42,144, 25,241,210, 70,230, 76, 75,106,149, 90, 50, 60,119,245,141,138, 90, 5, 88,152,125,195,195, 68, + 76,232, 1,243,211,239,224,213,237,138, 16, 60,158, 62, 59,227,211,159,254, 80, 84,211, 62,208, 34,232,105,151,216, 73, 53,138, +240,161,115, 20, 52,224, 64, 10,226,136,169,155, 37,100, 8,226,154,105, 47,228, 2, 15,118,152,186, 94,204,182, 18,102,134,122, +240, 32,237,135,170, 58, 77,145,251,243, 96,151, 59,200, 1,144,209, 59,171,105,122,107,189,138,159,106,198,186,238,134, 80,204, + 74, 27, 3,198,165, 24, 19, 2, 72,213,115, 30,167,235, 71,152, 79,103,192,121,124,244,241,142, 95,126,220,112,117,117,162,207, + 94, 94,230,249,180, 72, 81, 88, 41, 50,155,207,240,101,135,107, 25,119,155,195,165,122,124,246,245, 5,243, 60,225,219,223,121, +219, 94,224,114,127,143, 41,120,224,234, 49, 22, 10,127,122,107, 40,203, 11,204,203, 29,224,132, 14, 22,137,247, 45,247,130, 70, +141, 47,191,198,221, 47,126,137,242,245, 5,235, 37,155,218,213,244, 46, 60,144, 59,171,252,214,218,131, 32, 18,179,159,182,134, +198,224,160,170,157,143,186,123, 56, 10,245,166,206, 29,152, 76,112, 61, 2, 78,128,100, 74, 34,157, 77,169, 21,145,207,159, 67, + 64,233, 13, 21,222, 70,131,210, 29,122,244, 86, 16,225, 48,165,201,206, 5, 73, 62, 4, 80,164,200,206,187,188,179,232,193,220, + 12,141,147, 62,231,105, 71,244, 1,112,162,122,207,185, 29,196, 77,142,104,107,233, 10, 67,240,104, 44, 76,198,168,190, 99,154, + 60,122, 8,104, 81, 28, 38,222,203,254, 91, 16,206, 48,101,251,216, 83,170,115,167,114,194, 37,221,178, 68,124, 78, 36, 66,242, +249,140, 1, 87,143, 36,187, 92,216, 25, 19,139,155,138,187,219,149,154,152, 98, 13,129,126,238,106,171,148,119, 4, 8, 81, 58, +236,204,213,135,167, 86,163,183, 42, 66,102, 39,197,202,196,216,223,225,129,110,194, 87,144, 74,144, 34,193,130, 90,119, 27,249, + 3,192,190,109,216,168,205,201,202,160, 87,161,175,230,155,251,200,136,214, 1,144,177,115,140, 58, 11,163,110,238,114,209, 20, + 10, 29, 5, 59,221,208,115,167, 67, 70,191,155,110,224,173, 99, 20,105, 71, 71,138, 9, 33, 38, 76,211,130,105, 74, 60,166,187, +133, 71,249,184, 34,150, 25,235,253, 43,160,100,155, 64, 53, 84,139,115,181, 81,123, 31,152,215,163,210,220,222, 5, 12,103, 64, + 63,188, 43, 29, 35,180,167,211,226,170, 68, 63,103,176, 24,247,128,111,223, 91,183,100, 54,237,204,123,135,229,182,107,118,138, + 58, 5, 76, 36,215,135, 83, 72,139, 28,179,233,185, 49, 93,211,166,242, 65,150,187,115,135,196, 78, 24, 63, 66,159, 99,213, 1, + 68, 1, 48, 48,168, 35,203, 75,208, 74,102,116,166, 67,233,149, 9, 51, 85,236, 97,181, 73, 64, 70,101,104, 67, 27,129, 29,142, + 93,178,222,239,133, 15,103,167,120, 73,163, 11,101, 52, 2, 6, 30, 8, 62, 81,227, 17, 29,171,174, 66,149,102,154,102,120, 31, +132,199,173,130, 36,166,174,181,189, 98,223,118,236,171,100,225,186,126,196, 9, 50, 69,137, 99,150,105,153,177,222,111, 34, 68, +241, 1,189,107,152,193, 32, 62,169,143,186,247, 98, 36,164,188,239,216, 35, 19,144,104,197, 64, 15,168, 78, 30,138, 72,117,170, +116,225,133,153,196, 50,150, 87, 30,179,165, 62, 89,118,140,192, 34,156,107,182,123,138, 41,152,117,198, 19,172,146,247, 13,141, + 24, 80,217, 45, 55,219,157,169, 42,222,216, 0, 57, 91,232,134, 22, 0,170,135, 80,128,133,115, 14,231,215,191,139, 92, 35, 90, + 91,241,228,233, 21, 46,207, 63,196,139, 47, 62,133, 15, 84,142,115,127,214, 88, 80,105, 72, 64,171, 21, 62,121, 84, 62, 35, 42, +162,212, 74, 53,104,130, 22, 58, 16,104, 41,138,222, 44,123, 34,176,202,136,193, 1,144,188,227, 90, 50,234,222, 57,237,161,133, +199, 73, 84,172, 15,147, 40,232, 53,136,131,110,129,137, 5,158,238,229, 26,249,239,162,177,216, 70,138,156,166, 75,105,122, 29, +133,146, 50,133, 81,221, 70, 69, 76, 51,210,188, 96,185,186, 70,136, 19, 94,190,170,248,251,247, 87, 60,126,114,141,117,205,112, +193,217,103, 14,231,209,186,199, 20, 61, 82,242,184,190,154,208,219, 2,108, 23, 76, 1,248,244,249, 5, 87, 55, 39, 60,121,242, + 8,183, 91,195, 39, 95,222,227,113,170, 88, 92, 67, 63, 95, 35,222, 92,195, 47,147, 48,200, 29,112,223, 63, 50,188,102,107, 18, +176,216,247, 13,245,231, 63, 67,126,241, 18, 29, 5,174,137,133,175,213,145, 85, 96, 35, 95, 78,174,168, 14, 51, 43,140,138, 6, + 59,187, 10,207,131,191, 52, 30,138, 42, 38, 82,239,118,173, 50,205,170,170,244,110, 70,250, 66,111, 8,105, 34,129, 80, 28, 30, + 89,226, 29,237,189,209,137, 71,173, 99, 95,217,205,186, 33,133, 83,206, 59, 98, 18,129,165,159,188, 77, 15,192,149, 64,171, 29, + 46,241,204, 49,223,113,195,121,158,209,123, 65,103,161,223, 90,151,162,187, 55, 19,219,170,240, 46,166,128,142,132,245,190, 14, +114, 96,107, 8, 41,216, 59, 24,188,135, 79,204,173, 38,151, 96, 73,129,127,127, 41,196,183,203, 58,240,177,189,113, 37, 39,225, + 51,167,243, 44, 34,177, 46,246,220,232,188, 97,109, 5,176, 35, 86,187, 86, 10,214,251,149,163,101,207, 92,118,142,148,173, 17, +115,212, 13, 4,137, 2, 54,228,106,178,201, 67,171, 89,226,162,231, 40, 68, 79,254,152,231, 74, 45,239,178,126,244,193,155,192, + 56,231,221, 68,159, 42,140,188,220, 95,232,137,223, 13,121,173, 30,103, 33, 91,194, 44, 83,131,226, 57, 20,248,149, 35,243, 82, +138,196,177,106,199,202, 95, 71, 33, 71,122,107, 10,213,146, 43, 50,237,146, 7,233,196,214,171,141,133,119,173, 25,219, 54,138, +203,222,187,188, 99, 55, 55,112,104,240,175,191,134,219, 87, 47,241,226,171, 79,145,247,139,164,118, 66, 93, 22,222, 44,106,166, + 17,193, 0,215,244,166,192,162,192, 95,187, 62,192,124, 27,130, 70, 9,112,234, 65, 63,238,203,251,152,164,216,255, 7,198, 25, +200, 21,164, 5, 91,245, 54,148,238,102,151,235,227, 28,209,162, 98, 40,212, 15,127,158, 14,239,104, 13,228, 20,210, 52,167, 6, +196,145,115, 62,178,128,212,245, 65, 8,145,236,119, 56,187, 92, 44, 51,152, 68, 28,231, 27, 92,243, 18,107,154, 11,147,119,162, +141,186,117,174,175,209,157,154,213, 43, 25,192, 14,109, 47, 72,211,100, 30,233, 78,222,111, 45, 21,149, 29,171,116,168,163,195, +149,139,150, 10,119, 39, 93,209, 60,207,252, 53,228,162,200,123,198,229,238,130, 90, 50,238,239,238,169, 64,159, 88, 76, 80,137, +121,248,144,246,205, 33, 68,122,214,213,122,115,240,115,202, 75, 66,230,244,165, 30,176,123,226, 15,111,220, 87,232,223, 35, 70, +169,218, 11,187,149, 98,138, 90,144, 52, 21,184, 43,239,156, 60, 4, 0,193,162,102, 1, 73,183,242, 60, 68, 61, 93, 8, 2, 83, + 32,254,147, 10,237, 16, 39,249, 98,217,177,122, 50,240,117, 5,161,204,112, 9,224, 16, 59,140,250,123, 75,165,175,219, 57,196, +229, 9, 48,191,129,203,171, 21,167,211,140,243,210,240,179,247,254,134,150,195, 93,194,123, 64,144, 4, 1, 39, 50,222, 10,172, +208,235,225,161, 10,244,227, 15,161,135,142,183, 83,140,220,221,147,186,212, 14,233, 78,252,156, 74, 17, 20,174,100, 35, 69, 19, +252,233,190, 61,132,128,144, 34, 21,159, 2,175,136, 41, 81,201,158,217,113, 75, 32, 77,171,162, 92,207,155,240,255, 69, 8, 39, +159,131, 87,120,140, 15,162, 64,109,227,229,119, 78, 64, 64,203,249, 6, 64,192,190, 3, 63,250,235, 87,120,250,248,145, 92, 76, + 51, 25,211,236,226, 36,118, 55, 98,153, 35,166,228, 81,114, 5,220, 4, 92, 45,120,245,252, 5,154,115,136,222,227,245,215, 30, +161,150,138, 23,159,126,142,118,138,184,121,227, 53,132,229,140, 72, 21,176,111, 50, 50,189,172,114, 96,183,218,224,110, 95,192, +221,158,101, 31,212, 10,178, 11,200,151,130,237, 82, 17,231, 25,211,193, 1,162,160, 37,229,147,203, 5, 36,118, 27, 85, 76, 59, +210, 16, 61,237,108, 14, 34, 56,132, 35, 99, 95,119,138,220,249,105,158,180,119,226,243, 14, 56, 0, 59, 74,193, 52,205, 44, 88, + 15,202,121,123,125,100, 44,235, 56, 50,212, 32,149, 82, 68,125,109,105,103,144, 80,141, 16, 3, 34,173, 73, 34,204, 82, 74,227, + 24, 97,150, 86,144,210,132,109, 43, 72, 83, 68,201,149, 40,216, 60,146,197,246,140,105, 94, 40, 80, 21,102,185,136,237,226, 80, + 74, 59,103, 99,251, 48,123,100,250,196,173, 17, 97,145, 45,250, 0,143,141,171,179,214, 28,138, 31, 5,249,188,204,114,185, 51, +122, 89, 87,145,211, 36, 98, 54,116, 96, 89, 22,211,195,212, 90,113,185,187, 24, 49, 82,198,238, 94,194,113,104,231, 83,119, 77, +156,146,173,129, 58,188, 16, 3,139,140,236,247,125,231,248, 61, 90,225, 16,104, 55,189,191, 95, 5,212,164,153, 1,165, 96,189, + 92,104,127,237, 44,240, 4, 23,188,109,235, 88,153,114,140,123, 58, 45, 38,182, 82, 60,171, 62, 51,129, 80, 23,101,183,131, 29, +186, 8,213,156,217,186,148,252, 41,113,216,170, 30, 23, 91,233, 96,155,200, 57,100,145,198,100,205,139, 29,110, 71,222, 87,220, +223,241,223,243, 65,226,123, 67,128,115,103,132,224,113,186, 58,225,116,154,112,117,181, 32,120,224,179,143,127,193, 9,175, 51, +177,178,138,238,250,193,162,102, 5, 31,239,128,194, 51, 3, 7, 43,219,176, 57,214,131,178,253, 16, 97,221,221, 33,202,218,217, +186, 85, 11,201,110,113,172,236,218, 31,160,125, 15,151, 62, 63,151,110, 54, 59, 21,175,194,208,200, 90,244,168, 46, 70, 87,108, + 77, 69,235,186, 30, 32,139, 94,254,190, 35,230, 85, 52, 20, 5, 81,113,140, 1,144, 4, 46,130, 61,212,207,217, 27,140,236,166, +123, 21,221, 51,104,181, 22, 98, 96,152, 64,196, 94,154,133,145,212,218,224,226, 80,228,138, 20, 95,210,153, 2,189,153,186, 79, +210,238, 66,246,223,205,254,144,232,206,190,228, 16, 3, 69,214,205,254,115,185,191, 96,219, 54, 70, 23, 54,170, 74, 37, 5, 44, + 37, 1,102,192, 1, 37,111, 40, 69, 21,236,131,251, 45,214, 53, 73,157,210,142, 81,193, 22,219,186, 90, 69,165, 35, 45,207,116, +168,214,170,229, 71,171,130,223,133, 96, 73, 66,218,197, 40,138, 81,226, 89,195,131,184,192, 52, 79,246, 80,129,163, 40,171,178, + 41, 34,115, 0, 98,242,168, 85,198,234, 82, 40, 72,246,124, 99, 87, 15,227,244,219, 49, 11,117,162,122,231, 80,209,128, 48,225, +234,205,223,192,243, 23, 27, 0,224,241,147, 19, 62,124,239, 79,176, 93, 46, 68,114, 70, 86,177,206, 44, 74, 33, 70, 57,128, 56, + 98,242,220,231, 75, 62,177, 80, 7, 3,161, 36,141, 97, 19, 18,156,211,185, 30, 25,127, 55, 85, 71, 43, 2, 83,243,173, 29, 58, + 15, 0,249,156,167, 57,241,215, 97,162, 93, 16,117,176, 42,147,113,112, 56, 40,165,176,228,130,188,175,244,157,179, 42, 15, 51, + 73,153,178,214, 9, 41, 1,221,193, 37,125,150, 19,186,115,152,151, 51,124,156, 0,159,240, 55, 63,252, 10, 87,144, 53, 79,111, + 29, 19,100,212, 30,146, 36,233,165,232,184,195,231,247, 66,129,212,190,109,120,121,187,138,127, 58, 4,196,224, 49, 77, 30,168, + 64,243, 17,219, 94,113,251,234,130,240,248, 10,173, 20,204, 75, 68,221, 11, 10,227, 47,239,239, 87,212,109,131, 43, 59, 28, 3, + 54,242, 94,113,119,233,112, 46, 33, 63,121, 12,239, 63,166, 72,168, 25,200, 71, 19,160, 58, 15,230, 82,186, 5,244, 88,222,124, + 27,135,150,172, 88,120,232, 49,238,210,124,186,196, 34, 27,144,134, 16, 18, 77,103, 43,181, 32, 52,178,209, 29,200, 50, 8, 20, +157,241, 98, 8, 17,190,101,238,178, 51, 17,157, 59,166,121,226,158,180,154,176, 54, 80, 15,209, 49, 68, 75,219,150, 49, 47, 44, + 96, 41,236, 84,231,139,115,178,203, 85,192, 85, 41,149,128,171,110, 36,175,121,153,133, 55, 80, 42, 82, 8,104,149, 23, 84,140, +242,115, 27,208, 98, 71,168, 13, 62, 57,219,103, 43, 44,166,247, 97,173,170, 69, 86, 27, 49, 6,158, 37,201, 4,184, 34,158,170, +204, 47,151, 95,123,154, 23, 44,167, 5,128, 71,222, 43,110, 95,222,153,120,235,254,118,181, 6, 69, 14,108,201, 84, 79,243,108, +135,184, 94, 64, 34,192, 45,140, 41,173,150, 54,166, 24,217, 16, 34,246,189, 48, 21,210,141, 40, 79, 22,181,189, 87, 22, 4,149, +127,143,130, 92,118, 22,211,222,236, 84,145, 77,219, 60,207,163,248,161, 24, 43, 19, 12, 20,162, 7,138,164, 69, 11,184,171, 50, +128,138, 16, 32,222, 19, 50,133,109,150,178, 25, 98, 36, 95,126,168,204,189,174,109, 52,210, 85, 61,242,219,206, 85,179, 56, 58, +122, 43,104, 85,180, 3,151,251,151, 56,157,175,240,228,233,119,240,228,217, 19,113,227,160,225,246,213,215,184,125,249,181,156, + 73,212,122,106,174,251, 3,238, 0,207,148, 35,159,161,217, 52, 87,158, 47,229, 61,116,104, 60,234, 1, 58,115,252,111,149,166, +181, 81,120, 90, 23,222,241, 64, 9,175, 54,240,222,199,229,174,147, 66,117,102, 29,108, 99, 44, 22, 88,164, 48,173,109, 88,222, +134, 45, 47,240,159, 5,229, 5,144, 25, 2, 64, 86, 62,173, 99, 74, 19,162,133, 22, 48, 34, 79,125,223,208,108, 87, 50,212,199, + 37, 8,187, 76, 90,151, 11,223,194, 9, 52, 8,166,139, 13, 38, 78, 9,189, 57,162, 67,133, 8,164,137,103,145, 4, 28,253, 2, +212, 26,161,202,123,193,203, 70, 44,103,166, 31,205, 42, 56,147, 16, 21, 57, 12, 47,216,182,221,200, 90, 18, 65, 39,145,172, 33, + 6,233,200,171,178,115, 97, 41, 63,154, 76,164,190, 65,209, 7,236,220, 25,171, 85, 6, 28,111, 73,193, 16,252,200,175, 85,116, +163,115,170,224,142,156,110,116,204, 28, 57,229,156,197, 83,175, 65, 36,164, 42,169, 39, 93, 57,230,242,103, 22,255,126, 97,202, +155,136,158, 34, 98,242,128, 8,131, 49, 77,193, 60,186,173,117,120, 39,251, 30, 13, 1, 57, 6,236,121, 47, 29,149, 83, 28,170, +115,184,249,198, 15,112,119, 47,149,251,227,103,215,216, 95,126,136,151, 95,126, 98,235, 15,231, 27, 90, 21,235, 79, 76, 1,173, +209,219,218,187,196,212,118, 24,109,172, 51, 40, 33,120,143,238, 10, 25,225,146,157,172,127,119,239, 37,215,124, 95, 55,233,254, + 56, 38,111,252, 67, 26, 26,152, 47,193,196,110, 37, 16, 8,164, 62,233, 16,163,105, 34, 98,208, 34, 77,116, 13,101,223, 80,246, +203, 24, 51, 54,118, 67,132,251,128, 2, 42,231,147,236,223,188,106, 28,228, 37,153,150, 5,243,233,140,238, 60,126,250,254, 29, +246,151, 13,207, 30, 45,232, 81, 8, 79,167,105,225,136, 20,232,251,138, 9, 29, 49,157, 1, 82,216, 82, 12,184, 92, 54,124,244, +209, 23,114, 33,205,226,115, 14, 78,236, 81,126,185,150, 84,165,151, 47,208,251, 25,219,156, 68, 36,231, 37,170,120, 91, 51, 46, +235,134, 90, 27, 78, 75,194, 60,121,236, 89,244, 10,107, 14, 88, 91,199,253,158,209, 47, 95, 99,191,100, 56, 55,219, 97,208, 40, +230, 1, 1, 23,153,185, 4, 58, 45,129, 37, 57, 85, 59,128,164,136,174, 40,133,186, 5, 28,187, 8,189,236, 29, 28, 42,100,195, +162,232,216,227,206,177,155,165,201, 57, 25,137,235,174,184, 86, 79,103, 73, 61,128, 57, 24,102, 18, 24, 32,210, 59,178, 83, 43, +151,103,150,116, 51, 86, 68,201,217,198,210, 93, 3, 99,232,230,240, 60, 39,124,169,240,228, 56,236,219,142,121,158,113,190,230, +161, 22, 38, 99,101, 52, 22,117, 26, 90,210, 65, 70,125,109, 38,138, 82,173,134,185, 81, 14,201,105, 34,204,140,152,151,249,129, +174, 35, 38,209,153,104,247, 14, 4,220, 60,186,182, 92,247,109,221,144,247, 66,251,223,142, 76,182,123,103,134,131,171,157,133, + 78,103,195,226, 40,100, 99,144, 17, 26,188,107,135, 9,145,231,148, 48, 18, 58,195,174,178,201,143,175,151,213,206,169,146,171, + 65,132, 58, 21,227, 82,228, 6,198, 7, 59,164, 32,235,148,105, 74, 54, 10, 14,228,224, 75,196,169, 67,174, 21,165,116, 67,191, +234,186,160,150, 54,232,131,116, 13,181,131,197, 74,109,191,141, 65, 34,186, 34,212, 34, 83,113,170,181,102, 4, 31,228,210, 34, +150, 91,161, 56,158,223,127,107, 21,121,187, 71,154, 60, 78,231, 25, 29,205, 82,232,238,134, 55,218, 98,215, 53, 64, 75,149,235, + 99,216,127,216, 75,179,201, 16,114,167, 34, 96, 7,109,240,120,145,183,118,248,247, 15,226, 54,192, 61,236,214,255,127,254,123, + 48, 94,168, 84,111,132,205,244, 35, 23, 6,230,240,209,226, 86,239, 18,135,195,142,221,178,213,253,136,135,117, 64,244,209,214, + 76,145,161, 70, 81,129, 15,250, 71,239, 22, 10, 65, 53,117,224, 11,198,206,192, 57,102,102, 55, 65,224,117,102,155,119,227,107, +123, 56,200,254,105,207, 98,117,241, 32,206,144, 73, 59,158,130, 41,133, 34,216, 62,214, 57,179, 96,169, 63, 47, 4,121,121,196, +230,225, 44,178,114,223,119,212, 34,138,207,117,221, 41, 82,145,203,113, 91, 43, 98,170, 56,157, 38,230, 82,119, 67, 24,154,199, +146,120, 68, 29, 25, 5, 67, 90,202, 5,189,173, 82,249, 53,241,117, 13,202, 86, 63,242,239, 11, 46, 23,241, 70,251, 16,112, 62, +159,208, 93,226, 88,145,135, 5, 53, 2, 58, 74,118,102,219, 2, 63,175, 40,100, 41, 13,198, 49,193,219,225, 18,162, 88,201, 49, + 29, 45,112,180, 42,157,151, 23, 82,153,249, 20,157,137,222,208, 29, 90,169,152,111,222, 65, 11, 79,177,173,183, 72,115,194, 18, + 55,124,240,215, 63, 20, 85,188,227,195,205,138,175, 22, 81,156, 10,109, 79, 48,144, 37, 87,211, 34,104,101,238,204,238,193,231, +163,119,212, 61, 91, 70,114,239,192,190, 74, 32,132, 10,141,228,207, 69, 77,193, 33, 22, 85, 84,159, 36,252, 57,135, 24, 39,249, + 57,209, 15,157, 1, 45,105,141, 73,124,173,100, 1,199,212,108,187, 81,165,241,193, 7, 19,150, 40,240, 6, 78, 46,119,141,107, + 92, 78,139,236,138, 93,192, 23, 95,238,248,240,103,119,120,251,230,132,214, 61, 92, 8, 88,150, 5,240, 30,190,101, 96,223,224, + 29, 1, 70,193,195, 39, 57,132,214,187, 11, 62,252,240,115,108,219,142,211,146,240,226,229, 61, 30,159,103,120,116, 76,179, 76, + 31, 82,244, 8,139,144,237, 90,105,104,185,224,246,174, 99, 74, 30,175, 94,221,227,229,139,123,204,115,194,180,221,227,244,242, +107,248,173, 97,131, 71,116, 18,219, 90,187,195,118,159,197,107,110,221,200, 32,191, 73,103,226, 77,136,212, 9,166, 64, 31, 64, + 13, 41,194,178,141,192, 91,171,232, 33,201,207, 51,190,128,226,134,221, 16,122,226,184,203, 27,151, 93,140, 30,222, 69,155,148, + 72,250,153, 60,243,121, 31,112, 25, 67,208, 18,205, 89,107,166,114,122,128,157,142, 30,123,209,125,200, 69,170,171, 61,121, 79, +234, 67,218, 37,115,219, 91, 3,166, 89, 14,241, 90,154,117,254,231,171, 9,235,101, 67,245,141,133,120,151,117,130,119, 64,103, + 0, 76,230, 94, 56,140,238,249,184,107,118, 94, 10, 4, 65, 82, 7,195,219, 58, 47, 86, 47,177, 87,138,104,238,234,230,108,207, +219,182,237,216, 46,187, 20, 0,150, 69, 14,196, 41,209,149,227, 41,212,149,232,101,163,234,169, 30, 39,103,122,162, 71, 71, 57, + 77, 9, 62,242,249,233, 13,222,119, 97,129, 87,141, 6,222,185,122, 27,116, 49, 17,202, 30, 46, 26,126, 31,186,194,177,241,180, +233, 43,156, 33,108,149, 72,168, 86,229,135, 20, 62,177, 17,235, 89, 84,235, 1, 84,198,243, 83,253,210,224,121, 94,155,172,196, + 96,193, 56, 14, 49, 36,228,146,205,118,172,197,203,128, 77,137,206,227,155,239,188,131,243,245, 25,240,146, 16,231,204,225, 65, +193, 93, 31,103,114,240,162, 36, 87,144,217,209,201,245,144,243,223, 77, 69,175,227, 20,235,196,109,140,175, 32,171, 99,230,201, + 40, 16, 84, 93,255,176, 59,199,255,215,187,110, 81,221,180,240,161, 30, 46,115,111,161, 75, 29, 78, 82, 38,253,136, 53,215, 73, +167,179, 98, 41, 18,206, 54,138,107,189,232, 85,188, 78,161,156,202,252, 61,189,231,157, 10,237,110, 10, 80,165, 74,153, 48,193, + 75,182,172, 19, 92,130,133,135,196,168,251, 49,169, 16, 3, 69,120,150, 80,212,187,141, 13,101, 60, 61, 4, 61,226, 87,100,229, +198,189,121,140,163, 74,158,231,249, 65,108,159,120, 62,139, 88, 42,216,129,171, 77,140,147, 31, 27,167, 29,125,239,186,119,212, + 3,206,211,171, 43,108,225,106,201,107,178,191, 43,244,105, 38,243, 95,118,251,239,129,178, 45,200,146,109,157,197,246,214, 9, +158, 41,165, 34, 76,114, 64, 53,141,176,180,207, 81, 96, 58,194, 83,239,134, 6,236,112,136,211, 68, 48, 75, 50, 79,187,142,217, +188, 39,221,141,225, 48,162, 61,232, 20, 77, 56,212, 44,136, 68,193,196, 86,132,233, 26,215,111,253, 0, 95,124,126, 7, 31, 60, +158, 61, 93,240,203, 31,255, 7,180,186,163,230, 77,136,179, 78,186, 23, 31,162,196,236, 54, 33,209,138,216,110,188, 96, 21,149, +162,192, 72,189,133, 55, 74,151, 4, 57, 4, 98, 93,251,160, 16,106, 22,125,229, 40,157,251,163, 70, 1, 87,111, 21,241, 52,145, +155, 47, 54, 40, 77, 36, 82,177, 98,111, 21,123,173,252, 46, 11,214,251, 59,160, 23,234, 12, 38,102,111, 23, 68, 85,207,154,221, +201, 11, 99,129,227,225,202, 84, 60,239, 3,210,188,192,249,136,203,165,225, 39, 63,122,142,111, 61,185,146,203, 44, 4,248, 57, + 1, 81,138, 57,119,217,225, 60,163, 70,231, 51,194,114, 66,222, 51,182,117,199,103, 31,126,130,175,190,190,199, 91,175, 63,194, + 60, 69,124,249,229, 75, 60,125,250, 58,208, 59,214,203,110,158,216, 28, 2, 90, 46,112, 37,163,220, 53,204, 83,194,253,101,197, + 95,254,205, 7,184,180,142,215,174,174,240,116,142, 8,165, 1,181, 97,158, 49,198, 14,213, 0, 0, 32, 0, 73, 68, 65, 84, 3, +158,221, 76,120,121,151,113, 1,112,183, 55, 52, 31,109,191, 38,133, 95,183, 3,185,210,113,161,188,238, 78,239,106,107, 35,116, + 66, 3,119,244,240,105, 53,195, 35,193, 71,111,160,150, 16,188, 92, 28,117,131, 11, 66,214, 19, 79,249,100, 35,243, 49,246, 31, + 10,116, 31, 2,182,117, 69,239,162, 40,223, 55,209,212, 56, 23, 1,106, 32, 58, 71,178,189, 85, 84, 22, 28,219,186, 98,158,103, +179, 71, 85,218, 96, 51,173, 89, 50, 50,111,198, 30, 7, 65, 56,194, 93,223, 45, 65, 78, 15, 77,157,100,245, 46,161, 58,151,251, +157,107, 1,127,152, 4, 84,235,200,163,242,211, 1,250,127,189,105, 94, 58, 99,124,231,121,162,162, 61, 97, 90,102,139,144, 13, + 49, 97, 57, 45, 88,206,139, 21, 4,121,207, 67, 72,218, 28,246, 77, 52, 19,122,177,164, 41, 89, 64,144,188, 63,206,132, 97,106, +207, 29, 83, 24, 9, 49, 18,113,160,128, 94,228,172,131,128,144,246,140,222,138, 37, 71,230, 93,120, 27,189, 53, 91,145,198, 24, +225, 88, 8,169,176, 78, 19,210,122,235, 12,214,114, 36,133,102, 43, 24,123, 29, 9,107,154,100, 40,133, 65,179,174, 60,231,108, + 29,126,225,164, 84, 55,216, 50,189, 85, 24, 88, 53, 62,186,179, 46, 94, 16,185, 41, 77, 22, 59,172,237,113, 76,137,130,216, 5, +111,127,243, 27,248,198,219,111,193,251,136, 87, 47, 94, 81,223,148,113,185,220, 83,124, 7,203, 31, 23, 38,191, 20,222, 48,109, + 24,197,162,246,185, 10,149,242,144,157, 50, 38,224, 54,158,199,131, 98, 8,253,193, 79,131,238, 81,234,225, 18, 63,118,247, 15, +152,241, 15,254,153,195, 1,210,205,179,190,202, 74,208, 15,253,151, 18, 67, 37,117,209,153, 11, 75,213,238,234,150, 2, 57, 4, + 66,104, 61,188,195, 62, 32,234,190, 65,253,226,194,174,173, 67, 89,202, 75,168,181,253, 1,135,214, 42, 32, 30, 46, 49,140, 36, + 54, 21,113, 85,166, 45,149,194,104, 72, 30, 66, 49, 37,236,140, 13, 85,146,144,247, 50,214,218,182, 34,234,122,118,233,145, 17, +125, 90,181,106,119, 94,107, 21,116,106,201, 38, 54, 80,213,187,134,118,104, 42,146,247,142, 7,158, 51,149,184,122,208, 59,125, +127, 58,195, 9,138, 63,228,229, 85, 25,250, 17,117,245,208, 8,185, 64, 29, 35, 35,114,141,117,188, 84, 72, 61, 82,104,142,143, +145, 35, 64,170,187,167,201, 82,146,188, 37, 20,137,133, 48,250, 52,192, 6, 29,146,145, 78,133,116, 87,246,123,243,198,205,223, +247,140,152,252, 24, 47,249,145, 77,239,188,195,163, 95,249,109, 60,127,190,162,183,134,155, 39,103, 60,255,240,199,184,127,249, +229, 1, 59,216, 45,156, 64, 30,248, 96,127,182, 34, 55, 62,133, 57,213, 32, 54,242,107,119,179, 66,193,193,178,145,107, 25, 49, +160,232, 21,205, 2, 27, 4, 72,212,123, 16, 5, 60,169,131, 49,141,204,238, 64, 28,162, 87,100,111, 87, 15,110, 33, 10,120, 19, + 1, 92, 43,182,254, 8, 65, 94, 68, 31, 35,224,130,113, 19, 2, 87, 26, 42,250,172, 21,166,225, 72,203, 9,189, 75,164,240, 15, +255,252,115,188,123,115,194,213,121, 6,130, 71,117, 78,132, 95, 16, 60,102, 83, 43, 71,136,112,105,194,118, 17, 20,240,139,219, + 11,190,120,181, 97, 74, 1,111,191,253, 58, 62,250,240,115, 92, 46, 59,130, 15,216, 46,187,236,243,122, 71, 15, 30, 49, 84,192, + 3,209, 59, 4, 15,180, 2,124,242,233, 75,124, 81,238,176,162,224,229,171, 59,252,228,253,207,241,205, 71,239,224, 38,122,184, + 30,240,181,243,120,181, 55, 56, 70,248, 46,231,249,193,136,120,120,102,157,140,244,234,248, 62, 5, 28, 51,142, 19, 29, 55,247, + 17, 25,192,253, 96,177,189,179, 22,210,138, 29, 5,253,210, 42,166, 83,183,128,216, 20, 7, 45, 81,192, 36,100,148,187, 14,239, + 21,222, 36,151, 74, 46,217,158, 13,233, 4, 55,156,206, 87,134,132,149, 14, 48,144, 31, 14, 22,230, 99, 87, 43,131,132, 78, 26, +100, 98, 23, 40,156,127,245, 76, 59, 78,122,212, 65, 17,163,136,188, 12, 14,227, 37, 85,109,223,171, 37,143,201, 88, 24,199, 83, + 29,121,207,184,191,187,136,111,155,160,163,121,158,144,166,153, 76,247,132,171,171,179,113, 50,180, 8,112,222, 35,103,238,178, +171,126, 38, 14,247,119, 23,118,207,210,212,152, 5,142,144,151,105, 73,216, 46, 2,129,241, 14, 40,117,140,186, 3,211, 4, 67, +140,130,180,102, 39,143, 38, 23, 86,240,178, 31,150, 96,160,102, 33, 52, 90,200,121,254,153,170, 61, 47,162,205,225,224, 81,220, + 70,185, 96,154, 18,246, 61, 91,166,186,196, 11, 23, 91, 77,206,179,124,230,114,222,139,253, 78,254,140,206,252,211, 38,120, 52, +127,182,118,228, 35,253, 78,153, 9,114, 86, 70, 84,198,163, 46,167,197, 4,198,106,151, 60,159, 31,225,217,107,207,240,248,201, + 35,177,199,114,103,191,109, 59, 62,254,232, 99,249,188,124,176,245,176, 67,176, 38, 75,137,149, 96,241,169, 24,101, 5,207,140, +201, 19,237,233,118,129, 59,155, 48,142,148, 54, 60, 16, 83,247,127, 52,114, 55,213,123, 31,151,126, 59,142,241, 77,248,134, 7, + 29,247,131,217, 59,116,237, 66,129,121, 5,130,166, 28,187, 17,254,162, 90, 20, 3,192, 41, 1, 51,138,216,183,213,198, 59,200, + 33, 42, 92, 66,247, 30, 33,170, 88, 68, 58, 45,253,162, 68,253,156, 77,180, 81,107,149,164, 44,122,150, 85,205,172,149,181, 50, +220,139,198,115,122,111, 23,160,218,227,148,211,220, 85, 88, 87, 36,122, 84,196, 61, 30,105,154, 48,205,179, 41, 51,181,163, 45, +165, 96, 91, 87,238,212,133, 85, 28, 16,237,114,212,194, 71, 95,222, 86, 15, 57,192,135, 46, 91,190,103,170,101, 75,195,190,102, +194, 53, 34,186,111,198,216,213,240, 10, 73,254,138,168,156, 64,232, 72,103,154, 38, 76,147, 6, 74, 52,250, 74,189, 0, 29, 48, + 46, 91, 25,137,118, 19,251,216, 3, 65,136, 72,175, 98,141,211,131, 85,254,236, 90,149,131,121,235,253, 96, 33,226, 24,156, 81, +179, 62, 36, 50,215,165, 10,124,252,214,111, 98,205, 51,182,203, 61,174,174, 23, 96,255, 18, 47,191,248, 7,132, 56,193,183,138, + 82,181,163, 82,236, 43, 67,112, 58,198,248,223,199, 17,214,192, 82,214,199, 64,106, 91, 69,115,213, 18,188,100, 95,214,200,124, +231, 84,131, 43, 19,112,236, 45,206, 7,173, 93,163, 64,130,186, 40,159,133,160,229, 81,246, 85,114,218,153,175,222,106,182, 98, + 65,208,165,139,197,119,182, 46, 54, 37,121,142,101,218,160,171, 1, 64, 10, 77,110,103, 17,227,132,144, 38,234, 55, 28,222,251, +219,175,240, 43,167, 19,190,241,244, 6,185,119,116,239,249, 82, 22, 76,222,163,247, 29,253, 36,194, 36,132,132,198, 11,246,238, +238,130,143, 63,250, 28,247,247, 43,190,255,107,239,192,135,128, 79, 62,125, 46,150,201,222,176,174, 25, 30,157, 4,125, 15,135, + 0,212,138,187,187,138, 57, 56, 4,191,227,197,151, 47,177,162,160,161,225, 5,118,252, 79,255,254, 61,252,179,111, 63,195, 27, + 79,207, 88,150, 25,207,174,100,255,254, 55, 47,118,124,121,183,225,219,239, 46,136,177,218, 1, 62, 84,178,237, 97, 0,132, 90, +130,208,108,236,168, 29,224,145,188,165, 40,223,222, 10,186, 75, 82, 72,115,135,238, 41, 96,108,173,195, 71, 41, 10, 34,121, 1, +154,207,160,239,152, 38, 68,137,239,217, 25,234, 57,166,137, 98, 58, 47,234, 92,237,230,168, 95, 57, 90, 50,211,196, 21,128, 27, +201,128,154,240,168, 80,144, 72, 90,165,104, 44,165,243, 60,157, 38,204,167,201, 50, 3, 6,230, 90, 14,206, 52, 37,203,155, 22, +190, 5,108,220,157,247,204,110, 93,254, 14,226,231,222,233,203,239,152,167,136, 56, 69,164, 24,145,216,173,159,174, 78, 7,134, +194, 68, 26,162, 27, 25,229, 45,216,190,243,238,246,222,210,185,146,151,252,137, 72, 96,205,188,204,204,135,168, 98, 15,227,237, +209, 14,137,104,242,156,143, 11, 93,167,154,133,129, 68, 56,112,197, 91,173,216,182,125,216,137,187,116,124,106,235, 75, 83,160, +200,212, 25,230,186,214,134,105, 26, 4, 59,160,161, 86,119,112, 33,117,201,181,231,223, 1,132,193,148, 90,237, 51, 61,218,188, + 90, 27, 5,201,136,130, 29,249, 15, 58, 98,214,207,204,181, 97, 73,148,231,160, 99, 89, 22, 60,121,242, 24,167, 43,121, 7,124, +240,184, 92, 86, 4, 15,236,251,142,175,190,248, 18,175, 94,190,176,125,185, 62,215,218,209,194, 34,187, 3,121, 12, 3, 34, 51, +110, 94,247,160, 75,239,255, 88, 20,231, 48,240,201,135,159,163,255,231,216,229,247,195, 91,213,143, 12,123,224,193,250,239,232, +149,255, 71, 18,185, 67,103,223,236,223, 86,236,182,166,130,170,157,215,126,117, 54, 86,138, 25, 15, 1,180,198, 82,168, 91,109, + 95,234, 80,217,161,169,104,166,213,106,105, 78,106,121,201, 76,240,138,211, 68, 53, 56,247,114, 52,227,203,232,169,161,119,111, +126,186, 97,145, 51, 15, 9, 15, 34, 57, 44,154,229, 63, 7, 27,141,203,200, 43, 90,197,172, 73, 55, 42,206,216,182,157,135,131, +216, 74,106,169, 82,229, 80,209, 90,139,160, 89, 5, 67, 57,114,134,115,206,220,229, 74,161, 81, 74, 19,106, 84, 17,127,168,138, +192,244,129,155,166,153, 47, 85, 49, 37,113,136,105, 8,149, 32, 98,151, 99,180,168, 98, 29, 61, 1,251, 37,139,154, 61,166,136, + 64,207,170,118, 59, 80,161, 70,147, 96,151, 78, 91,144, 70,136,246, 94,153, 61,191, 91,102,125,136,254, 48, 18, 18,177, 92,208, + 46,142,227,184,235,215,222, 69,155,222,196,203,207, 94, 72,103,147, 50,190,120,255,175, 81, 43,237, 79, 76,156,115, 83,224, 72, + 31, 40, 16,164,111, 80, 22, 49, 11,156, 68,246,181,163, 60,183, 55, 17,125,168,157, 74,188,175, 13, 49,200, 88,183,183, 10, 15, + 41,194, 90, 45,112,221, 67, 85,113, 21, 35,106,182, 22,185,112,211, 60, 27, 98,178,150,141,113,148, 82, 16,238,219,166,172, 91, +137,233, 44, 25,141, 7, 65,175, 69, 42,108,118,130, 71, 49,139,116,252,144,233,192, 49,197,138, 94,233,143, 62,218,225,110,129, +111,126,235, 70, 52, 17,181, 35,206, 18,218,179,255,191,124,189,201,179,101,215,121,229,183,118,123,206,189,239,189,236, 1, 36, + 0,162, 33, 1,144,128, 36,146, 18,169,170, 82,201, 97,107, 80,161,145,135,246,196, 99, 15,253,151,217, 30,217, 81,170,112,184, + 34, 60,144,100,135, 74, 46,135, 90,146, 2, 8, 18,109, 38,178,125, 47, 95,119,239, 57,103,119, 30,124,205, 62, 55, 1, 22, 71, + 32,144,249,218,115,246,254,154,181,126, 43, 21,192, 20, 44,137, 10,159,182, 95, 16, 91, 65,137, 27, 44,112,248,228,147,175,176, +219,207, 56,222, 14, 56, 30, 35, 46, 79, 47,241,229,151,143,177,241, 6,184, 56,199, 50,140,112,155,141, 90, 85,114, 74, 64,153, +225,246,231,216, 47, 51,242,156,241,151,255,207,111, 49,131,158, 69, 15,131,255,156, 95,224,111,127,245, 24,255,245,207,222,193, +208, 50,154,113,248,224,181, 35,140, 22,248,139,223,204,152,103, 17, 62,210,170,164,212,198, 59,191,214,211, 18,219, 74,228, 37, + 93,133,238, 16, 87,225,124, 13, 43,148,111, 69, 69, 2, 16, 84,172, 90, 43,219, 5,107, 33, 32,140, 78, 8, 42,239, 43, 41, 79, + 64, 68,173, 57, 51,101,146,189,214,116, 16, 97,165, 95, 1,114, 77, 8, 54,178,254,162,103,116,151,156,212,101,209,216,219, 43, +123,231, 34,121,246, 92, 85,167,196,130,201, 24,225, 74,101,183, 73,207,118, 23, 10, 92, 45, 13,195, 16,217,197, 65, 33, 72,203, +156,216, 81,209,214, 33,133,186, 31, 45,156, 11, 81, 56, 69,207,249,192, 34,185,136, 24, 35,177,222, 3, 21,190,195,102,212,212, + 63,217,255, 75,184, 77, 75,133, 11,126,172,172,147, 22,199,199, 35, 31,214,100, 13,150,100, 76, 84, 94, 49, 53,234,164,235, 92, +116,247, 45, 65, 78,114,118,241,124, 81,183,191, 68,238,204,216,237,246,188, 34,115,204,151, 16,112, 10,219,146, 89, 51,100, 87, +103,175, 82,206, 90, 31,217,183,131,200,209,170,107,133, 82, 8,221, 93, 91,183, 38,210, 61,209, 3,167,196, 33,208,217,232,130, +131,229,209, 63,131,137,100, 2,228,131,215,206, 50,198,128, 27, 55, 78,176, 61, 58,194,246,104, 75,105,139,173, 97,158, 22,238, +210, 27, 46, 47, 46,241,228,241, 55, 90,116,148,146,168,249,224,166, 80,158, 69,180,134, 92, 22,110,160,202, 33,160,109, 29, 4, +246,242,229,252, 82,103, 78,223,230, 33,112, 6,223,218,173,119,191,122,123,249,131, 98,253,121,215,139,117, 28, 92,238,235,120, +227, 67,191,186,164,140,242,212,156, 27, 45, 90, 79, 67, 51,225,101,207,174,105,136,181,194, 91,233,142, 18, 11, 24,188, 65,206, + 43, 53,188, 16, 42, 26, 14,133, 54,165, 40, 25,167,213,194, 51,126,142, 91, 69,183, 49, 72,245,152,185, 0,168, 60, 26, 50,134, + 98, 92, 75, 33, 80,138,105,125,111, 67, 68,163, 64,234,210, 49,194, 26, 82,180,231,210,224,189,101,134, 55,239,211,121,103,110, +120,119, 38, 76,107,233,204,187,255,153, 20,166, 78,118,118,150,252, 11, 42,208,107, 56,136,128, 21, 16, 5, 17,167, 60, 33, 38, + 1, 5, 68, 16, 16,197, 34,114,197, 78, 33, 43, 94,125,150,134,169, 97,116,211, 85, 22,173, 17, 68, 67,184,205, 62,120, 58,240, + 27,119,232, 96, 97,156,115,188,107,151,248,213, 2,235,131,130, 52,100, 63, 74, 17,175, 77, 47, 49,170, 96, 13,134,227,187,216, +220,125, 15,207,158, 92,194, 89,139,147,147,136,139,135,255,132,101,158, 20,151,235, 25, 49, 88, 42,253, 29, 99, 45,252, 16,217, + 75,107, 20, 26,195,165, 63,199,197,130, 59,113,168,189, 8, 85,190,246, 78,118,170, 92, 33,211,104,210,113,246,121,229, 93,101, + 31, 97, 81,209,206,202,120,211, 15, 10,226, 10,164, 21,114,215, 41,227, 93,198,192,242,220,146, 87, 62,107,144,140,140,239,181, + 50,150,209,159,115, 24, 54, 91,184, 16,113,122, 58,227,203, 47, 39,252,240,213,155, 40, 48, 24,189, 69,220,120,216,224, 48, 47, + 25,155, 49, 96, 89, 10, 2,135,201, 68,103, 16, 76,131,157,175,241,197,211, 61,174,175, 39,212, 82,113,255,149,219,152,150,130, + 39,143,207,112,118,126,141,237,205, 17,118,190, 6,120,133, 83, 76, 67,219, 37,216,235, 51,212,121,135, 92, 50,174,246, 9,127, +249,143, 15,241,127, 77, 79, 0, 0,127,234,239, 98, 87, 27, 62,171,123,252,135,127,124,128, 31,189,115, 23, 71, 71, 35,230,185, +162, 26,131, 59,219,128, 63,127,251, 6,254,230,209, 21, 30,214,140, 87,238, 57, 24, 75, 94,118,249,121,172, 61,174,235,147,201, +172,196,175,221, 70,211, 14, 60,230,141, 65,228,181,102,152,210,148, 90, 88,106,134,107, 65, 59,141,200,161, 37, 26, 96,196, 5, +132,119,142, 16,207, 76,157, 75, 60, 34,244, 33,178, 56,175,160, 53,193, 24, 19,103, 60,132,168,235, 20,177, 22, 89,158,208, 9, + 68, 69,198,240,116,214, 0, 33, 90,165, 63,162, 25,248, 24,148,145, 77, 59,121,199, 74,236,166,171, 50,235, 28,156, 23,218, 24, + 93,118,180, 10,172, 88,150,196,180,201,218,215, 15,134, 26, 4, 73, 91,243,129, 4,114,227,118,163, 30,117, 51,176, 15,223, 91, +108, 70,162, 0,230, 92,123,246,129,165, 2, 98,158, 72,200, 43,174, 14, 24,139, 48, 56,246, 48, 23, 21,234,201, 37,149, 83, 34, + 59, 48,107,109,176,162,226,181, 10,254,254,200,170,152,150, 2,152,134,105, 90,180,217,138,172,195,161,233,106,101,103,130, 67, + 45,141,155, 34,116,107,241,138,240, 38, 2,219, 36,145,176,171,169, 14, 89, 52,121, 21,130,166,162, 85, 18,255, 73, 28,179,211, +209, 59,173, 97,253,129, 64, 77,254,190,172, 43,214, 4,187,237,118,131,147,147, 19, 28,159, 28, 35,142, 17, 67,140,156,250,151, +121,199,111,144,151,140,103, 79,158,224,252,197, 41,173, 84,188,103, 52, 50, 61,203,146,184, 39, 54,215, 90,179, 94,221, 70, 7, + 88, 29, 48, 99,190,181, 31, 63,220,153,191,172, 96, 55, 42,156,123,233,207,190, 52,130, 95,239,213,213,131,254,210,104,236,192, +201,246, 82,215, 46,227,121,114,186, 91, 46, 84,140,226, 98, 53, 41,142,139,120,107, 45,114, 73, 42, 40, 47,133,215,189,104,240, + 70, 46, 66,235, 80, 82, 66, 3, 85, 79, 61,210, 77,148,128, 22, 46, 68, 14,162,175,250, 75,164,203, 90, 22, 20, 78,155, 79,201, +112,150, 7, 86,162, 18,141,236, 2, 77,213,144,122,169, 92, 5,251, 71,223,135, 83, 81,137, 2,110,106,195,245,126,198,238,122, +162, 10, 54, 23,189,204, 83, 74,234,233, 36,152,139, 91, 97, 31,173, 86,158,132, 80,133,174, 8,200,203, 9, 13,110, 80,129,155, +235,163,167, 86, 42,226, 48,240,152,107, 62, 72,108, 11, 49,114,236, 33,253,160,135, 72,170,226, 24, 3, 77, 58,106, 57,124,177, +106, 67, 42, 11,237,195,231,121,245,184,241, 8,210, 81,188, 45,117,248,236, 45, 54, 44,232, 22,197, 57,143, 63,229,251,107, 45, +243,126,168, 34,140, 71, 56,185,255, 17,158, 62,190, 68, 90, 18,110,222,222, 34,159,255, 6,251,171, 51, 18, 97,112, 32, 11, 93, +116,158,158, 23,227, 57, 14, 52,114, 97,212,180, 80, 17,106,149, 28, 16,214, 25, 52,203,145,157, 6,128, 64, 78,196, 35, 90, 13, +143,247,196, 38,222, 69, 43,165, 54,212,156, 16,152, 91, 76,249,176,164,171, 40, 44, 66, 44,181, 41, 76, 70, 60,211,164,187,224, + 30,165, 9,137,140, 5, 47,205,232, 62, 74,198,134,228,249, 4,167,180, 21,248, 16, 21,241,154, 82,195, 47, 63,222, 97,123,116, +130,179, 57, 3,209,163, 6, 96,219, 26,236,146,225, 0,148,148,129, 37,193, 91,139,205,134, 20,202,121, 94,240,240,217, 37,126, +253,217,115, 76,211,130,215,238, 28,227,230,201, 6,203, 82,241,245,131, 39,152,150, 5, 71, 55, 94, 65,185,113, 15,126, 28,144, + 51, 61, 87,241,226, 25,236,114,133,101,169,120,118,182,195, 95,252,250, 11,124,130,107,220,192,128, 31,187, 27,248,111,255,248, + 7,120,126, 57,227,127,249,197,231,248,228,242, 10,159, 61,186,196,107,119,233,197,245, 28,136,116,103,180,248,239,126,120,130, +255,240,201, 57, 30,213,140,215,238, 17,245,144,200, 88,157, 39,109,180,136,105,186,175, 38,155,223,225,129,180,102,123, 41, 18, +182,102, 84, 99, 96, 87, 25,209, 36, 36, 53,157, 78,104, 45,123,145,171,170,239,141, 21,122,159, 57,176,187, 97, 21,197, 12, 14, +135,129,231,203,218,210, 84,174,228,132,121,182,138, 57, 14,108, 7, 5,143,230,117,181,192,171,149,186,178,165, 58,158,136, 45, +115, 66,240,192, 50, 39, 12, 35, 21,211,203,146, 48,110, 28, 79,209, 40,199, 28,236, 54,161,131,170, 34, 14,129, 71,255, 30,243, +180,104,182,182,243, 52,153,242,129,232,149,199, 39, 71,196, 37,143, 97, 5, 59,129,146, 40,133,163, 81, 74,197,156,102, 26,131, +243,249,145,109,134,133,101,134,123, 85, 2,103, 45, 21, 37,149, 21,123,157,120, 3,100,143,131,170,187,133,184, 38,171,182,131, + 36,177,146,117,138, 39,129, 43,210,205, 16, 47,222,161,228,138, 56,196, 46, 2,171, 5,165,242, 26,179, 18,163,191,228,194, 59, +117,114, 31, 8,155, 96, 78,137,195, 94, 90, 79,119,171, 64,225,253, 47,229,125,116,123,101,159, 2, 53,253,253,135,224, 84,141, + 47, 41,140,149,167, 48,183,110,222,194,173,219, 55, 89,183, 48, 32, 68,113, 29,205,204,152,207,152,246, 9,167,207,158,225,242, +242, 5,113, 46, 76, 83, 54, 67,169, 69,167, 17,228,242, 40,189, 99,127,233, 25,111,171,125,118,107,223,186, 87,187, 72,121,213, +173, 31,248,208,191,221,220,119, 11, 49,214, 23,122, 59,216,189, 31, 20, 22,191,163, 75, 63,252,184,135,125,187,164,221,209,231, +145, 41, 7,175, 74, 42,241,223, 69,139, 64, 95, 51, 11,214, 75,150, 40,207, 0, 15, 3,235, 29, 7, 3,244,246, 31,134, 0, 14, +105, 89,244, 50,168, 92, 21,211, 24,138,170, 79,235,186, 32, 73,178,129, 37, 63, 87,126,177,146,138, 99,157,165, 16,121,126,136, +164,227,144,125, 92, 12, 1,113,232,254, 80,181, 48,176,141, 35,229,172, 65, 42,173,210, 56,157, 94,120, 22,196,201,174,138,211, +207,114,206, 60, 54, 46, 60,113,160,138,136, 46, 51,199,193, 8,149,129, 26,116, 48, 56,141,221,235, 49,160, 20,112,144, 16,130, + 87, 86,177,143, 1,227, 16,153,215,139,213,126,143,195, 66,100, 55,197,156,103,199, 93,183,116,167,142, 69, 59, 50, 49,200, 44, +234,179,140, 88,148,152,190,102,235,161,151, 82,190, 63,129,134,248, 1,119,222,250, 49, 78, 95, 36, 44, 75, 66, 28, 2,230,243, +175,113,241,232, 11,237,230, 13,219,113,106, 17,254, 48, 19,183,184,232,114,222,195,182, 70, 99,124,231,153, 18,232,120,252, 13, + 24,166, 67, 97, 85, 49, 90, 70,129, 90,231,209, 80, 84,163,225, 66,100,232, 12,125,173,235,173, 82,109, 0, 88,161, 47,170, 86, + 41, 4,105,228, 71, 95,107, 97,104,134,234, 12, 44,115,161, 11, 9,237, 12, 35, 18,201,235,159, 21,164,210,120,125,226,124,192, +230,228, 6, 98, 28, 96,156,199, 47,255,229, 2,113,188,129,241,100,139, 90,102,156, 78, 21, 87,203,140,109,116,112,181, 98,176, +192,224, 45,198,232, 96, 98, 68, 25, 55,200, 41, 99, 87, 2,126,241,229, 87, 56, 59,189,132, 1,240,238, 31,190,143, 33, 4, 44, +211, 14,223, 60, 62,131, 65,195, 59,111,191, 6, 27, 7, 94,113, 84,180,221, 21,112,117,137,150, 51, 30, 60,185,196,255,241,245, +215,120,138,132,239,225, 8,255,238,205, 55,113,239,198, 6,173, 1, 55,183, 3,238,251, 1, 95,229, 9,191,122,240, 2,112, 30, + 49,120, 68,103,209, 92, 0,150, 9, 49,101,252,209,107, 35,254,207,211, 29, 99,150,237,225, 8,181,245,220,115,193,118,182, 90, + 86,243,246,195, 99,164, 27,120,250,134,182,150,133,132,141, 32,158, 2, 37, 46,123,253, 61,155,213, 32, 64, 66,121,132, 87,144, +114, 81,245,181, 81, 47,173,103, 20,178, 3, 76, 85, 97, 83, 85,119, 73, 97,222,192,162,232, 85, 48, 62,182,178, 95, 87,194,171, + 26, 26,156,233, 99, 74,154,186, 25,108,182, 27, 94, 73, 81,177, 1, 22, 93,166, 37,233,187, 76,108,244,181,245, 74, 20,242, 94, +167, 3, 21, 21,209, 70,181,144,141,155, 72, 32, 28,107, 59,113,141,133,186,141,167, 21, 46, 16, 98,117,222, 39,157, 0,164, 57, +169,152, 81, 68,194,198, 0,227, 54, 34, 47,153,254, 28, 91,105,133,195,111,189,135,231, 29,170, 88,179,150,148,117, 90, 42,186, + 25,234,220,105,170,210, 84, 36, 9,134, 66, 53,190,132, 25,216, 99, 13, 76, 48,202,157, 23, 43, 94,173, 5, 11,235,144, 42, 59, + 1, 68, 72, 76, 0,175,204, 19,141,172, 14, 20,199, 54,101, 82,153,187, 21,181,173, 29,228, 12,120, 47, 52,209,170, 58, 7,153, + 24,120, 78,201,220,110,143,176,217,142, 56,185,113, 76, 83, 77,239, 84,192, 58,237, 39, 45,104,246,187, 61,158, 62,126,140,121, +222, 51,173,142,238,146,222, 21,247, 92,115, 1,206,200, 74,101, 93,196,154,131, 43,252,219, 79,125, 95,183,115, 71,254,173, 33, +250,234, 13,105, 43, 23,216,119,205,241, 33,231, 28,193,157, 76,251,150, 0,254,176,160,126,249,159, 87, 19,250,134,254,185,136, +155,105,117,106, 32,162,214,218, 10, 28, 11,189,169,177,161,194,201, 67, 21,208,134, 15, 85, 6, 60, 48,165,136, 8, 14, 92, 29, +251,128, 82, 37,237,140, 98, 10, 43,239, 72,105, 44,148, 16,199,141,238,190, 41,133,173,104, 2, 13,169,189, 41, 96,161,180,140, + 16, 7,222,161,247, 17,161,144,204,198,205, 72,187,242,194, 84, 29, 75, 15,236, 60,205,152,246, 51, 67, 77, 44,230, 57,227,232, +104, 64, 75,132, 1,116,204,117,151, 23, 97,220, 12, 10,247,151,159,162,101, 97,135, 53,116, 32, 46,169,118,107, 0,103,176,139, +200,164, 72,116, 35, 87, 98, 5, 29, 28, 99, 88,140, 67,121,235,128,183,142, 58,118,241,109,215, 10,195, 63, 71,203, 59,184, 6, +192,106,158,110,239,114,101,124, 60,207, 73,211,118,168,170,182,170,100,165, 29,117,225,167,144, 60,189, 68,252, 34,193,223,173, +215, 63,196,197,149,193,213,197, 53,140,179,216,248, 29,158,125,253, 27,194,198,242,239,131,239, 0, 14, 93,225, 81, 42,172,134, +237,200,122,164,153, 74, 49,161,141, 14,230,214,152, 4,199,211, 6,107, 72, 73, 43,191, 63,195,182, 50, 58, 0, 28, 80, 45, 11, + 31, 29,114,170, 40, 53, 3,181,194,135,129, 1, 51,244,240, 22, 22, 14, 10,128,199,112, 36, 43,173,117, 58,101,169, 50,236,133, +126,111,196, 77, 64,163, 0,158, 16,163, 70, 76, 58,197, 3,211,250, 99,123,116,131,105, 75,192,195,111,246,184,220,121, 28,223, +220, 32, 12, 30,117,105,168,105,198,229, 62,225,217,179, 43,132, 96,177, 29, 60,110, 29, 69,140, 48, 20,199,105, 2,246,185,226, +175,254,211,199,248,242,193, 51,204,211,130,127,245,147,247,240,234, 43,183, 80,114,193,139,211,115,188,184,222,161,181,138,237, +232, 17,189, 65,202,172, 62,190,190,196,110,183,224,227, 47,159,227,255,190,120,138, 2,139, 15,112, 3,127,246,222, 27,120,227, +206, 49, 21, 39,148, 96,131,239,191,122, 11, 15, 30, 62,193,131,211, 61,222,121,189, 98,202, 84, 56, 14,150,208,179,187, 84,113, + 52, 58,196,214, 71,114,140,141, 65,213,248,235,151, 46,116, 57,170,204,170,250,111,223,181,211,235, 61, 2,165,220, 69,142,186, + 13,218,213, 73, 34,154, 18, 22, 43,239,245,217,197,176,238, 46, 26,147,216, 90, 35,130, 36, 88,189,108, 28, 86,127,159,253,207, +185, 32, 91,194,143, 6, 88,216,232,180, 83,111,149,221, 53,168,122,240,235, 37,210,122,128,133,172, 12,140, 17,123, 45, 65, 82, + 54, 71, 86, 5,119, 20, 31,219, 79, 77,183,202, 66,246,206, 33, 55,192, 71,143, 24,105,143,238, 3,105, 12, 44,251, 99, 41,120, + 38,235,231, 83, 14,133,248,137, 89, 61, 47,226, 85,199,226, 47,141,178, 93,157,113,198, 2,105,159,244,223, 53,238,196, 50, 79, +180,114,106, 76,179,243,172, 3,202,218, 73,146,199, 31, 42,112,155, 38,182,176,214,138,121,201, 4, 64,226,189,245, 60, 37,141, +144, 94,230,164,231, 82,173, 89,189,254,133, 5,167, 37,151,149,234,189,162,228, 74,216,106,239,213, 6, 40,194, 67,121, 15,251, +244,211,112, 28, 47,212,245,195, 81, 23,240,158,154,159,227,147, 35,118, 16,144, 77,153, 46,121,175,176,179,221,245, 30, 97, 32, +109,212,233,243,231,184,188,184, 80,126,125, 79, 57, 19,120, 77, 82,219,180, 42,218, 87, 93,120,143, 67, 48,135, 93,187,162, 97, + 15,247,233, 7,227,243,223,101, 83,107, 56, 8, 87,249,157,183,243, 1,127,238,165,105, 88, 51,122, 13,225,191, 52, 53,195, 97, + 28,172, 88,135, 9, 9, 44, 43,102,190,228, 91, 81,174,126,229,169,156,111,124,168, 36, 81,169, 27,242,192, 26,217,135,218,198, +176,127,182, 8, 48,129, 13,165, 87,172,100,132, 3, 71, 65,102,238,170, 86,223, 32,251,238,106,235,158, 97, 25,203,234, 72,139, + 31,184,192,187, 50,178,131, 17, 22, 85, 20,183, 57,103,194,194, 78, 51, 18, 87,150,227, 16,232,194, 67, 39,253,132, 16,104,170, +192,121,235,195, 16, 96, 89, 36, 39,156,122,185,116, 75,173,172, 82,119,152,167, 5,195, 16,104,159, 29,131, 62, 72, 98,241, 19, +101, 45,161, 64, 29,188, 15, 36,178,178, 22,195, 24, 86, 73, 87, 44,188, 81,223,107,103,251,170,168,193,209, 8,185, 11, 28,154, +142,144,151,121,225, 67, 27,252,249, 69,225,222, 93, 10,193,211, 47,125,225,151,250,238,247, 62, 68,182, 55,113,126,118,142, 6, +131,147, 77,195,243, 47,255,153, 46,221, 70,137, 73,178,111,174,156,190,229, 88,184,104,173,135,113,134,139, 3, 42, 18, 68,169, + 91,153,149, 94,101,247,183, 42,114,172,117,168,121, 33, 15,123, 74,176, 94, 44,101, 22,198, 81, 34, 12, 41,214, 1, 3,170,200, +193,144,147, 42,221,159,161, 98, 72,148,158,180, 35,228,128, 27, 78, 85, 36,245, 45, 9,102,228,235, 18, 7, 3, 21, 68,232,145, +184,186, 79,182,216, 28,111, 81, 17,240,213,215, 51,158, 60,111,168, 38,224,214,221, 91,202,253, 47,176,216,103,135,154,102,186, + 32,172,197, 30, 30, 87,167,123,184, 97,131,227,101,194, 24, 22,252,253,223,255, 26, 95,126,253, 20,203,146,112,180,137,248,224, +189,215,176, 29, 12,166, 90,241,235, 79, 31,224, 58,237,113,228, 34,142,182,131, 38, 90,153,180, 67,154,174,241, 15,191,125,134, +191,219,157,163,193,227, 30, 34,254,252,195,183,113,188,137, 58,214, 35, 26, 31, 48, 6,135,130,138, 71,151, 19,174,246, 25, 67, +160,164,172,106, 12, 96, 27, 82, 51,192,237,155, 24,158, 36,228, 60,171, 23,216, 40,229, 13,170,116,151, 14,230,119, 15,250,240, +157,255, 78, 68,173,206,121,182, 46,246,212,171,146,147,146,249,122, 26, 92,211, 76, 0, 81, 30,135, 16, 40,122,215,246,156, 6, + 43,197,100,171,136,113, 64,173,164,149, 0,231,150,215, 70,209,184,228,147, 14, 48,206, 96,158, 22,222, 71,147, 56, 48,179,165, +139,166, 76, 93, 43,225,216,237, 32, 19, 52, 41,158, 97, 12,166,253,130,205,118, 64, 28, 34,237,163,115, 34,251,101, 32,100,172, + 97, 65,104,136, 20,242, 19, 35,117,222,113,136,140,132,117,122, 46, 73,115, 98,120,197,211, 69,144, 44, 86,187,222,227,250,114, +199,157, 61,137, 89,151,153, 59,113,206, 59, 39,190,125, 86,151,129, 15, 14,211,190,192, 88, 10,176,114,158, 67, 93, 50,119,214, +158,180, 55,134,119,199, 18,179, 74,235,127,171,221,186, 0,134, 98,244,152,103, 74,117, 52, 86, 10, 39,168,250, 59, 51,252, 41, +165,110, 79, 22,171,156,184, 24,150,148, 97,173, 71,136, 13,134, 73,154,149, 39, 33,148,150, 39,144, 32,240, 36,102,125, 30, 64, +159,143,113, 28, 49,142, 35,142,142, 55,170, 59,178,124,214,209,154,133,206,255,101,102,182,189,119,184,186,184,198,249,139, 51, + 76,211, 68,241,162, 14, 74,196, 76, 75,103,206,147, 78,163,232,106,182, 29,236,164, 87, 23,188,161,200,111,172,152, 37,125,252, +190,222,149,155,213, 71, 89,101,130,172,222,145,111,221,239, 47,253,139,223,245,150,201, 68,195, 28,220,230,173,143, 21, 86,187, +118, 25,168,153,245,148,193,116,228,183, 20,238,118,149,240, 38,122, 13, 35, 56, 94, 99,225, 11, 11, 23,168,155,236,170, 75,197, + 37, 26, 67, 23, 59,231, 53, 75, 71, 41, 20, 40, 18,126, 84,205,115,238,251, 77,199,188,112, 7,227,208,201, 67, 42,216, 96, 49, +149,113,170,160,108,172,112,221, 28,145,186,158,130, 26, 76, 23,102,148,130, 92, 50,251, 20, 13,103, 12,103,237,142, 73, 85,221, + 35, 9,205,234, 97, 92,199, 82,106,170, 80,165,151, 33,241,184, 91, 66, 12,228,107,145,236,109,241, 63, 82,113,227,244, 1,245, +158, 3, 86,152,118, 71, 35,118,195,161, 43,100,223,106,154,219, 78, 85,175, 60,164, 36, 76,164, 23,209, 24,131,121, 74,212,197, +191, 84,198,169,135,221, 16, 1, 79,136, 75, 64,215, 44,188,242,246, 15, 97,198, 87,241,228,225, 25, 74,109, 56, 62,242, 56,251, +250, 31,137, 5,189,122,200, 29, 87,199,228,253, 52,170, 33,128, 97, 1, 32,119,183, 20,191,104,120,148,103,122, 55,100, 44, 2, + 31,106,132, 18,134,170,251, 91,237,224,100,139,213, 37, 35, 30, 17, 67, 66, 69, 63, 68, 88,239,225,196,118,102,232,149, 34,102, +127, 90,141,245, 29, 76, 96,204, 45,168,176,148,177,187, 80,161, 66,116,200,252,205, 73,162, 88,173, 64, 28, 7,148,226,240,224, +137,195,249,121,197,107,183,182,248,209,251,119,113,113, 57,227,122,191,192, 56,143,121, 63, 99, 73,133,246,254,113,128,143, 1, +197, 56,236, 83, 65,105, 1,117, 95,112,122,121,129,199, 95,127,131, 71,143,158,177, 2,184,224,199, 63,125, 15,119,238,220, 4, +202,140, 80, 23, 60,126,250, 2, 0,240,222,155,175,226,248,100,139, 60,147,120, 51,149,140,191,250,229, 35,124, 60, 95, 97, 68, +164,248, 92, 0,159, 62,190,192, 71,111,221,213,238,214, 57,135, 92,155, 30,208,251, 82,176,155,137,234, 85, 1,156, 28, 69, 56, +111, 96,110,222,129,187,113, 19, 75,126, 66, 69,166,103,234,151,161,103, 70, 10,110, 81, 51,155,245,152,177, 29,142,255,100,123, +215, 86,167,138,179, 78, 29, 6, 70, 15,105,171,204,110, 82,190, 55, 52,219,122,208, 18,119,236, 96,177, 85,173,164,252,166, 67, + 39,175,214, 1, 92,102, 25,203, 23, 10,217, 72, 5, 82,100, 86,212,175,204,202,113,177, 91,225, 37,239,111,173,149,105,135,162, +205, 17,228,109, 23, 26,145,221,209, 97,220, 68, 22,198,210,225, 71,157,102, 97,209,158, 20, 36,149, 63,159, 71,140, 17, 71,199, + 27,250,218,120, 10, 86, 11, 93,250, 57, 87,237,242, 67, 12,216,108, 73,205,190,223, 77,216, 95,239, 49,237,233, 93,243,174, 71, +127,202, 4, 83,246,160,242,253,214, 90,225,163,195,245,229, 30,195, 38,162,148,130, 16,105, 7,158,248,156, 36, 49, 45,137,210, +214,129, 56,222,123,204, 11,171,187,249,207, 78,251, 69,253,241, 68,175,164,201,158,116,167, 66,133, 43, 53,163, 21,233,196, 23, +213, 44,244,115,145,216,225, 2,157, 17, 66, 89, 8, 94, 53, 1, 34, 94,164, 41, 95,215, 56, 80, 65,232,177,217,140, 56, 58,218, + 34, 68,102,140, 4,207, 25,239,212,232,133, 64,190,248,148, 18, 34,243,244,175,175,119,184,186,188,196,180,223,233,196,173,159, + 89, 30, 57,207,204,119, 79, 76,177, 75,171, 84,181,151, 54, 76, 56,188, 59, 37,136,101,253,191,158, 26,183, 22,139,126,123,220, +254,187,202,223,239,222,135,127,199,158,126,213,181, 31, 4, 32,173,147,225,214,119,189,249,246,162,224, 32,203, 67, 92,105,181, + 80,230,130,145, 59,184,168,205,173, 25, 11,111,172,120, 45, 3, 67, 58, 50, 17,195,248, 43,145,232, 60,162, 8,209, 24, 76, 0, + 46,162,175,165,145, 58,135,193, 88,176,221,134, 9,101,188,199,165, 92,227,194, 47, 28,195, 83,162, 83,188, 97, 67,211,234,216, +128, 95,122, 57,176,141, 65,105, 21,211,126,210,189, 75,211,172,231, 78,135,163, 95, 44, 29,148,203,146,245,176, 32,177, 72,233, +172,226, 34, 89,203, 86, 9, 72, 41,101,165, 63,153, 85,198, 52, 9,218, 50,195, 99, 68,237, 25, 56,142, 17, 42,230, 43, 26, 30, +208, 52,125,135,192, 42, 20,142, 16, 98,212,138,173,213, 30,185, 42,251, 65, 9, 39,167, 81, 51, 91,202,248,215,154,211,130, 56, + 4, 45,138,136,249, 78, 33, 13,119,223,254, 16,241,198, 91,120,244,224,140,162, 42,183, 30,215, 79,127,137,253,213, 11, 22, 37, +209,215, 77,159,159, 60,195,196,175, 14,188, 94,168, 12,158, 16, 32,135,131,229, 92,119, 74,186,227, 74, 87,189,152, 70,199,145, +149, 41,110,211,190, 71, 76, 54, 82, 29,146,178, 89,115,177,169,170, 28, 54, 27,250,222,216,133,208,106,134,113,150, 87, 1,101, +149, 23,110, 25, 85, 89, 0,227,212,226, 97,228,239, 88, 18,225, 21,222,215,151, 68, 89,210,198,123, 88, 31,241,236,204,225,209, +115,143,187,247,238,224, 15,126,239, 46,134,253, 57,114,153, 81, 48,163,185,134, 93,154, 81,150,190,171,183,198, 98, 94, 72, 56, + 84, 27, 80,115,193, 60,103,156,191,184,192,151, 95, 61, 82,190,193,107,119,111,227,245, 55, 94,197,213,110,198,232, 45, 78,175, + 10,206,118, 19,172,177,120,227,245,219, 56, 62, 25,145, 56, 9, 16,103, 19,126,250,131,215,240,226,147,138, 93,109, 40,172,245, +248,213,139,107, 52, 99,240,147,119,238,194,178, 21,175, 54,131,108, 44, 70, 19, 81,140, 69,174,192,156, 10,106,107,136,131, 67, + 24, 35,204,230, 8,205, 24,236,231, 25,104,221, 94,217,106, 93, 49,166,153,129,112,224,100,238, 2,166, 67,181,111,223,135, 58, + 31,213, 46,103,120, 21, 36, 23, 57,106, 69,230, 81, 48,133, 95,116,216, 82,206,101, 69,121, 44,202,232,135,224,144, 25,194, 98, +100,239,103, 29, 44, 43,174,165, 88,173,105, 33, 1, 94, 4,246,187, 29,142, 79,110,144, 31, 90,116, 37,206,160,176,134,133, 46, +228,200,103,142,101, 62, 2,117,136, 52,213, 3,150,133, 46, 97, 82, 16, 55,245,195,103, 14,156, 10,145,222,103,217,147,251,192, +162,174, 24,177, 57, 26,201,109, 35, 42,127, 71, 78, 3,195, 96, 44,137, 78, 13, 49, 96,158,200, 78,187,187,158, 48,239,103,182, +225, 6,126, 86, 12, 7, 97,145, 95, 92,166,140,162, 30,111,141,208,203, 20, 94, 85,212,138,151, 27,133, 62, 53, 85,233, 23,166, +225,137,154, 93,210,108, 73, 3, 48,207, 11,143,197, 61,188,184,147,184,137,105, 44, 24, 37, 91, 31, 9,110,197, 93,146,217,162, + 38,147, 8, 82,163, 51,218, 57, 17, 19, 67, 69,138,166,175, 76, 26, 55, 67, 18,236, 69,105,149, 1,227, 56, 32,132,136,237,209, + 8, 3,112,248,141, 85, 77,209,250,172,219,239, 40,171, 33, 14, 17,105,201,216,239,174,113,113,113,169,100, 74,185,196, 28,219, +214,200,225, 83, 20, 45, 44, 49,224, 82,178,174,167,233,114,195,183,111,217,197, 14, 54,227, 93,236, 88, 87, 87,166,238,192,219, + 33, 5,238, 96, 95,245,187,246,233,223,190,232, 15,254,232,203, 11,243,213,136,125,125,153, 27,201, 99,127,233, 99,202,239,191, +187, 78, 8,209, 46,103,160,129, 1, 44,152,244,105,224, 21, 86, 98, 68, 61,204,150, 41, 25, 27, 48,147,183,144,244, 20,210,107, +135,249,172, 0, 0, 32, 0, 73, 68, 65, 84,217, 75, 50,143, 94,254,214, 34,120,171, 74, 83,163,170,119,175,226, 52,107, 29, 82, +154, 97,189,209, 29, 84,136, 81,127, 51,181, 84,184,209,227,232,120,171, 93,122,229, 39, 43, 39,242, 99, 46,243,130,105,191,192, + 58, 3,192, 43,239,152,212,171, 25,126,140,156, 24,231,212, 46,146, 82, 86,235, 27,217,223,168,194, 92,230, 25,206,121, 76,172, +126, 21,225, 79, 87,149, 87, 44, 75, 85, 27,213, 56, 14,188, 35, 18, 66,156,196,182, 50,246,113,173,254,100,142,178, 15, 18, 51, +217, 69,238, 37, 21,174, 90, 61,195, 81,214,160,141,190, 47, 45,124, 33, 10,248, 71,254, 28,137, 73, 42,238,188,254, 30,142, 95, +253, 0,223,124,125,138,121, 90, 48,142, 30,215, 79,126,133,171,179, 71, 92, 2, 90, 62,252, 2,199,156,130,167, 50, 21,181, 38, + 5,226, 88, 24, 88,207, 99,227, 6,238,194,237,202,103,203,137,197,181,162, 24,163,190,218, 92, 27,108,227, 61, 96,206,180,227, +151, 21, 12,243,192,117, 31, 62,140,204, 95, 39,223,113, 99, 84,174,177, 28,188, 35,126, 76,235,212, 81, 97,156,215,181,129,119, +178,179, 7,106,110,156,188, 71, 98, 70,231, 3,170,137,184,188,182,120,118, 30, 49,110,111,225,189,247,111,225,198,201, 64,160, +145, 84, 97, 7, 7, 95, 11,134,154,225,188,193,134,163,110,231,235, 29, 18, 28, 0,139, 82,102,164,185, 96, 41, 22, 23, 23,215, +120,248,224, 17,125, 94, 67,145,169,111,191,253, 26,246,251, 9,222, 86,180,205, 6,191,252,151,175,144, 91, 65,180, 30,239,188, +253, 26,142, 54, 1, 37, 88, 44,169, 34,188,243, 14,126, 8, 32,160,225, 47, 62,254, 6,222, 6,148, 86,113, 39, 4,252,224,254, + 45,166,254, 1,197, 80, 81,183, 75,156, 33,222,128, 41, 23,178,247, 4,160,109, 6,204, 55,110,163,204, 51, 48,101, 92, 92,237, +241,182,245,186, 0, 92,103, 48, 87, 1,110,188, 84,235, 31,134, 66,137,136,211,145, 96,147,237,126, 48,142, 59,222, 30, 11,105, + 26,197,127,186,224,153, 86, 86, 52,182,178, 37,113,218, 52,228,133,162,112,235, 74,211, 80, 74,101, 1, 95,211, 85,141, 66,159, + 88, 7, 16,124, 64,109, 36,124,117,133,214, 89,203,178, 80,242,153,243, 12,164, 98,178, 99,109,172,160,238,218, 0,235, 44, 91, + 51,141,134, 13,209,234,176,177, 42,220, 51,228,165,174, 38, 95, 93,100,104,157,131, 15, 86,113,177,210,205, 47,115, 90, 93,174, +124,161,242,218, 39,167, 78,165, 43, 12,193, 90,230, 69, 17,176, 34,208,171,166,170, 73, 42,165,164, 93,186, 88,248,132,194, 38, +157,218,188, 36,178, 0,231,238, 23,151,117,159,172, 31, 1,211,149,234,204,186, 16, 58,157,120,217, 37,114,217, 58, 96,153,179, +166, 73, 54, 86,141, 91,182,157, 73, 4,169, 1, 14, 32, 86,218, 61,114, 50,151,248,196,131,232, 43,184,179,223,108, 40,104, 43, +198, 8,103, 45, 55, 78, 85,197,195,210,148,181, 38,150, 57,138,204, 29, 55, 35, 90,107,184,188,184, 66, 90,200, 45, 96,217, 69, + 69,161, 64,125,196, 15,222, 25,235, 26,129, 63, 86, 39,130,214, 85, 78,187,233, 59,104,131,131,172,116,250,186,205,106,247,222, +190,205,108,104,135, 32,154,245,248, 28,178, 42, 91,137,125, 15, 59,233,246, 93, 45,250,183, 90,111,115,112,227, 31,138,226,116, + 84,175,223, 73,111,224,122,133, 80,213, 54,217, 71,243, 70,157, 99, 50,161,246,134, 85,157,181,210,168,199,135,168,159,134,198, + 48, 43, 66, 91,174, 26,234, 97,157, 3,172, 83, 69,188, 60,188, 13,224,232, 86,232,200,220,135,128, 34, 4, 52,121,168,141, 69, + 8,125, 7,221,120,239,139, 38, 0, 23,122, 33, 13,239, 70,106, 35,226,211,110,183,231,203,195,173, 4,118, 61, 66,114, 89,250, +248, 92,108, 32,145,243,152,233,165,245,180,223, 7, 84,133, 78,187,227,172,203, 18,137, 15, 44,165,169,232,200,251, 64,209,167, + 60,114,151,200,198,245,126,132, 58, 9,175,163,169, 24,195,202,151,111, 97, 3,103,127,243,138,131,118, 84, 88,197, 71, 26,216, + 64,100,189, 86,197, 39, 95,244, 55, 47,233, 62,173, 85,220,124,229,123,184,243,189,223,195, 55, 15,206, 48,237, 23,248,224,112, +253,244, 95,112,125,250,144,126,185,206,193, 51,163,189, 50,191,208, 51,249, 43,196,168,235, 9,233, 28, 76, 99, 37,179, 39,155, + 30,117,240, 70,247, 71,165, 86, 29,229,121,239, 48,237, 38, 6,200, 20,173, 66,137, 48,183,114, 85,153,206,182,166, 93, 35, 41, +156, 13,115,181,107,171,112, 16,197, 59,115,165, 13,193, 69, 26, 43,125,105,251,190, 74, 85, 42,210,157, 22, 88,191,193,213,180, +197,249,179,134,203, 93,195,107,175,221,195, 91,239,222,230,162, 20,184,158, 43,108,171, 48,197,194, 44, 6,152, 22,184, 74,182, +188,209, 83,254,182, 55, 13, 41,103,164, 6,248,205, 6,209, 55, 60,252,230, 12, 15,190,122,192,150, 71,122, 23,126,255,163, 31, + 32, 90,131,221,195,135,104,183,110, 32,223,189,135,199,207,206,177,141, 35,182, 67,192, 43,175,220, 0,140,197, 48, 56, 12, 3, + 48, 15, 30,227,247,223,194,110, 90, 48,124,250, 12, 75,173,184, 21, 7,252,217, 71,175,227,120,140,186,250, 41,141,190,158,194, +240,166,165, 22,248, 96, 49, 28, 5,224,230, 29,180,163, 45, 8, 9,111, 53,141,173, 20,161, 61, 50,138,151, 5, 84,135, 84,153, +118,208, 49,168, 50,216, 58, 13, 45,170,205,116,171, 41,123, 97,141,170,155,185,163,110, 5,166, 82, 14, 56, 93,118, 77, 39, 82, + 20,101,204,244, 58,244,192, 12,225,137,151,182, 62, 20,137,160, 33, 81,156,134, 51,212, 37, 90, 53,231, 2, 99,169,155,175,188, +191, 38,224,145,225, 75,197,233,207, 44,215,194,163, 96,195,226,200,192,218,159,198,201,111, 70, 21,251, 36,188,165,168,209,214, + 26, 54,219, 1,243,180,176,102, 7,202,134, 15,129,118,233,243,156,224,189, 93,141,187,173,174, 54,168,201,225, 64,169,121,193, +126,183,231, 20, 59,207, 22, 88,201,111, 7,159, 61,141, 93, 46,134, 18,186,248,119, 96,189,133,131,227,204,243,138,105,154,233, + 44,105, 64, 8,100,187,148, 53,162, 16,220,228, 76,241,158,149,253,188, 58, 43,165,135,175, 88,107,225,108,161, 41,229, 10, 89, +237,156, 35,203,104,169, 26, 14, 69,246,167,166, 69,117, 91,119,227, 88,173,115,152,205,222, 42, 17,232,198,113,224,200, 89,203, +113,196, 78, 1, 65, 50,217,148, 75,115,154,102,154,208, 13,196,201, 47,185,224,242,226, 10,243, 52,235, 10,181,213,214, 65, 68, +188, 90,148, 38,141, 86, 84,158,207,134, 66, 34,237, 90, 14,242, 29, 52,147,220,116,212, 43,141,219, 13,240,210,126,189,181, 67, + 45,188, 52,207,245, 59, 90,122,209, 64,173,199,251,230,191, 36, 81,121,201,148,134,239,198, 66,124,167, 95,125,189,227, 63,252, +211, 13,223,245,183,157,245, 74,241,147, 85,153,126,141,198,192,183, 42, 59, 50,195,191, 96, 48,222,147,236, 64,200, 89, 71,203, + 2,219,151, 46,163,213,172, 37, 8,229,133, 7,221,127,171, 13,134, 59, 53,152, 85,198,108,165, 56, 79, 26, 71, 25, 77, 0,243, +252, 98, 17,243,221, 41, 94, 86, 96, 14,211,126, 70, 90,104,244,239, 69,113,107, 13, 95, 56,212,133, 14,209,245,228, 27,246,181, +230,204,185,211,172,212,150,221,119,101,187,148,232,171, 72,253, 9,190, 76,171, 50,229, 53,110,145,193, 48,206,133,149,160, 16, +171, 64, 8,154,122, 88,239, 24,160, 70,168, 87, 18,112,161,195, 81,172,209, 67, 35, 45,164,182,151,120,189,148,232, 69, 36,126, + 53,237,208,101, 10, 94,107, 65,205, 25,183, 94,125, 11,247,223,251, 25,190,250,226, 57,133, 86, 56,139,229,252,183,184, 62,123, + 0,112, 0,135,117, 30,206, 5, 37, 91,137,130, 84,186,115,168,114,190,227, 36,133, 27,111,173,133,141,180,111, 4,163, 33, 27, +239,240,106,173,216, 93,207,122, 0, 24, 11, 82,183,115,236,109,101, 95,190,252,110, 90,225, 14, 52,211, 51, 69, 17,190,130,143, +164,103,160,164,212, 19, 2,121,172,100,172,163,200, 56,116,145,160, 0,108,156,115,152,150, 17, 95,127,229,113, 61, 21,220,186, +113,132,143, 62,186,143, 6,135,203,235, 9,105,201,176, 62,192,185, 66,153,229, 75,130,157, 95, 96,235, 26,188, 49,136, 14, 88, +174,103, 88,227,224, 13,239,164, 82, 65, 13, 35,190,248,230, 41, 62,251,226, 17,114, 33, 33,102, 45, 21,239,188,249, 10, 94,189, +119,130, 58, 47,112,241, 6,106, 60,194,217,139, 43, 60, 61,187,130,115, 6,247,110, 31, 99,227, 1,247,236, 27,212,163, 27, 8, +183,110, 99, 19, 2,178,181,248,248,209, 21, 18, 31,236,163,119, 8, 43,176, 79,230, 64,140,138,134,125, 46, 56,138, 3, 6,111, +177,185,125, 19,230,238,109, 42,114,157, 67,154, 38,160, 21,213, 86,104, 54,180,138,156,202, 75, 29,198,106, 27,199, 90, 23,203, +226, 55,210,196,200, 20,167, 7,178, 84, 30,169, 11,178, 57,165,140,224, 35,231,213, 19,149,141, 58, 73,122,124, 6, 23, 97, 12, + 93,244, 18, 50, 67,239,142,209,142, 94,124,243, 69,169,118, 61,226, 85,138, 75,233, 50, 37,121,176,241,142, 94,166, 84,228, 71, +183, 12,139,225, 44,118,182, 65,149, 92, 96, 2,159, 47,178,166, 3,141,190,199,109,224,209,181,209, 78, 61,242,120,220,135,160, +151,143, 15, 30,195, 24, 0, 80,199, 46, 57, 4,178,135, 78, 75, 65, 28,169,209,201,165,240, 25,194, 46, 3,110,198,125,112, 72, + 75, 86, 96, 38,113, 55,160,250,143,204,188, 10,112,102, 56, 90, 67, 53, 13,198,176,189, 13,125,194, 87, 74, 23,155, 73,136, 14, + 26, 96, 57,223,129,222, 35,206,215,246, 30,165, 36,253,253, 9, 24,198, 57, 2,224, 16, 91, 66,194,182, 40, 67,131,154, 27,195, + 34, 55,163, 83, 76,112,241,237,188,227, 21,169,129, 9,158, 19, 40,233, 12, 27,199,145, 33, 60, 86,149,249, 29, 72,100,153, 56, +154, 21,101, 75,218, 4,250,250,175, 46,175,112,125,181, 83,216,145,211,212, 61, 97,134,208,187, 93,107, 86,253,143,156, 63,234, +148, 41,249, 96,207,172,190,116,211, 47, 97,243,146,161,173,245,168,131,111, 9,212,218,119,169,222, 94, 34, 47, 30, 92,232,120, +105,150,223,190,141,166, 51, 47, 45,214,205,119,136, 81, 15,196,112,166,171, 92,204,193,215,184,186,151,101,106,106, 44,156,177, + 26,134,101, 29, 71,174,250,192,211, 31,122,191,188,196, 84, 58,190, 88,169,154,143,189,210,183, 61,153,201,172,196, 72,212, 13, +145,144, 70, 94, 68, 33, 12,201, 40, 86,198,201,212,181, 70,160,177, 0,136, 15,107, 25, 63,136,216, 38,196, 17,155, 35,242, 49, +202, 56, 34, 45,153, 61,230, 69, 31, 22, 42, 40, 56,231,153,195,226,115, 46, 42, 50,171, 43,235, 85, 78, 5,227, 38, 34,167,134, +220, 10, 39,204, 89, 29, 21,150, 92, 85,245,171,174,192,218,147,141,208,154, 86,242, 50,162,151, 74,210,177,144, 75, 33, 56, 60, +197,160,136, 61,242, 80,143,145, 64, 36,132, 90, 77,124,208,113, 48, 2, 43,244, 69,171, 80,149, 48,101, 20,248, 34,244, 42,160, +162,149,138, 59,175,191,131,215,223,251, 35,124,254,217, 51, 92, 93, 78,180,139,187,252, 28, 87,207,191,224,228, 39,207,163,169, +142,154,117, 62,176,218,158,194,199,106,173,112, 13,170,196,181,214,193,134, 0, 86, 49,240,104,145, 33, 15,185,243,255, 91, 45, + 90, 24, 25,208, 14, 90,148, 21,194,180,167,226,144, 10, 30, 43,110,138, 90,224,173,231, 98, 10,148, 2,197, 90, 13, 83, 41,150, + 54, 45, 73,145,135,203,188,240,104,162,234, 32,170,100,210, 53, 84, 4, 60,122,106,241,248,105,195,184,241,248,209, 59,183,113, +107,235,145,231, 61,150,102, 81,175,119, 72, 83,194,126,202,200, 54, 2,214, 96,180, 21, 67,201,184,118, 6,105, 90,176, 29, 35, +129, 49,150,130, 58, 47,200,115,194,217,213, 30, 31,255,234, 33,158, 95, 77,220, 65, 53, 4,231,240, 71, 63,125, 31,239,189,247, + 6,173,113,152,232, 85, 26,240,205,195,103, 4, 61,202, 25,209, 2,249,201, 35, 92,165, 2, 95, 61,142,238,191,134,214, 42,174, + 94, 92,224,211, 7,167,136,158, 50,170,207,230,132,255,248,203, 71,120,239,238, 17, 62,184,127,147,125,189,192,156, 42,206,103, +209,124, 0,102,123,140, 6, 7,235,232,144,164, 60, 4,207, 88,100, 10,197,233,163,196,210,151,131,107, 18,128,161,201, 8, 21, +204,108,115, 50, 92,180, 99, 29,241, 72,133,170, 85, 43, 26,165, 0, 42, 82, 85,196,154, 37,161, 54, 7,203,202,239,101,154, 85, + 63,210,216,150, 36, 94,113,153,148,137, 69, 75,115,160, 87,203, 1,231,132,123, 1,117,192, 72, 1, 74, 2, 77,210, 10, 56, 71, + 23,124, 28,130, 50, 12, 80, 42,251,186, 59,100, 71,236, 90, 94,199,190, 12, 65,226,145,178,208, 17,157, 37,184, 83,229, 60,113, +130, 68, 85,226,207,243,233, 47, 23, 99,206,100,133,147,119, 66, 5,153,176,152,118, 11,127,223, 13,214, 82, 78,121, 99,112,145, +128,115, 36,174,214, 90,131,198,144,160,146, 10,191,243,137,180, 73,156,177, 46,113,168,210, 92,200, 10,207, 90,135,198, 28,138, +101, 73, 40,133,206,106, 74, 70,236,171, 47,242, 42,247, 11,210, 57,139, 92,114, 31,203,114, 49, 47, 41,105, 75,202,140,141,237, + 17,160,114,102,198, 24, 25, 52,212,125,251,146,236, 70, 2,193,202,112, 25,175,250,166,253,110,102,247, 1, 16, 98,196, 48, 16, +244,167,214, 66,184,215,154, 87, 89, 4,128,243, 70,167,162, 20, 73,187,186,172,107, 81,103, 75,149,239, 37,247,203,186,181,223, +225,230,248, 14,240,139,121,249, 46,110,135, 23,127, 59,228, 53,117,128,234, 75,171,244,181,240,237, 16, 96,211,190,227,207,125, + 87,135,221,199,237,230, 32, 71,157,167, 55, 60, 25,235, 58, 53,171,117,131,119, 20, 73, 77,211,236,214,109,148, 10,253,170, 92, + 48,242, 4, 57, 11, 14, 21,132, 73,172,188,115,166, 14, 41,179,213, 72,186,102, 67,193, 41, 77,226, 29,105,132,158,150,153,128, + 52, 18, 75,138, 62,235, 39, 11, 22,237,120,172,179, 8, 8,186, 55,117, 54, 40,118, 82, 58,245,113, 24,116, 36, 40,170,120, 99, +129,121,158,105, 55,212,250, 72, 12,133, 70,109,228,167,230, 28,104,198,147,210,218, 64,212,239,135, 15,137,236, 30,172, 92, 62, + 98,255, 48,194,202, 54, 58, 58,118,252, 49,196,170,148, 83,193, 48, 68, 30,199,145,112,200,121,242,102,203,136,218, 49, 76, 71, + 20,243,226, 57, 44,108, 73,241,158, 84,251, 36, 36,226, 93,117,206, 40,185,113,183, 64,135,142, 32,118, 37,223,248,222,235,239, +226,213,119,127,140,207,127,251, 20, 23,231,100,159,201, 87, 95,225,250,244, 51, 56, 31,120, 4,104,216, 95,236, 20, 52,147,115, + 33, 37,126,149,100, 52,175,176, 24,107,156,250, 32,141,117,132,139, 20, 31,191,117, 40,144, 36, 36,114, 9,172,179,188, 37,151, +190, 72, 50, 83,237, 94, 75,121,240,164, 75,170,234,105, 6,172,113, 60, 37, 40,196, 62,200,139, 70,227, 54, 86,111,203,203, 75, + 12,242, 6,227, 6,156, 94, 56, 60,120, 68,185, 0, 63,248,254, 93,220,185,115,130,176, 59, 71, 40, 25,182, 52,192,122, 12, 37, + 97,218,239, 97,151,140,227, 49,195,134, 45,192,140,237,232, 29,182, 71,244,187, 43,251, 5,187,235, 25,121, 73,248,242,233, 5, +190, 58,223, 99,102,178,161,116,158, 63,251,241,187,248,209,135,111,177,179,194,118,124,176,109,248,229,217,185, 38,141,189,118, +123,139, 52, 39,204, 75,195,113, 3, 23, 40, 14,127,245, 55, 31,227,116,191,192, 51,211,223, 89,139,235,156,241,247,223,156,225, + 55,207,175,241,123,247,111,224,189,251, 39,216, 47, 11, 46,231, 5,185, 86,108,135, 65, 69,145, 2, 51,217,140, 30, 14,192,156, +120, 77, 4,219,253,232,109,117, 48,177,247, 64, 20,236,198, 56, 21, 55, 18, 0,198,234,232, 91, 38, 51,116,160, 85, 88, 46, 32, +215,158,221,218, 24, 71,203, 8, 85,211, 50, 9,223,172,193,178,244,132, 54, 99,109,199, 6,163,209,101,134,166,202,232, 53,198, + 86, 58,187,222,105, 22,118,148,172,182,163,130,143,118, 65, 47,236,180,228,222,209,177,235,101,176, 30, 41,101, 12,227,160, 23, + 60,105,109,172,226, 73,141, 5, 12, 91, 52, 9, 49, 93, 49,110,122,183,233, 2,197,147, 18,226,153,104,137,181,102,204,115,209, +162, 75, 3,102,216,243, 78, 78, 22,139,156, 27,108,108,108,115,229,113,185, 68,100, 58,154,116,201, 5, 95,146,172, 49, 11,246, +251,153,215, 22, 84, 88, 88,166,119,106,119,174,185, 25,204,249,168,141, 47,116, 18, 35, 39,214,180,244, 88, 84, 86,214,243,207, +220, 24, 18,158,218,106,209,108,131,117, 65,149,224,214, 2,181,145, 24, 89,138, 46, 99,168,144,217,110,183,156,124, 72, 68, 61, +207,103,138, 20,123,214,246, 8, 87, 99, 12,166,105,198, 50, 47,168,181, 32, 4,135, 97,140,234, 32, 58, 63,191,228, 11, 59,245, + 81, 58,159,141,228, 36,201,236, 53, 23,141,147, 71,206, 11,159,247, 70,131,183,202,234, 57,151,100, 54, 34,233,117,117, 59,117, +235,230, 59,172,227,237, 91,106,243, 53,126,198,152,151,130, 93,240,237,139, 92, 47,240,213,252,125,157,165,240, 59, 33, 52,223, + 49,114, 55, 42, 62,151,118,189,169,223,188,231, 55,172, 7,241,134, 67,116,178, 18, 94,157,160,214, 93,231,199, 88, 22,182,202, +187,235,165, 2,211, 63,104,197, 19, 71, 68, 48,219, 68,213,222,147,118,250, 40,158,108, 18, 48,148,234, 36,137, 59,158,125,133, +125, 42, 97,120, 95, 66,194, 39,203, 86,133, 53, 14,210,249,136,113, 28,117, 63,213, 86,227,234,156, 50,179,148, 83, 87,187,115, +118,158, 99,204,173,229,192, 2,203,184, 67, 41, 84, 36, 62,176,143,153, 68,173,207, 70,125, 47, 59,196,222,221, 83,250, 40, 77, + 29,188,239,190, 93,199, 99, 40,218,245, 26, 5,200, 72, 53,220,233,113, 84,244,120,182,130, 8,207,184,173,248,211,244,189, 25, + 37, 40,209, 62,168,178,213,173,234,190, 90, 14,139, 55,190,255, 67,220,126,227, 71,248,252,183, 79,112,241, 98, 15,231, 45, 48, + 61,192,245,233,103,244,242,231, 10, 99, 2, 91,207,156, 30,180, 2,252, 33, 75, 72, 65,240, 36,100,233, 7,161,208,195,236, 42, + 98,145,243,161,211, 66,163,108,205,162,239, 59, 60,226,122,215,149, 45,169,123,241,197,106, 37,135,141, 36,124, 81, 28,163,101, +130,160,163, 17,247, 66,193, 60,148,224, 74, 85,186,216, 43, 91, 45,168, 8,120,122, 10, 92, 92, 57,108,134, 17,127,248, 7,247, +113,124,114,132,148, 42,202, 50, 35,101,250, 92,176, 30,213,143, 8,184,196,205,209,193,222, 28,105, 13,176,137,152,206,247,180, +110,224, 41, 65, 93, 50, 92,107,176, 45,227,151, 95, 61,199,211,125, 82, 58, 34,248,160,125,255,221,251,120,255,131,183,201, 42, + 34, 57, 6,165,194, 89, 42,182,158, 60, 59,231, 2,211,225,181, 55,238, 1, 71, 17,102,211, 96, 78, 78,136,115, 16, 26,238,221, + 61,193,157,147, 35, 92,236, 38,230,163,211,197, 30,172,195, 46, 23,252,127, 15,206,240,249,233, 53,137,241,106,133, 99, 54,129, + 15,158,163, 91,171, 18,193,188,203, 48,231, 79, 57,159, 58,117,182,182, 15, 42,104,132,177,218,237, 90,235,251,120,111,205,169, + 22, 8, 17, 26,156, 11, 61,137,177, 84, 14,116,169,108, 23,163,119,189,182,190, 42,147,103,168,105,150, 58, 23, 15, 13,104,153, +131, 96,120,114, 39,150, 85,121,135,214,201, 94,107,116,108,107, 13,214, 83, 34, 99, 41, 21, 78, 17,169, 85, 63, 47,237,212,189, +138, 79,107,109, 24,198,129,161, 46, 52, 85, 26,134,168,248,234, 24,189,198,161, 58, 43, 59, 97,102,216,143, 65,129, 40, 66,170, +180,209,115, 83, 96,184,136,181, 28, 48, 68, 33, 43, 82,160,138,200, 52,205, 43,130, 89, 37,162,227,146, 88, 40, 42,145,196, 60, +117, 42, 44,250, 44,185, 32,183,202,172,140,194,192, 22, 18, 43,138,126, 73,168,119,222, 7, 20, 14,150,106, 13,216,239,103,202, + 71, 96,235,177, 8,219,228,231, 73, 19, 50,217, 45, 27, 77,206, 20,189, 14,120,253, 37, 26, 4,225,191,147,163,129, 68,109,155, + 13,173, 58,157,117, 36,118, 99,239, 63,173, 19,138, 22,100, 41, 81, 81, 34,194,201, 16, 61,198,205, 70,109,112, 87,151, 87,200, +133,166,171,242,113,232, 44,102,157,150,164, 88,150,170, 54, 63,177,105,117,251, 46,248,206, 49, 48, 5,244,142,243,197, 78,144, + 42,116, 77,128,121, 73,229,190, 26, 93,155, 3, 76,108,191,220,215, 16,166,111,253, 51,176,178,116,175,132,117, 6,223,234,238, + 91, 59, 84,185,183,117, 84, 27,186,118,164, 11,227,214, 23,186,233,191, 15,126,111,193,144,182,134,254,193,233,253,226,233,128, + 5, 55,173, 78,163,195,165,121, 12, 62, 32,243,115,225,141, 49,138,212, 68, 51,136,195,160, 47, 18,141,115, 28,106,174,186,175, +240,222, 99, 89, 22,141,121, 68,115, 12, 23, 33,245, 57,141, 82, 28,123, 75, 43,226,176,161,224, 21,219, 73, 71, 82, 93,200,159, +243,156,194,230,125,192,102,187, 65,140,129,247, 81, 77,115,211,231,105, 86,116,164,236,189, 68,174, 40,176,137, 2, 3,239,161, + 30,216,106,232, 2, 77,139, 89,229, 73,179, 90,189, 57,237,204, 69, 13, 44, 9, 95,133, 69, 33, 98,217,208,125, 58,143, 55, 12, +160, 85,149, 28,112,128,193, 48,120,237,222, 36,211,188,241,254, 92,210,226,192, 24, 88,199,251, 46,233, 96,215,246,163, 90, 25, + 12,200,234,216, 55,191,255, 33,110,190,246, 30, 62,251,244, 49, 46, 47,246, 84,245, 78, 95, 99,127,254,128,127,174, 20, 44, 67, + 93,148,231,145, 94, 80, 26, 30, 97, 88, 11,130,188,172,108,103,179, 14, 10, 47,160,137, 69,208,176, 24,121,152,201,118, 69,120, + 86, 58,216, 9,181, 11, 86,193,171,211,129,199,227,226,195, 21,232, 14, 9,174, 56,208,199,121,101, 65, 75, 18, 91,205,164,216, +174,133,195, 38, 56, 10,214, 7,143,243,115,139, 79, 63,175,248,254,247,238,225,103,255,246, 77,220, 56,217,162, 89,139,221, 62, +225,178,206,168, 32, 39,193,156, 50, 42, 50,252,237, 13,112,114, 3,219,253, 21,114, 42, 88,114, 69,219,239,113,180, 25,208, 74, +198,178,159,169,227,107,192,179,171, 9,191,120,240, 2,215, 75,193,209,118, 80, 59, 99,173, 13, 31,189,247, 6, 62,252,232, 29, + 98,122,243,229,154,178, 81, 93,194,139, 23,215,152, 88,133,108, 12, 48,158,156, 32,111, 71,120,103,176,203, 13,152, 43, 76, 89, +240, 39, 63,121, 27,127,252,193, 43,248,229, 87,167,248,171,191,249, 4,159, 61, 58,163, 81,175,243,234,159,125,122, 77, 99,108, +199,185, 7,222, 25,140,209,161,193, 97,153, 18, 80, 18,112,113,138,146,103,164,179, 43, 70, 98,246,238,206, 57,207,196,184, 30, +129,217,154, 81, 70, 68,107, 6, 70,153, 9, 50,106,109, 28,188,209, 58,254, 87, 20,239,134, 25,254,173,209, 72,215, 5,141, 25, +174,181,162,162,114, 26, 33, 61,155,222,211,180,173,153,166,253,133,181, 36, 88,181,250, 49, 37, 27,157, 51,217,171,225,194,142, +118,187,173, 1,243,188, 32,198, 65,255, 89, 46, 10, 25, 47,230, 82, 96,138,225,213, 1,209, 43, 91,131,254,185,101, 33,154, 97, + 8, 94, 41,140,206, 17,255,193,123,135,205, 17, 53, 12, 49,122,142,101,245,172,142,151,119,195,115,212,178, 65,205, 85,187, 82, + 74, 43,108, 88,230,194, 34, 91, 33, 59, 82,227, 80,109,211,213,159,136,203,100, 39, 47, 83,170,121, 90, 72,107, 36,209,196,173, + 97, 24, 54,172, 85,130,146,234, 8,159, 77,231, 69, 98, 86,193,126,183, 71, 74,153,155, 16,163,132, 1, 42, 20,106,167,170,193, +234,129, 47, 69,159,117, 84, 36,166,156, 17, 60, 77, 18, 93,160, 41, 80,140,195,106,212, 76, 44,125,199,162, 55,171,150,198, 30, +243,156, 82,198,245,213, 78,119,194,228,245,167,157,252, 60,205,152,166, 73,117, 1,214,146,194,158,116, 17,172,157, 66,211,204, +137, 42,207, 68,237, 51,232,198,121, 19,194,160, 32, 47,125, 65, 45, 73, 69,161, 34,186,181,214,247,248,234, 21,189,205,172, 72, + 48,166,225, 59,100,103, 93, 83,126, 56, 82, 63, 36,209,181,122,232, 62,107,171,150, 94,138,228,190,254, 50, 7, 54, 57, 99,205, + 1, 82,214,174, 45,106,102, 53, 33, 19,228,171,117, 61,122, 85,210, 57, 87,249,237, 85, 89,251, 93,209,223,239, 28, 17,166,122, + 30,203,115,198,122,227,151,188,112,210, 81,225, 44,115, 31,140,218, 54,124, 12, 42, 88, 42,156,130, 4,219,171, 63,195, 41,102, +198, 88, 88,206, 69, 7, 23, 0,243, 60, 99,220,140, 84,237,137,141,132, 15,207, 37, 81, 53,103,140,163, 76,242, 97,224, 61,141, + 84, 47,228, 43,191,190,218, 97, 89,102,253, 6,199,113,192,178, 36,133, 52,136,239,213,178,151,207,242,222,172, 85,122,112,114, +206,136, 67,196,180,103,197,101,147,223,122, 83,207, 37,165,251, 24,181, 99, 24,217, 71,115,241, 32,113,134, 49,146,248,172,149, + 10,231, 37, 9,137,170,202, 82, 24, 63, 41, 21, 19, 31, 92,185, 20,254,239,244,160, 90, 14, 75,169, 43, 81, 70,109,171,136, 91, + 73,192,242, 22,239,252,240,247,177,185,245, 22, 62,251,205, 99, 92, 94, 76, 52, 9,216,125,137,253,229, 35, 22, 64, 57, 30,183, + 25,134,202, 64,187,110, 25,175, 18,113, 43,246, 97, 20,243,164, 13,239, 54,168,179, 54, 10,228,145, 53,134,243, 52,246, 21,192, + 79,109,134,237,120,108, 65,172, 20,176, 82, 51,141,195,230,253, 68, 64, 10, 71,190,119,193,252, 90,103,105,135, 87, 58,128, 71, + 0, 54,148,149,158, 97,217, 82,233,156,229,132,190, 17,229, 69,193,135,239,221,198, 31,253,248,109, 88,107,113,189, 79,234,189, + 63,222, 68, 36,111,177, 76, 51,242,254, 28,246,198, 9,117, 74, 33, 32, 93, 55,180, 76, 93,245,120,247, 54,114, 3,230,243, 11, + 88,236,209, 90,197,111, 30, 93,226,243,103, 87, 72,165, 96, 28, 35,117, 30,173, 33, 6,143,255,234, 95,127,136,239,191,123, 31, +165, 84, 26,159, 26, 58,108,114,202,168,185,194, 71,143,175, 31, 62, 67, 46,164, 57,184,119,243, 8,155, 33,112,209, 72, 47,235, +254,252, 5,202,233, 99, 4,222,219,254,201,207,127,132, 63,253, 55, 31,226, 31,254,233, 51,252,175,255,254, 63,227,244,114,191, +130, 36,153,158,121,110, 12,198, 33,224,104,160,177, 50,205,220, 95, 96,191,223,227,242, 58, 33, 85,131,237,102,131, 48,140,221, +178,163, 73,138, 70, 3,157,154,210, 90,232, 57,215, 76, 3, 21,172,246, 3,168, 86,114,188,138,128,212,114,226,150, 28,232, 98, + 95,172, 18,244,194,197,124,169, 21, 53,209,132, 79,236, 96,244, 25, 11,170,174, 95,232,194,169, 43,156,151,119, 94,181, 54, 82, + 40, 11, 87,189, 11,229, 72,148,233,184, 35, 25,198,129,217,231,125,245, 67,162,172, 10, 31, 50, 28,251,204,197,227,171, 89, 17, + 48,216, 30,109,144,115,225,192, 16,143,113, 51,244, 46, 73,124,250,206, 41, 42,149, 86, 95,194,157, 55, 12, 94,105,216,108,253, + 42,123,156,126,186, 89, 17,216,244,204, 91, 16,153,179,212,138,101, 90, 96,184,169,168,106, 67,165,119, 97,216,140,220,141,173, + 67,112,232,125, 39,136, 77,229,124,116,102,202,231,172,154, 24,185,200,122,161, 37,172,117,199, 5, 67, 7,109,209,193,111, 49, +140,163,218,223,164,128,144, 49, 48,173, 51, 28,229,198, 51, 6,150,166,116,133,163, 93,233,103, 66,238,128,160, 2,183,153, 19, +226,118,187, 93, 7,234,112, 81, 32, 93,189,232,105,228,210, 92, 68,181,207, 5, 94,105,156, 50, 86, 87,151,162, 49,250,179,114, +214, 34,177,155,233, 80,157,222,232, 34, 99,244,180, 54,139, 47,161,144,205, 1,149,193,176, 15,188, 7,188,152,213,199,108,173, +155,222, 69, 73,111,165,225,125,121,148,110,215,127,238, 80, 23, 38,243, 0,163,218, 43,123,192,131,183, 7, 1, 76,102, 53, 9, +176,250, 76, 74,247, 46, 16, 8,211,119, 13,250, 51,202, 37,147, 85, 89,226,120,141, 1,192,148, 83, 18, 94,200, 47,128,171, 9, + 86, 37, 83,180,101, 84, 27,129,227,104, 55, 25,129, 83, 90, 22,129, 37,194, 48,112,110,116, 65, 99, 81, 74,225, 11,130,108, 34, +158, 32, 25,149, 70, 40, 57, 23, 4,111, 85,217,231,125,196, 48,142,132,137,181,142, 59,218,204,223, 63,145,170,164,147,170,149, + 46,140,202,123,164,156, 73, 69, 12,131, 3,228,170,252,214,156, 39,209, 70, 8, 44, 20,226,213,128,238,219,213, 72, 72,126, 75, +195, 99,208, 56, 4,173,118, 37,243, 92,245, 1,150,112,170,203, 34, 96, 26,163, 22, 58,241,104,166,148,185,242,207, 43,125,128, +248, 74,139,102,183,235,190,209, 52,173,228,188,115,248,224,167,127, 12,184,155,248,236,211, 71,184,186,154,137, 95,125,253, 5, +150,221, 83,182, 6, 2,141, 65,255, 6, 13,141,237,131, 20, 86, 67, 54, 20, 27, 7, 26,131,134,192,251,174,202, 93,118, 83,165, + 43,133,163, 88,158,206,208, 69, 65,157,126, 86, 36,100, 46, 61,144, 35,113, 36,106,229, 81,108,225,221,191,215, 74, 27,154,152, + 86,114, 70,171,244, 32, 55, 78,230, 18,220, 35,253, 55, 18,248,128,179,206,195, 16,169,251, 99, 33, 93,136, 17, 23, 87, 51,156, + 49, 48,206,146, 30, 97, 78,200,165, 96,153, 18,142, 78,182, 56, 58, 30, 81,141,195, 52, 45, 36,144,171, 30, 33, 24,140,183,110, + 98, 98,156,102, 29,183, 56,125,126,129,127,254,228, 9,118,153,138, 24,239,232,239,160, 53, 28,111, 7,252,201,207,127,132,251, +111,220, 35, 96, 14, 26, 2,167,138,229,148,217,165,224, 48, 77, 51,190,254,230, 84,131,120, 78,182,131, 2, 66, 82, 42,112, 21, +200, 79,158, 34, 47, 19, 90, 6,134,152,209,190,122,140, 27,223,123, 29, 63,255,217, 7,248,224,253, 55,240,191,255,251,255, 23, +127,253,247,159,169,167,219,192, 34,179, 30,229,149,187, 39,184,119,123,131,235,253,130,197, 85,212,157, 67,216, 12,216, 21,131, +253, 85,193,176, 25,216, 83,110, 85,120, 36,122, 23,234, 52, 69, 21,187, 18,230, 88,171,255,194, 24, 42,216,100, 84,175, 74,120, +121,246, 12, 69, 58,166,156,145,139,252,127, 38, 46,122,219, 3, 93,235,202, 79,220, 26,163, 68, 61, 95,188, 18,178,209,185,220, +214,244, 78,178,119, 45,189,192,148,131,177,148, 2, 87,233, 82,179,206,193, 54, 71,197,178,119, 48, 28,138,148,139,104, 9, 8, +174, 98, 12,217,188, 98,140, 12,149,113, 60, 9,160, 85,198,198,145, 16, 45,142, 17, 13, 70, 11,113,201,118, 40,133,172,149, 34, +250, 18,119, 2, 21, 27,180,230, 27,198,128,221,245,172,130, 44, 17,204, 73, 24, 83,102, 61, 2,249,208,179, 30,252,146, 29,111, +141,225, 46,153, 46, 95,177,111,229, 84,148,115, 47, 22,176,196,209,163,178,186, 19,152, 15, 17, 37,187, 79, 94, 46, 83, 0,172, + 55,234,171, 46,239, 37, 2,218,232,247,148,115,102, 7,129, 88,215, 12, 89,205, 10, 93, 70,203,156, 84,189, 46,252,122,231,168, +137, 18, 23,204,213,229,142, 44,105,203, 76,205,155, 49,112,142,222, 37,217,151, 3,253,236,246,222,107, 4,182, 97,157,150,243, + 86, 69,207,149,207,158,202,234,247, 82,136,121,208, 0,204, 83, 87,203, 31, 32,227, 84, 4,199, 77,201,203,227,117,115,104, 21, +147, 98, 8, 47,255,251,151, 8,111,162,255, 18,102, 75,171,135, 33, 84, 26,100,179,182,211,241,197,109,209, 39,121,130, 70, 23, +189,152,196,145, 91, 99, 15,132,124,142,139,227, 46, 20,109, 42,164, 62, 20,144, 86,190, 19,107, 23,159, 43, 32,205,177,240,218, + 35,132, 1, 33, 70,248,117, 52, 31,125,128,194, 15, 11, 71,186,177, 2,190,171, 90,187,146, 64, 0, 16,209,143,200, 11,209, 40, +228,192, 32,152,128,231, 37,191,215,157,157, 42, 49, 13,169,215, 83, 74, 24, 55, 3,134,113, 32,213, 59,255, 70, 50,167, 18,165, +133,162, 12,155, 86,201,189,202,182,130,109,244,110,245, 53,113, 32,205,202,187,217, 69, 52,107, 32, 77,210, 42, 93, 2, 87, 66, + 12,154,205, 43,226, 5, 18, 61, 89,237,222,125, 96,177, 29, 67, 18,214,170,221, 16,250,206,164,178,223,115,217,207,202,232,213, +140,241,117,224,170,248, 12, 25,200,239,189, 69, 28, 6,124,240,147,127,133,253, 28,241,245,111,159,224,242, 98,194, 48, 58,204, +231,191, 65,218,159,106, 21,215,140,225, 73,121,101, 10, 32,141,201,198, 49,104, 49, 99,172,129,101, 93,123,145,209, 0, 40,176, +133,246,118,232, 99,102, 46,101,213,182,195, 35,193,156, 73,143, 32,118, 66,177,182,201,255,134,205,160,108,120,231,233,162, 73, +203, 66,176, 16, 67,137,108,206, 90,212,146, 56, 46,145,105,121,181,168,168,208,135, 8, 63, 12,236,192, 48,188, 43,109,216,167, +138,103,103,123,220,187,115, 4,111, 28,210, 50,211,139,151, 59,233, 43, 23,131, 96, 29,204, 38, 98,140, 14, 87,206,160, 2,184, +220, 45, 72,153,190,254, 79, 63,253, 10,223, 60, 57, 83, 54, 64,206, 85,139,144,155,199, 91,252,155, 63,254, 16,119,239,222,212, +195,197,240, 30, 82, 69,149, 44, 76,249,230,225,115,156, 95,237,180,136,187,117,235,132, 18,237, 4, 18, 52,207,104,121, 70, 46, + 5,181, 88,180, 12,184, 84,145,207,118,152, 83,193, 56, 6,252, 15,255,253,159,226, 79,255,245,251,248,159,255,183,191,197,103, +143,206,104,143,207, 72,205,247,223,190,139,215, 95,191,133,221,245,132,253,133, 67,157, 79,177,179, 6,203, 64, 94, 99,159,174, +212, 75, 46, 69, 51,184,163,232,158,115, 3,138, 90,162, 46, 93,230,114, 70,196,167,202,133, 0, 11, 42,141, 90,178,202,188,144, +142, 37,103, 36, 6,175, 52,190,124, 75,173,186,191,215,220,103,198,178, 90,103, 81, 42,113, 26, 12,228,128,166, 34,208,113,178, +163,109,102, 69,197, 2,235, 62, 4,108, 67,157,106, 3, 77,217, 98,164,174,146, 14, 43,191,130, 87,101,132, 64, 68, 55, 10,242, + 33, 33, 31, 77,128,160, 29,152,115, 14,195, 72,221,229, 50, 39,238,186,105,101, 49,239, 23, 77, 78, 44, 44,144, 21,182,251,192, +145,172, 57, 23, 42,240, 1,132, 13, 81,232,196, 37, 19,130,165, 92,119, 97,113, 48,222,186, 49,177,178, 49, 11, 97,158,178, 6, + 30,129, 15,116, 97,179,139, 37,174,182,138,178, 80,211, 34, 89,235,211,148,120, 68, 78,157, 51, 21,178, 75,207,212,174, 77,127, +151, 50,102, 39,145,154,215, 11, 77, 10,120,107,193, 63, 71, 71, 63, 71,177,206,101,106,174, 42, 11, 59,247,251, 9,181, 54,140, + 99,212, 12,248,194,235,132,253,126,194, 60, 47,152,167, 25, 75, 74, 84, 28,240,217, 66, 2, 46, 18,224,102, 94,211,138,107,167, + 25, 42, 54, 68,136,108, 45,227,136,249,210,147,194, 48,132, 1,203, 66,188,119, 25,201, 87,214, 79,201,148,180,169,195,163,169, +127,222, 50,238, 26, 85,232,151,135,233,113,253,194, 62, 84,196,137, 43, 71,129, 95,181,117, 62,188, 53,250,126,136, 7,188,113, + 51, 35,106, 55,153,178,233,223, 93,249,204, 73, 95,149,117,117, 93,106,159,178, 72, 7, 46,133, 65,237, 9, 69, 93,160,186, 90, + 6,116, 24, 13, 61, 47,142,223, 29,153,182,121,231,233,220,244,145,217, 1, 4,108,242,122, 17, 58,199,106, 67,195,233, 99, 78, +115,181, 41, 38,147,163, 49,115,209, 48,118,160, 40,188, 69, 34, 59,141, 37,218, 17,177,140, 11, 98, 28,104,231,196, 59, 29,122, +201, 50,188,115, 72,185,240, 47,153, 42, 70, 18,110, 8,201,172,104, 14,241,180,159,180, 26, 11, 12,116,209,221,184,100,131,219, +126,153, 58, 33,239,176,189, 74, 94, 70, 82,140, 86, 69, 76,210,247, 7, 78, 30,242,100,115,210,157, 63,133, 43,200,104, 75, 84, +198, 11, 43,155,173, 53, 92,245,123, 29, 25,130, 65, 25,146,251, 43,191,240,174,218,132,190, 8, 82, 36, 89,223, 3, 18,208,128, + 56, 30,225,163,159,255, 91, 60,127,190,224,209,195,167,164,242, 29, 26,234,245,111, 96,234,165,238, 82,117, 23, 67,244,114, 61, + 44,135,129, 68, 66, 52,113,224,148, 55, 33, 53, 25, 11,235,233, 65,145, 68, 37,128, 14,154, 97, 28,200,179,238,201,106, 87,120, +199,157, 82, 34,177, 28,239,199, 41,128,163,233, 97,130,214, 5,148,210, 57,144,215, 89,190, 71, 17, 51, 45,202,210,119, 22,156, +103, 77,227, 85,207, 83, 4,178,239,241, 85, 81, 43, 66, 48,184,190,158,177, 44, 5,231, 87, 11,198, 96,177, 29, 28, 78, 78, 54, +112,195,128, 96,216,185,176, 79, 72,185, 98, 24, 35,106,169, 24, 51,127,206, 37,225,139,175, 31,227,171,135,207,113,181,155,180, +184,107,204, 10, 88,150,132, 87,238,222,192,159,252,252,135,184,121,235, 68, 71, 95,104, 92,116, 58,192, 27, 67,128, 24, 3, 44, +243,130,143, 63,125,160, 7,198,173,147, 13,190,255,238,107,200,133,105,103,198, 2, 33,162,109, 78,128,122, 14,211, 26, 76,176, +104,195,128, 92, 27,246, 83,162,223,167, 55,120,227,245,187,248,159,254,199, 63,199,211,211, 43,252,195, 63,126,129,191,253,231, + 47, 80, 27,240,193,219,119,241,202,189, 35,236,183, 30,211,198, 35,205, 39,216,219,107, 76,209,227,203,103,123,108,143, 2,119, +205, 14,214,117, 49,143,117,140,232, 21,222,128, 49,171,192, 7,195,106,231,172,157,185, 91,225,157,115,106,252,140,100, 69, 41, + 75,130,151,117, 70,237,104, 61, 13,106,197,157,144,177,103, 45,164,113,200,137, 99, 55, 57,143,129,211,204, 12,119,242,114, 72, +107, 49,194, 2, 83,205,132,230,206, 37,165,207,235,114, 52, 0, 0, 32, 0, 73, 68, 65, 84, 76,239,219, 76,122, 15, 31,131,174, +223, 42, 3, 95,100, 85, 32, 59,247,148, 10,226, 40, 44,137,238,165, 30, 54, 3,172,161, 93, 61, 26,224,188,213,179,141, 50,199, + 9,173,234, 71,183, 34,210, 89, 14,152,138,106,253, 75, 83,214,212, 51,129, 91,137,197,181, 73,236, 44,141, 37,116, 50,135,118, +152, 50,166,211, 44,158, 68,101, 38, 9,122,239,176,223,113, 3, 96,160,206,130,101, 89,212,141, 34,209,171, 49,138,207, 30,154, +154, 38,103,165,168,204,197,130,215, 42,120,194,210,243, 60,150, 37,163,228,138,253,126, 81,110, 70, 8,158, 19, 39, 61, 11, 88, + 19,246,251, 25, 57, 23, 76,211,172,133,189,236,216, 75,173,202,117, 87,203, 31,191, 63, 50, 89, 81,164,105, 21, 4,117, 95,187, +120, 7, 36, 86,249,207,243,158,197,193, 6,185, 85,125,182, 68, 4,166, 46,142, 86, 97,109, 64,179, 85, 47,121, 83, 43,165, 69, +114,195,164, 72,233, 53,101,141,119,223, 93, 11,213, 84,192,221,173, 35,125,207,222,148, 70, 99,180,219,110, 60,242,151,224,162, +158,113, 98, 14,210, 3,233, 46,229,117, 28, 41, 64, 58,197,145,129, 40, 7, 76,119,211,109,118, 77,146,229,196, 49, 98,176, 90, +207, 8, 60,202, 50, 59,192, 35,198, 17,206, 7,120, 31, 16,130,216, 16,121,252, 46,130,145,218,232,194, 33, 22,187, 81, 65,148, + 70, 9, 90, 7, 19,250, 30,200, 57,131,165,204,156, 81, 76, 35,130, 16, 2, 77, 75,208, 35, 57,105, 92,237, 52, 20,194, 8,254, +208, 24, 84, 70,182,134, 56, 80,167,236, 28,141,218,121, 60,187, 44,179,122, 48, 3, 35, 8, 29,219, 42, 42, 43, 57, 87,136, 1, +181, 92,248, 96,120,127,196, 74, 74, 67,156,103,231, 44,102, 86,115, 58,142,249, 28,199, 81, 65, 13,133,153,239,162, 16,149, 93, +161, 53,188,183, 19,109, 7,119,249,214, 90, 24, 14,120,209,145, 94,202, 60, 30, 35, 13, 66, 8, 52, 14,164,145,148,213, 75, 92, +248,202,181, 20, 52, 99,112,231,222,171,120,239,199, 63,199,215, 95,190,192,233,243, 75,236,247, 9,193, 37, 44, 23,191, 69, 73, +179, 94,222, 70,246,177,214,195,170, 87, 81,252,165,134, 85,167,236, 73, 45,132,182,172, 60, 85, 49,142, 2, 32,188,243,236,199, + 38, 95,105,202,148,109, 94,138, 81,255,115,206, 5, 75,162,159,253, 60, 47, 26,196, 51, 12, 17,243, 68,138,245,156,178,142,200, + 74,149, 92, 87,104, 48,142,128, 71,122, 44, 35,161, 61, 3,127,173,224,143, 41,130,193,212, 42, 41,150, 99,132,243, 13,251,139, +132,218, 12,174,175,175,224,156,197,253, 87, 79, 96, 99, 67, 28, 0, 83, 9,222, 33, 32,156,253,190, 33, 45, 25,211,110,198,167, +159,126,141,211,243,107, 60, 61,187, 90,185, 13,232, 99,207, 75, 70, 12, 22,119,110,157,224,103,127,248, 35,248, 24,201,202,103, + 9,207,235,172, 69, 93, 22,114,126,248, 0,239, 44, 98,240,184,188,184,198,233,249,181, 22,134,223,187,127, 7,145,129, 75,213, + 68,128, 59, 35,187, 61, 65, 59,190, 9, 87, 22,196,237,136,102, 3,255, 12, 9,107, 91,155,195, 92,169, 96,120,235,173,251,120, +239, 7,175,227,205, 55,239,224, 63,254,229, 47,240,253,247,223,192, 38,122,108,134,128,116,188,193,126,185, 66,216,239, 17,173, +193,220, 26,134,193, 0, 28,150,132,182, 18, 10,213,170,123, 57,210,136,148, 85,120, 18,217,244,106, 17, 76, 43, 57, 67,212,186, + 90, 42, 90, 38,215, 65,169, 69,133,167, 50,181,129,237, 23,185, 30,102,102,133,213,108, 21, 21, 6,104,137,153,235, 6,214,208, +115, 69,110,153,126,160, 67, 69,178, 12,187,226,253,127, 97, 11,165,227, 46, 57, 4, 46, 68,216,255, 46,220, 8,153,188,213, 10, +164,165, 96, 24,233, 57,150,139,172,148,170, 69,182,116,231,109,181,202,171,149,164, 10, 98,189, 13,209,234,174,190,177,110,198, + 25,135, 16, 57, 61,145, 57,237, 37, 23,120,103,176,148,238,101, 10,129,222,101, 25,185,246,124, 4, 18, 62, 46, 53,235, 52, 69, +138,252,162,171, 75,139,194, 56,107, 26,121,139,104, 22,156, 68, 71, 63,239,192,136,222, 56, 16, 50, 87, 98, 75,181,120, 83, 78, +134,209,241,119,226,241,185,100, 91,180, 66,223, 63,217,226,154,238,215, 55,155,129, 29, 29, 78, 25,239,251,105,194,180,159,121, + 21,192, 33, 82,173, 11,220,188,119, 7,206, 45,175,151,119, 15,126, 89, 75,211, 72,173,158,217,210, 75, 63, 35,209, 41,208,249, +212, 85,236,194,251, 79,203,220,137,137,192, 74, 3, 96, 87, 30,242, 85,250,153, 92,188, 44, 26,163, 34,171,112, 67, 70,226,101, +237,204, 1, 93,175,174, 19,236, 84, 95, 96, 44, 33,174, 57, 73, 79,180, 93,208, 9, 85,183,104,202,101,143, 70,235, 60,211,253, +111,170,189, 48, 2, 50, 91,189,139,198,172,195,101,192,123,118, 28,252,236, 36, 5, 81,157, 23,198,194, 26,139, 56,140,136,113, +128,115,129,186,244, 16,224, 44,199,216,130,166, 3,222, 58, 75,249,214,181,161,181,172,121,230, 18, 99,168,213, 48,167,152,213, + 74, 52,183,121, 94, 52,166,177,178, 90,188, 7,165,116,245, 36,154, 97,251, 90,235, 23, 41, 95, 74,214,209,131,109, 29,117,201, + 96, 6,176,247, 14, 19,143,173,209,170, 10, 54,188,183,136,209,235, 40, 52,165,110, 36,164, 88,208,218,105,109,221, 73, 64,233, + 67,131, 99,193, 15, 41, 76, 73,212, 36, 32,142,195,177,189, 40, 24, 11, 11,224, 90,173,176,129,168, 61,150,247,113, 84, 25,117, +251,136, 42, 42, 88,100, 68, 29,189,225,209, 9, 84, 73, 79,225, 47,153, 31,206,158,212,245,250, 59,239,226,205, 31,124,132, 47, + 63,123,138, 39,143,207,201,198,227, 38,164,171, 47, 81,203,194,194, 11,167,100, 33, 26, 48,175, 41,112,142, 15, 63, 30,231, 84, +131,153,247,190, 96, 21,102, 74, 5,109,166,120,219,181,178, 85,170,217, 82,233,176,174, 13, 60,178,236, 93,160,172, 29, 90, 35, +191,186, 11,180,199,172,124, 41, 11,217, 73, 68, 78,173, 85, 30, 75,211,158,207, 59,122, 14,132,145, 45,170,124,177, 84,145,198, +193,234, 97,212,106, 65,205, 51,114, 14,176, 28,170, 49,110, 34,174,246, 9, 46, 82,254, 54,150, 25, 25, 14, 67,164, 67,191,230, + 5, 79,158,158,227, 31,254,233, 51, 92, 79, 51,166, 41, 97,224,137,145,247,150,139, 79,250,122,239,222, 58,193,239,127,244, 3, + 12, 3, 21,138, 75,170,176,174, 17,241, 13, 36,184, 51,180, 72,132,177, 52,242,123,248,232,185, 86,217,181, 20,188,245,189, 87, +121,215, 90,117,215,153, 18, 16,188,129,241, 14,110, 60, 65, 54, 13,166, 2, 1,148, 63, 79, 56, 97,154,248,212, 82,176,219, 39, +196,232,240,195, 15,222,196,171,175,222, 66, 8, 30,167,207, 47, 16, 6,206,236,206, 25,129,211,199, 30, 93, 37,140,175, 17, 92, + 8, 76, 86, 19, 2,164,216,129,100,127,106, 12,131,144, 12,217, 43,133, 18, 38, 34, 36,152, 66,156,127, 5, 71,149,213,142,222, +173,114,190, 1,163, 23,187,129, 53,140,117,134,236,140,165,240,109, 29, 82,101, 44, 44,199,170, 58, 23,248, 29,160,201,135,248, +137, 73,216, 42, 62,110,192,201,193, 38,180, 60,230,124,203,182,180, 53, 82,108, 55, 62,232,156,119, 24,199, 65,249, 22,206, 83, + 78,119,101, 81, 42,133,186,208,154, 37,231,196,177,189, 22, 3, 79,176,104,175, 91, 72,151,210, 58,174, 57, 70,202, 1,240,190, +175,237, 12,179,212,211, 34,201,142,244, 94, 9,113, 80,127,246, 60, 78, 71, 51,152, 57,155,220,240,101, 40,221,186,186, 8,100, + 44, 15,225,201,211,133, 73,238, 21,154, 22, 24,214, 49,201,179, 21, 3,187, 6,120,212, 76, 54, 93,163,192,175, 90,123,104, 85, +201, 92, 92,167,172,116, 79, 31, 60,182, 71, 81, 11, 51,185,228, 82,206,104,149,112,181,251,253, 68,211, 27, 46, 12, 66, 8,138, + 38, 38,225,107, 85,225,154, 93,165,249,145, 20,203,194,122,187,178, 60, 26, 94,233,201, 36,145,248, 15, 98, 53,108, 10, 73,162, +208, 42,231, 44,230, 37,105, 7, 92,107,101,198,131,225, 40, 86,167,150, 75, 17, 23, 66,211,203,136,114,214, 51,200, 29, 92,147, + 12,117, 62,107, 44,116,116, 46,229,128,124,157, 13,253, 44,196, 10, 80,211,208,180, 40,173,171, 40,226, 53,150, 85, 56,234,109, +197,144, 23, 75,154, 85, 34,129,170,236, 86,169,149,185,211, 0, 69,240,103,176,226,204,247, 41,236, 48,110,169, 51,119,158, 39, +155,158,105,139,172,157,224, 9,150,181,150, 2, 93,136, 76,196, 22,179, 74,225, 30, 30,157,254, 35, 29,165, 40, 17, 43, 3,254, +115,206, 36,192,226,200, 68, 81, 99,247,168, 81,199,151,111, 81,219, 68,230,151, 64,208,133,196,162,166, 74,195, 59,122, 65,151, + 37,233, 65,179,223, 77, 60,178,117,170,246, 36, 90, 29, 16, 3, 69, 41,150, 90, 52,138, 85, 82,211,156,183,200,198, 48,228,197, +118, 86, 46,132, 64,199,217,202, 43,168,130,243,172,116, 87,190,240,106,223,209, 64,182,157, 74, 69,143,170, 26,249,101, 33,155, + 29, 65, 93,114, 41, 42,160,169,170, 87,232,213,112,109,146,252, 75,151,229,123, 31,253, 62,182, 55, 94,193,111, 63,121,132,179, +179,107,178,249,153, 11,212,253, 99,160, 21,120, 31,213, 17, 64, 2, 45,163, 62,124, 37, 79, 57,187, 82,180,178,183,184, 74, 74, + 84,165, 41, 71, 41,176,177,211,200, 28,195, 56, 4,132, 39, 47,248, 50, 83, 96, 78, 45, 21,227, 56,112, 26, 84, 83,209, 80,145, + 46, 60,103, 46, 22, 18,115,156, 11, 9,225,248, 82, 22, 1, 33,165,112, 69,130,246,136,213, 70, 67,132, 9, 11,219, 84, 84,213, +144, 89,244,211, 90,198, 56, 4,108,142, 6,148,218,144, 43,161, 20, 47, 46,246, 56,218, 4, 26,135,213,134,105,166, 61,230,215, + 95, 63,193, 63,255,234,115,204, 11,253,140,130, 39, 10, 92,169, 21, 45, 53,141,194,252,225, 59,175,226,207,254,155,159,192,123, +135,203,171, 5,215,187, 5, 46, 58,160, 20, 20, 88,100, 94, 61, 12,129,178, 2,140, 1,246,251, 5,159,125,241, 84, 41, 94, 55, +182, 35,222,184,127,139, 66,126,172, 37,219,166,115, 88, 82, 65, 42,228,142,168, 75,194, 38, 58,152, 70,194, 40,103, 45, 39,157, + 1,206,210,237,126,113,118,197,135,140,197, 38, 90,124,252,215,127,135, 99, 87,113,252,214,235,184,249,234, 93,184,203, 29,114, +105, 56,155, 50,158, 76, 51,222,181,125, 63, 88, 43,117, 62,181,244, 93,183,138, 68,209,159, 99,233,220,235,234, 82, 65,169, 4, + 37, 49,134, 67,131,172,174,136, 10, 67,147, 68, 76,215, 12,173, 68,172, 6, 14, 97, 21,145,107, 15,130,141, 36,156, 39, 37,214, +121,128, 68, 66, 33,132,149,158,134,247,132, 28, 75,186,206,154, 22, 68,168, 93, 5, 74, 25, 14,239,161, 38,195,179, 91,134,153, + 12, 32,251,163,115, 30,113,136,240,193,169,192, 77,118,250,148,171, 62,174,172, 72,189,179, 52,177, 39,204,165, 36,225, 37,166, + 63,239, 60, 46,157,167,164, 93,153, 56,103, 44,139,252, 90, 46, 44,216, 51,236,182, 41,250, 57, 10, 39, 87,138,186, 90, 0, 63, +148,149,158, 0,239, 52, 25, 78,199,242,181,175,177, 26, 79, 17,192,214, 95,195,182, 46, 65,227, 46,105,230,208,150,164,121, 9, +210, 48, 58,239,177,217,110,116,202, 33,133,133,136, 63, 97, 12,174,175,246, 52,157, 97,193,160,120,224,181, 43,230,139, 55,120, +182,165,114, 49, 78, 26, 8,167, 35,231, 82, 42,224,173, 98,156,151, 37, 49,159,160,112,195, 85, 86,138,124,126, 7,156, 67,229, +244, 76,154,208, 46, 52, 37,211, 73, 40, 7,242,212,166,150, 99,231, 2,188,231,179,134,237,124,204,239,212, 38,100, 77,123,171, +171,155,214,172, 56, 14, 52,190,127,169, 11,111,141, 32,106,194,101, 41,245, 64, 84, 39, 23, 58, 86,240, 25,105, 18, 14,214, 96, +171, 72,225, 90,215,239, 38,123,243,209, 39, 86,135,196,120, 14, 6, 99, 16, 24,233,180, 6, 12,227, 6, 33, 12, 44,130,244, 92, +204, 27,196, 16, 14, 82, 51, 45,120,181,172, 22, 47,126,226, 43,197,111,145, 21, 73,204,239, 6,176,193,116, 80, 64,105,106,133, +104,172,152,151,221,217,126, 55,117,201,191,165, 46,137,108,106,125,207, 76, 35, 14,171,223,200, 48,142, 42,214,178,204, 85,174, +173, 98,222,207,164,144,110, 34,162, 33,241, 30, 93, 26,156, 3,237, 45, 76, 37,212,170,147, 93,150,181,112, 43,220, 30, 49,156, + 89, 44, 18, 61,137,108, 66,224, 21, 0, 61, 92,106,109,121,137,126,149,115,134,231, 95, 84, 78, 5,155,237, 8,239,237, 1,118, + 81, 94,154, 90,233,229,215, 8, 76, 57,232, 26,186,178, 22,253,161,218, 30,111,241,225, 31,254, 12,251,201,224, 55,159,124,131, +171, 43,202, 13,246,245, 57,234, 66, 93,161,143,131,218,224,156, 51,240, 49,104,130, 17, 21, 14,150, 5, 64,208, 17,167,181,238, + 32, 64,194,112, 46,118,107,142,139,148,170,144, 6, 99,161,126,246,214,138,102,155, 75, 2,223, 60, 47, 12,219, 1,219,138, 72, +184, 51, 77,115,127, 28, 45,141,204,164,203,118,214,210,224,194,146, 56,199,123,175,121,236,237, 96, 60, 7, 61,164,188,167,130, +136, 14,170, 4, 3,131,113,140,104,150,214, 50,187, 61,185, 23, 74,109,152,115,198,178, 20, 68,111,224, 13,237, 91, 81, 42,230, + 57, 33,241,129,186, 44, 69,247,179, 98,171,114,214,225, 15,126,244, 54,254,224,247,222,134,115, 22, 67,244, 24,238, 4,220,184, + 49, 98,154, 18, 22, 94, 83, 80,144, 15, 65,143,198,145,168, 90,159,125,246, 8, 47,174,247,136,209,195, 89,139,119,190,119, 15, + 71,219, 1,198, 91, 68, 68,202, 29,135,193, 16, 88,131,194, 72,214, 92, 10, 70, 79,222, 96,103, 13, 12, 44,218,178, 32, 47, 9, +203,126,194, 38,122, 44, 25,200,243,140,203,175, 30,163,238,102, 92,123,139,103,167,159,227,248,238, 41, 94,189,127,130, 0,131, +127,122,112,137,241, 8, 8, 67,208,131,183, 11, 92,173,186, 61,196,210, 36,116,178,202,208,142, 34,227,245, 66,151,147, 31,142, + 56, 52,200, 29, 8, 92, 5,242, 1,201, 74, 55,178,138, 34,112, 15, 69, 35, 67, 99, 99,165, 99,171, 28, 44, 99,180,176, 44,122, + 96, 69,222,247, 54, 0,110, 5,212, 38, 2, 98, 81,154, 22,217, 75,171,198,151, 2, 21,214, 54, 94, 59, 12, 88,230,132, 56, 90, +118,188, 20,132,208,224, 24,223, 28,162, 95, 49,221,141,102, 42,148,131,139,168,123,133, 61, 59, 95,156, 51, 74,149,140,209, 43, + 14,213, 49, 16,136, 70,239, 25, 33, 88, 76,123, 81,181,247,192,151,202,214, 71,234,150,165, 97, 97,204, 50, 95,178,142,119,194, +180,102, 12, 12,199,114, 24, 54,163, 82,238,140, 53, 74,194, 52,166,168, 29, 45,142, 68,119,155,167,133,214,104,153,178,200,107, +201, 88,230,180,178,246, 90, 14, 20, 34,174, 70,136, 3, 77, 78,121, 10, 71, 33, 47, 84,224, 79, 19, 65,165, 72, 97,223,244, 89, +161,143, 19,176,164,140, 16, 60, 18, 23, 42,206,137,122,220, 43,233, 48, 70,163, 57, 25, 69,178,220,249,114, 35,224,213, 33, 77, +208,241,244,150, 46, 97,187,138,161,109, 10,255,146, 96, 26, 99, 56, 13,148,159,107,141,183, 46,101, 69, 26,101,205, 83, 43, 48, + 21,186, 42, 57, 96,191, 27, 3,167, 29,181,237,194, 81, 0,173, 57, 62, 7,125,183, 10,178, 80,216, 57,219,195,110, 90, 61,136, + 96,237,163,127,113,114,208,125, 99, 86,151,183,218, 30, 91, 15, 57,106,170,136, 95,121,230,185,200, 49,104, 26, 55, 13, 22,149, +142,227, 6,222, 15, 24,134, 1, 62, 68, 86,185,155,190, 83,231, 92, 21, 97,175,136, 13,181,214, 12,111,157,103, 17, 4, 39, 54, +101,242, 95, 59,231,184, 98, 47,138,128,244, 44,184,114,193, 33, 39,254, 34, 45, 86, 48,121,202,201, 45,133,136, 65,212,253,146, +141, 65, 70,239, 82,181, 18,167,217,193, 27,143,113, 35, 36, 57,207, 93,166,195,180,167,177,217,180,159,244,112, 50, 98,229,209, +212, 47,186,204,169,211, 22,159,119,133,231,253,152,179,182,143,140, 60,117, 3, 85,162, 85,105,104,174, 93,122,169, 21,145, 81, +183,166, 90,173, 74,187,170,150, 40,108,210,241, 59,111,216,242,103,148,136, 84, 50,123, 92,185, 80,144,248,196,182, 30, 1,241, + 3,242,202,253,251,248,224,199, 63,198, 55, 15, 46,240,232,225, 25, 95,212, 5, 54, 63, 69,201,215,196,220,175,108, 93, 17,149, +113,115,224, 33, 5,143,220,141,218,227,192, 99, 44, 70,166,243,154,193,178,143,191, 39, 21, 9, 43,160,214, 30, 67, 75, 93, 67, +230,203,157, 3,109, 26, 9,168,164,170,167,106,184,251, 49, 27,219,217,100, 45, 34,196, 65, 81, 56, 12,227,134, 63,191,215,160, + 23, 24,232, 88,148,112,171,204, 29,119, 52,202, 47, 37,163,149,140, 97, 24, 96,141,193,146, 44,246, 51,197,174, 6, 78,218,195, + 74,105,124,149, 42,198,104, 49, 14, 21,193, 91, 21,238, 8,209,204, 27, 96, 97,228,238, 56, 4,252,236,167,239,227,221,183,239, +163, 90,224,252, 98,194,149,157,176,221, 12, 24, 55, 1,199,219,128,156, 28,230, 76,163,116, 58,127, 88,141,189, 44,248,197,167, + 15,177,217, 12,188,151,183,120,235,173, 87,169,112,225,145, 45, 93,124,149, 89,224, 68,246, 41,203, 2,164, 5,109,160, 84,182, +105,183,135,171, 20,144,212,114,129, 31, 2,130,179, 8,206, 34,239,174, 81,230, 25,115,169,152,115, 67, 78,192, 89,187,198,105, + 5,218,229, 21,126,241,236, 26,183,239,121,141,230,236, 43,162,172,227, 87, 69, 19,151, 46,102, 92,150,153, 5,112,185,103,100, +163,193,175, 28, 24,114,152, 8,213,171,241,184,188, 19,234,232, 89, 19,120, 16,117,210,224,152,214,254,247,105,252,158,245,226, + 44, 44,220,211,247,223, 19,104, 70, 98,177,122, 78,116,247,169,175,243, 32,132,151, 96,154,197,126, 63, 97, 24, 6,164,133,196, + 64,162, 83, 9,222, 97, 24, 7,125,223, 8,160,226, 84, 72, 22, 98, 64,157, 22, 44,115, 70, 28,131,238,109,125,164, 6, 33, 39, +201, 33,160, 38,220,179,147,160,115,202, 91,119, 7,112, 4, 52,173, 12,120,111,234, 27,176,116,234,154,230, 70,240,152,188,175, + 45, 43,210, 82, 49,140, 1,227,134,247,227, 44,208, 51, 60, 65,162,206,159,246,194, 62, 24,245,169,239,174, 39, 24,211,176,223, + 77,180, 51, 79, 11, 26,107,117,198, 13,173, 32,136,184,103,123,214, 72,109,100,253,227,194, 66,172,106, 57,101,162,185,173,196, +174, 26,173, 45,232,217,149,131, 64, 46, 50,129,234, 84,222, 51,147, 45, 57,171, 30, 65, 71,241,102,165,167,226,241,189, 76,141, +132,199, 33,209,202,146, 16, 41,163,107,199,226,233, 16, 34,114, 78, 7,222,111, 25,243, 31, 98,135, 89,239,101, 61, 26, 42,156, + 13, 42, 14,149, 73, 79, 59,184,200, 1, 99, 59,100,200, 52,187,202,140,239, 84, 76, 29,171,211, 83, 77, 23,186, 61,204,131,177, +198,105, 66, 31,197,145, 59, 21,125, 98,117, 89,195, 64, 87,216, 26,242, 98, 59,163,194, 88,195, 43, 95, 10,151,114, 62, 96, 24, + 54,136,195, 8,239,131,174, 85, 67,136,135,153,110,214, 42,196, 77,222,125,177,115,122, 17, 32, 72, 53, 27,135,240, 18,120,159, +118,201, 26, 45,200, 59, 32,177,167, 73,183, 70, 9, 76,244, 0,133, 16,116,183, 64,135,185,213,228, 37,241,165,202, 40,125, 28, + 3, 54,155,145,136, 78,188, 47, 73,243,172,187,161,198, 81, 72,194,188, 37,239,183, 67,224, 84, 39,103,165,131, 23,200, 10,253, + 16,156,181,148,247,205, 80, 24,177,204, 20,206,248, 54, 26, 98, 67, 39,201,102, 51,232,215, 78, 26,129,176,170,182,170, 50,167, + 7, 62,160, 13,243,158, 19,227, 33, 75,238, 25,201,242,226, 59, 86,200,211,184,205,178,159,222,224,237,247,223,199,171,111,190, +139,207,127,243, 12,103,167, 87, 76,223, 90, 96,210, 35, 21, 5, 86,217,243, 8, 78, 87, 44,113,206,161, 84,135,146,232,224, 22, +219,139, 5,237,209,197, 38,100, 33,105,115,141, 61,241,134,169, 89,149, 43,253,194,122, 8,186,160,209,138, 10, 82,114, 46,152, +247,179,134,180, 24,219,208, 56,228,132,196, 51,137, 53, 3, 50, 5, 73,154,170, 39, 1, 16, 97,136, 93, 20, 98, 13,172,241,170, +150,182,214,194,242,248, 51,231,130, 92,168,115,117,206, 34,140, 35,134,113,164, 19,214, 2,184,172,136,129, 88, 7,214,208,168, + 61,115, 18,160, 5, 48,205, 52, 85,218,142, 30,251,253, 2,163,235,162,134, 31,190,113, 11,159, 61,190,196, 62,101,164, 84, 48, +207, 25,187, 41,209,250,164, 17,138,183,154,140,210, 12, 66, 48, 8, 14, 24, 96,208, 66, 84, 1, 90, 45, 21, 15,158, 93, 81,152, +203, 74,135,112,251,246, 13,174,150,169,140,137, 30,100,173, 27,131, 70,143,238, 77,192,139,165,226,250,244, 18,131, 7,124, 43, +216, 68,131, 60, 47,204, 91, 15, 40, 67, 64, 43, 25,121,218,227, 60, 37, 60,153, 19,246, 12,131, 50,245, 28,126, 54, 48,166,226, +214, 27,130, 46,229,136, 90, 25,215, 53, 40,195, 97, 89, 22,221,141,231, 76,221, 28,233, 55,186,232,168,234, 36,167,194,219,174, + 2,151,247,145,222, 85,186,144,170,116, 23,132, 58, 99,184, 75, 99, 29,133,213,189, 61,157,127, 2,167,177,108,139,229,140,238, +146, 81, 91,195,104, 54, 12, 49,137, 10,140,178, 28,242, 35, 98,209,181, 71,183,105,184, 80,161, 76,117, 31, 48, 47, 11, 9,120, +115,233, 7,190,233, 29,112, 28, 60,246,187, 25,219,163, 13,156,167, 34, 37,250, 64, 54, 59,211, 20, 11,173, 35,108,153, 30, 24, +254, 94, 45,212,237, 82,185, 75, 23, 16,148, 0,109,140,137,122,232,147,184, 13,188,162, 97,122, 93,140, 36, 46,171, 89,207, 75, +225,219,135,104, 87,211, 52, 90, 13,202,153, 81, 43, 49,190, 75,174, 61,189,144,179, 16,168,216, 42,204, 88,247,136,131, 87, 61, +147, 40,252,231, 57,241, 68, 17,168, 57,179,123,160,169,138, 93,113,175,173,155,189,100,125, 67, 17,205, 21, 41,167,213,184,124, +109, 33,230, 85,112,163,189,122,230, 41,132, 83, 53,183, 56,144, 58, 97, 83, 5,117,132,160, 96,180, 43, 84,233, 47, 93,181,129, + 69,169,153, 69,115, 77, 83,249, 76,173, 36, 66,229, 80,152, 46, 24, 51, 42, 44, 3, 23,222,224, 40,110, 81,178,215,182, 22,196, + 85, 56,190,200, 69,216, 70,120,228,118, 96,211,182, 43,160,140,136, 80, 41,195,224,165,117,184,138,221, 44,154, 41,234, 68,146, +181, 34,212,214, 86,149,150,167,155,198,202,145,229,104,108, 65,102,177, 97, 12,112,142, 20,236,162,102,143,195,160,238, 42,209, +148, 88,199,192, 34,209,123, 25,179,154, 8,203,115,221,224, 83, 42, 26,144, 66, 22,151, 76, 35,162,148, 21,148, 34,204, 99, 33, +184, 25,205, 26,150,192,136,130,138, 76, 89,232,141,195, 58, 86,251, 5,121, 1,214,213,133,176,214,157,247,154,128, 38,246,139, +204, 22,145,101, 94,116,188,219,152, 70,229,130, 99,120, 66, 83, 1,130, 96, 25,101, 23, 86, 75, 69, 81, 64,144, 81,229, 99, 63, +192, 86, 9, 78, 13,240,220, 45, 82,231, 75,163, 96,242,193, 58,180, 82,145,115,197, 48,112, 96,138,190,224,230,160, 58,135, 1, +230,169,135, 23,144, 34,215, 40,137, 45,231,130,163,227, 35,252,232,167, 63,129, 15,199,248,237,175, 31,225,226,197,142,159,162, + 75,164,233, 25,156, 39,175, 60,237,170,105,172,226, 56, 56, 66, 42,210,204,163,242,106,233, 48,169, 92,136,228,210, 52,203, 93, +156, 5, 50,242,183,134, 38, 38,114,136, 24,211,187,117, 72,160,135, 53,172, 40, 78,164,232,229, 41,131, 88, 99,140, 53,220,205, +147, 35,193,240,184, 75,248,208,173, 53,238, 26, 60,103, 95,211,222,207, 75,250,148,120,152,141,209,131,107,158, 39,228,133,138, + 24,218,135, 18, 39, 64,212,170, 37, 87,212,156,145,167, 25,182, 21,148, 37,163, 36,177, 21,145,178, 84,178,140,200, 30, 73,187, + 59, 81, 18,159,220,185,133,159,191,249, 6,254,250, 63,253, 2,198, 0, 95,124,249, 8,183,238,220,196,201,201,182,231,203, 87, + 0,169, 32,229,134,113, 28,200, 90, 85, 41,137,205, 25,131,139,139,107,252,237,223,253, 90,127, 30,181, 52,220, 56, 30,177,221, + 6,204, 11,193, 60,130,179,128, 51,112,141, 99, 39,157,131, 65,197, 29,151,112, 35,238,241,252,234, 18,159, 63,206,152,138,193, +141,173, 71,222, 95,225,249,229, 41, 54, 27,135,134, 2, 88, 22, 31,109, 26,236,145,197, 70,154,217,149,224, 38,243, 26, 74,220, + 29,133,217,217,100, 61,203,122,248,211,120,157,131, 95,248, 2, 17, 63,186, 20, 59, 48,158, 58, 22, 30,109,202,127,183, 12,131, + 66,181, 40,173, 80, 14, 4,167, 32, 30,216, 71, 69, 85,189,202,134, 22, 73,144, 6,241, 88,138, 5,149,113,253,178, 76,172,219, +233, 30, 95,222,209,241,101,235, 85,191,178, 70,109, 75,174,123,206, 9,131, 27,176, 44, 51,150, 52, 32,164,140, 56, 52,221,219, +138,119,204, 57, 96,153,103,253, 56,214, 38,254,122, 43,124,112, 10,225,107,181, 11,197,106,147,188,118,168,136,109,173, 79,209, +213, 97, 19, 75, 88,209, 81,115, 41, 4,191, 74, 75,226,194,179,147, 54,107,101,107, 87, 21,110, 57, 77, 58,197,187,109, 12, 56, + 34,213,106, 88,203, 52,205, 58, 78,151, 17,181,229,196,180, 24, 7,214, 21,208, 33,158, 19, 93,244,162, 71, 89,230,132, 6,234, +232,115,202,140,135,245, 36, 20, 13, 1,227,224,137,118,183, 20, 38, 1,250,222,105,243,101,105,184, 89,178, 44, 20,244,222,253, +255,100,189, 73,147, 36,215,189,221,121,238,232, 30,145,145,153,149, 89, 3,166, 7, 2,143, 32, 65, 82,124, 67, 83,175,219,100, +109,210,166,205,122, 39,211,162, 23,250, 52,189,225,119,235,109, 47,212,207, 36, 25, 9,129, 32, 64,176, 48, 87,229, 24,225,195, +157,122,241, 31,174, 39, 69, 51, 26, 73,176,134,204, 72,247,123,255,195, 57,191,195,157, 61,148, 56, 41,204, 11,131, 70,235, 80, + 17, 62,243,253, 32,176, 25,185, 51,160,233,127, 77,133,216, 70,233,119,124,207, 48,218, 88,138, 69,103, 27,130,247,244,207,107, +209,103, 42,165,188, 17, 98,115, 50,167,228, 76, 24,192, 62, 97,186,119, 59,152,243, 34, 6, 47, 58,142,119,182,135,181,202, 51, +169, 59,112,165,203,113, 17, 43, 26, 42,131, 13, 88,198,232,136,221,232,120,157,245, 11, 72, 44,108,110, 42, 40, 53,222,108, 50, +220, 89,212,230, 3, 11,223,232, 34, 31,134, 65,133,168,222,210, 59, 41,196, 61, 33, 65,202,136,159, 62,111,175, 77,181, 68,133, +123,202, 24,230,136, 69, 38,215,104,236, 40, 87, 95,148, 30, 22, 72,101,171,105, 95, 86,237, 35,222, 59,164,106, 55,234, 75,211, + 95, 82, 39,201,103,221, 30, 7, 85,176,146, 98, 53,142, 81,161, 35,242, 97, 81,156, 32,141,132, 67,244, 26, 39,104,216,163, 75, +255,156,241,181, 85,130, 79,248,242,227,174, 49,167,196, 15, 23, 89,220,228, 32, 18,207, 36,125,239,130,144,164, 29,205,186,214, + 39,161, 2,173, 53,134,219,208,139,228, 88,192, 32,212, 36,108, 81,127, 32,127,109,140,129,158, 46, 6,175,132,224,240,252,213, + 43,252,250,159,255, 9, 63,253,240,136,215,159,125,141,121, 78,128, 5, 76,121, 11, 91, 31, 97,130, 87, 54, 60,140,219, 64, 29, + 28,156,231, 49, 56,175, 57,200,167, 44,214, 31,143, 6,203,121,212,134, 3,104,108,167,241,241, 65,180,204,180,151, 79, 43,193, +126, 40,245,138,148,209,165, 84,172, 75,214,207,176,113,184,207,186, 36, 86,235, 23,212, 84,153,163,159, 53,222, 82,188,235,227, + 24,181,114, 23,214,187, 15, 65,167, 44, 0, 16,134,129,119,220,108,151, 91,137,235, 76, 7,150,103, 75, 97, 6,248,249,171,156, +103,110,177, 71, 91, 39,148,165,194, 25, 15,111, 65, 89, 4,173,251,113, 67,244,202, 75, 88, 20, 22,100,225,199, 61, 46,159,157, +227, 23, 63,127, 31, 95,126,245, 61,230,148,240, 95,254,191, 63,226, 31,255,225, 19, 92, 95, 93,170,168, 51, 87,131,181, 84,148, + 70,187,211,232, 45, 28,143,228,254,244,213,143,152,215,172,235, 2, 99, 12,254,254,195, 23, 24, 57, 10, 52,167,194,159, 19,173, + 63, 44, 26,144, 19,214,159,190, 87, 7,201,176,206,248,232,114,135,219,226,240,175,159,125,139,215, 63,222,225,197,115,131,119, + 71,131, 24, 58, 1,177, 85, 40, 39,162, 50, 24, 67, 1,152,146, 25,224, 26,219,140, 88,181, 94, 10,106, 43,252,110, 86, 29,107, +107,225,187, 17,205, 9,104,198,250, 17, 4, 4,176, 20,176,100, 29, 39, 48,242,255, 54, 6,182,113, 7,165, 73,101, 18, 94, 4, + 5,199,136,178, 89,172,130,116, 54, 20, 78,214,235,168,203,170,240, 14, 67, 98, 40,231,184, 75,183,128,161,137,209,202,159,149, +115, 94, 15,104, 85, 5,243,216, 59,231,130, 97, 24,122,113,185,172, 56, 89, 26,191,123,239,177, 46, 25,227,126,228, 48, 41, 67, +207,121,202,112,205, 97,220,121, 44, 75,214,176, 24,177,188, 73,132,243, 54,211, 92, 50, 25,104,245,213, 84, 51, 4, 52, 22,150, +210, 30,157, 10,220,140,172, 66, 96,171, 77, 6, 0,141, 27, 21,117,124, 90,147,186,105,248,199, 11, 99,154,250,231,173, 51,252, + 46, 53, 68,230, 77,108, 17,165, 66,128, 92,151, 68, 40, 94,142,135, 21,186,220,214,134,102,140,193, 48, 68,130,232,176,215, 94, + 2, 63,232,235, 43,155, 0, 18,202,188, 23, 93,212, 22,226, 66,170,247, 64, 26,150,232, 57, 32,203, 50,252,168, 50, 0,172,105, + 14,130,224,193,183, 19, 15,225, 16,212, 82, 0, 30, 23,115,120,184,166,107,182, 90,225, 5,158, 35, 77,135,116,230,206,111, 2, + 93, 54,197, 1,119,220,202, 9,128, 48, 73, 12,219,139,155,250,219,157,181, 40,141, 19,225, 84,131,210,243, 67,172,161,233,129, + 85,119, 17, 39,119,130,132,188,116,150, 75, 19,200, 77,155, 20,163,216, 40,227,249,239,118, 46,118, 94, 59,127,125,180,154,101, +253,136, 33, 55,135, 15,145, 73,112,129,197,227,145,147, 34,155,230, 56,200,100, 75, 10, 31, 73, 12, 5, 23,157,116, 23, 23,110, +136, 26, 5,186,148,146, 85,109, 72,213, 63,143,165, 88,165,220, 28,239,134, 69, 33, 56,120, 14, 53, 48, 88,151,202,246, 39,203, + 42,103,163, 21,154, 84,183,165, 84,142, 25,109, 79, 96,247, 80,209,138,127,114,128,213, 82,176,242, 8, 94, 18,194, 42, 67, 43, + 12,149,199,154,128,102,248, 50, 54,214,233, 15,193, 40,102,207,194, 7,171,202,206,156, 51,206, 14,123, 21, 59,136, 72,199,114, + 2, 27,189,176, 84, 1,199,129,166, 21,226,169, 20,241, 67,169, 13,196, 25,177, 24, 68, 25,206,187,105, 2,166, 4,254,126,189, +190, 64,191,254,199,127,131,139,231,175,240,197,231, 63,224,225,110, 34,111,168,171,104,137,130, 58, 68,100,147,249,176,241, 33, +240,222, 5, 10,234,111,205,110,236, 23,116,193,109,163, 93,121, 58, 10, 99,105, 28,107, 25,224, 33, 65, 19,134,149,183,214, 26, +204,211, 2,103, 41,117,204,123, 11,148,198,148,181,220, 21,210, 34,244, 97, 53,191,208,240,198, 93, 84,150,184, 80,246,172,149, +252, 95,163, 62,205,117, 93, 17, 7,254,181,214, 18,188,165,100, 44, 51,141,133,157, 53, 24,134, 1,113,136,228,113,103,168,209, +186,172,212, 53,149,140, 86, 10,230,135, 35,194,224, 96,141, 71, 13, 30, 67,244,136,193, 33, 39, 98,166,193, 91,245, 95,239, 15, +123, 92, 95,157,147,123,194, 24,148, 74,234,215, 15,222,127,133, 31,126,188, 5, 12, 9,134,190,248,226, 53,206,255,151, 3, 28, + 19,198,168, 35, 50,180,203, 46, 9, 37,122, 4, 83,241,248, 56,227,139,175,190,131, 76,179,168,107, 53,120,249,226, 74,109, 52, + 22, 84, 72, 24, 23,144,151, 5,246,238, 13, 60, 10,234, 90,200,174, 25, 60, 30,239, 19,154,205,136, 47,158,227, 87, 31,191,194, + 97,140,120,253,211, 3, 62,255,114,193, 7,239, 26,156,237, 91,135,100,176,231,220,112,208, 14, 52,250,147,220, 32,180,103, 93, +181,216,234,108,235,246, 36,190,147,198,131, 80,141, 3,159,148, 68,118,243, 3,156, 15, 12,128,225,170,223, 57,148,210, 51,155, + 75,133,146,235,176,205,119,222, 8,134,250, 69,214,189,215, 77, 25,238, 61,213, 77, 61,187,198,116, 42, 90,219,170,187,141,134, + 95,200, 89, 68, 34, 52,246, 72,171,194, 25,228, 90, 97,246,185, 15,145,167, 19, 5,243, 52, 35,196, 1,235,178,194, 24, 75,228, + 54, 99, 49,238,162,198,164, 26, 78, 25, 20,187,152,105,125,154, 40, 83,183,156, 10,133,149,160,171,155,173,170,214,161,147,192, +180, 22,181,142,201, 10, 65, 38,134,141,241,167, 33, 58,141,140, 53, 6, 88, 83,129,133,229,139,189,232, 57,228,189, 35, 26,156, + 53,132,186,229, 75,195,139,109,180, 54,181,220, 53,246,177,147,157,142,198,236,105,205, 42,220,243,236,204,145, 21, 67,136, 81, +191,102, 90,203, 84, 56, 71,147, 9,154, 40,244, 4, 54,243, 55, 17,164,149,133,112,181, 80, 46, 66,101,224, 12, 37,176,121,216, +218,161, 45,181, 62, 37,142,246,130,194,179, 32,143,158, 39,105,218, 40,161, 82, 66,160, 42, 50,175, 67, 28, 11,139, 41, 16,134, + 66,160,132,234,153,153,252, 73, 24, 98, 38,184,137, 86,137, 59,105,197,187, 90, 79, 19, 72,198,124,183,214,224, 77,251,159,162, +116,133,124,104,173, 3,228, 89,213,189,127,208,123, 76, 32, 56,134,173,139,242, 62,200, 59,106,173, 87,109,139, 15,129, 21,244, + 27, 40,145,177, 27,219,228, 8,235, 28,134,161, 91,212,188, 15,125,170,198,212,207, 24,153,131, 32,232, 39, 71, 56, 90, 69,161, +139,200,145, 87, 38, 50,138,247,243,188, 62, 21, 92,113, 85, 31, 66,208,223,108, 29,117,189,222,123,234,236,114,229,177,114, 67, +136, 30,235,146,180, 82,144, 31,170,116,214,104,128, 9,134, 3, 70,250, 56,183, 54,131,253, 46,176,186,207,243,104,138, 46, 3, +241, 92, 22, 30, 99, 89,103, 17,140,213, 8,121,194, 67, 22, 61,100, 41,238,177, 41,209,136,194, 68,162, 10,196, 68,248, 51,178, +160, 70,192, 14, 21, 44,174,226,234,186, 85, 22,138,240,131, 35, 2,158,224,141, 42, 48,189,167, 17,150,149, 8,213, 6,206, 64, +175, 26, 2,129, 70, 2,187,195,249, 1,191,249,221, 63, 97,158,129, 63,255,143,239,112, 58, 46,244,162, 96, 66, 41,119, 88,215, + 69,137,125,118,227, 6,144, 56, 90,218, 35, 49,117,139,163, 32,101,185, 35, 47,182, 32,114,101, 12, 90, 57, 2,113,149,200,199, +141, 37,145, 70,168,178,135,205, 42,134,179,155,206,144,246,136,149,139,140,204, 65, 21,108, 71,100,170,148,139, 65,173,106, 96, +136, 71,227,226,131,132,135,212, 9, 56,231,144,121,135,159, 88,141, 94, 75,198, 48,208, 65, 43, 54, 56, 57,144, 72, 79,208,176, + 46, 11, 12, 40,169,106, 58, 2, 67,141, 48, 94,248,217,145,166, 31,251,161, 83,189,156, 1,140,195, 60, 77, 28, 8, 67, 66,169, +196, 84,180, 97, 28,240,226,249, 37,126,248,241, 6,198, 90,220, 61, 28,241,167,207,191,198,167,159,126,196, 17,147, 52, 46,207, +137, 70,231,203, 90,176,162,225, 15,159,191,198,196,227, 81,207,157,195,232, 12,230,251,123,188,110,100,211, 26, 7, 15,148,134, +211,241,132,188, 44, 40, 55,143,112,140,197,141,214, 34,160, 98, 56,219,195, 94, 95, 97, 89, 19,206,246, 3, 62,254,240, 5,158, + 95,159,227,203,111,239,240,249,151,111,113,182,207,120,255, 29,139, 33, 54,205,147, 22,140,177,240,208,181,235,110, 77, 57, 7, +242, 51,104,173,118,235, 14,156,238, 21,141,221,112,177,121,223,106, 93,132,143, 35,125,150, 78,222,111,143,194,120, 78,195, 0, +158, 46,122,100, 78,127,109, 27, 65,155,172,120,122,241,188,245,185,131,119,234,194,164,246, 62, 48,126, 19, 61,225,175, 85,180, +156, 88,174, 74, 19,175,234,158,194, 70, 36, 92, 73,138, 93,114, 71,208,138,136,162,159,169, 91,111,205, 32,156, 7, 22, 4,210, +249,224, 60,137,235,140, 21,228,107, 96, 12,110,198,110, 79, 10,244, 16,157,194, 21, 8,114,227,245, 98,183,220,200,164,181,162, +114,190, 4, 26,241, 5,104,167, 95, 24, 34,197, 90,149,210, 54,201, 92, 22,205,242, 4,135,241,161, 50,221, 40, 28, 11, 13,181, +223, 66, 25,237,130,118, 37,173, 78,209, 46, 87, 58,230,146,139, 78, 48,107,173, 12,128,178,204,197,183, 8,134,154, 35, 87,248, +121,112,178, 91,166,213, 37,117,127,235,230,179,165,159, 79, 74,153, 18, 38, 53, 74,153,190,214,186,172,106,149, 34,220, 52, 20, + 6,180,166,194,147,197,170,197,142,184,102,172, 19, 62, 63,180,187,150,194,175,150,170,201,126, 49, 4, 22,151,102, 56, 7,213, + 50, 37,190, 43, 44,231, 87,196, 24,121,239,238,121,197,211, 21,234, 34,154,147, 92,121, 3, 11, 23,232,130,115, 62,114,230, 64, +161,213, 46,107,160,208,168,201,144, 28, 12,217,255,211, 25,151, 24,172, 22, 58, 45, 81,154, 62,190,168,173,115, 26,169, 43, 5, +148, 56, 11,196, 21, 37, 8, 89, 18, 24, 6,206, 66,176,164,247,112, 30,113,160,119,208,135,216,193, 76, 34,176,227,191,175, 54, +240,148, 69, 80,185,134,181, 17,153,255, 94,108,144,184, 77, 11, 51, 47,213,125,143,202, 4, 89, 54, 74,209,212, 49, 82,170,179, +138,177,213, 13, 70, 15, 79,136,115,138, 41,172, 93,214, 47, 47,127,223,173,178, 77,134, 63, 8,231,221,147,164, 27,231,136,115, +188,240, 40,201,109, 70, 66, 82, 41,202, 15,191, 53,249, 6,125,183,206,242,191,107,227,151, 7,134,241,175, 77, 3, 39, 28,239, +182,188, 35, 76,105,140,129,187,186,214,133, 33,172,252,165, 81,110,120, 98,107,144,245,132, 19,171,128,207, 0, 0, 32, 0, 73, + 68, 65, 84,140,172, 83,202, 12,218,112,140,234,115,248,229,111, 63,197,187,127,247, 51,188,254,203, 27,220,221, 30, 49, 77,116, + 97,181,245, 6, 41, 79,155,168, 82,170,196, 36, 84, 71,126, 68,194,109, 54,155, 84, 33, 23, 44, 11,217,232, 97,166,106,155, 48, +145,109, 3,233,177,198, 32,215,138,102, 28,251,234, 45, 31, 72,153, 39, 28,165,239,126,152,152, 37,196, 49, 81,180,147,150,194, + 41,111, 64,178,228,173,226, 60,153,190,197,149,172,136,102,228,231,106,157,195, 50, 51,109,176, 36,180, 86, 48, 12, 17,118, 8, +253, 66, 41,148, 49, 13, 80,188,169, 32, 37, 5, 56,100, 93,195,227,154, 17,134,136,161, 26, 28,108, 69, 43, 11,108, 24, 81, 29, +217,217,106, 93,145,171,135, 9,236, 93,118, 22,185,208, 88,106, 89, 18, 33, 94, 1,188,247,222, 11,188,189,121,160, 3, 3, 6, +175,191,249, 17, 47,174, 47,240,236,250, 18,165, 53,162, 72, 49,121,173,149,134,239,190,125,131,175, 95,255,168, 57, 8, 11, 43, +185,127,243,238, 51, 92,180, 5,109,126,192,177,156,227,254, 56,195,151,132, 56,142,132, 50,117, 30,199, 57, 99,201, 25,103,227, +128,203,203, 11,156, 95,157, 83,238,244, 58,227,244, 56, 51,224, 39,226,147,143, 94,225,213,203,103,248,235,235, 31,240, 95,255, +240, 19,222,121, 1,188,122, 81,213, 18, 73,133,178,221,140,208,229,249,112,202,161,110, 48,104,178,187,227,119, 82, 83,209,120, + 87,218, 4, 81,105, 28, 92, 28, 20,127, 76,187,245, 30,135,209, 32, 52,186, 46,114,149,113,167,236, 49, 53,195,186, 1,153,187, +113, 73,137,170,173,231, 99,135, 32,211,128,190,103,109,220,165, 89, 67,201,133, 82,252, 9,131,161,182,250,132, 10, 73,251,235, +117,163, 20,230, 24,225,156,116, 4, 95, 61,209,250,214, 53,209,222, 84,227,100, 9, 68, 51,157, 22,154, 46,193, 32,240,251,179, + 44, 89, 41,147,146, 76,233,125, 96,158, 61,233,106,150,185, 42,186, 86,186,195, 92,196,199, 79,207, 68, 8, 94, 67,174, 74,102, + 39,136, 88,175, 76, 67, 12, 35,101, 0,112,183, 22,130, 71,243,224, 9, 66,208,238,222,123,139,148,171,254,156, 41, 5,109,225, +213, 71,227,110, 60,169,246, 73,136,148,158,191,119,250,249, 64,155, 32,137,179,174, 27,228,174, 76, 53, 37,181, 78, 10, 18,199, +221,253, 60,175,220, 45,246,159, 47,237,119, 59,195, 63, 21,130,120,209,121,156,148,208,231,131,131, 85,189, 18, 52, 58,148,109, +216, 26,252, 67,187,109,249,253, 85, 21,247,158,115, 15,228,126,160,243,150,159, 41,113, 71,100,131,230,106,215,219,148,218,131, + 83,140,164, 20,118,107,181, 20,172,205, 84, 5,213,100, 46, 40,132, 94, 23,188, 85, 48,144,124,207, 62, 16, 68,205,122,211,105, +139, 16, 62, 73,212,149, 19, 77,137,200,169, 32, 58, 17,249,121,161, 85,130, 41,161, 11,247, 66,136,136, 60,102, 15,113, 96,253, + 26,219,247, 42, 97,202, 5, 1, 78,217, 11,133,158,103,141,219,237,182,115,157,120, 85,104, 17,190,181, 17,122,241, 47, 75, 55, +103,116, 71, 98, 17,120, 28, 42, 88, 84, 9, 61, 41,185,104, 62,120,101,143,113, 31,141,144, 20, 93,133, 12,214,168,224, 3,155, + 88, 68, 1,222,232, 62,149, 97, 15,101, 45,188,131, 19,186, 89,207, 25,119,156,182, 36, 24, 82, 31,130, 50,206,197,122, 34, 35, +114,201, 4,150,157, 28, 85,246,196, 70,151, 23,149, 66, 79, 24, 7,201,226, 48, 99,193,126,217,140,113, 63,108,148,231, 84, 20, +120, 79, 96, 5, 17,254,229,210,233, 73, 21, 13,207, 46, 47,240,143,255,235, 63, 35,103,143,207,255,248, 13,142, 15, 51,201,135, +234,130,117,122,131,156, 87,245, 24, 38,169,118,165,160,241, 14,105,233,190,211, 45, 30,209, 5,203,150, 19, 2,203,108, 69,108, + 66,175, 43,153,170,222, 34,185,109, 27, 59,139, 40, 82,201,158,102,224,157,168,119, 51,123,206, 13,182, 89,132,214, 89, 26, 79, + 6, 71, 99,192, 84,186,192,168,201,225,236,121,228, 5,190,132,157,166, 28,229,180, 18, 92,131,149,255,227,110,212,244, 54,131, +198,123, 63, 48, 27,158, 10,132,202,191,222, 90,131,102, 44,134,193, 2,222, 96,134,131, 3, 5,100,216, 24, 81, 42,129, 97,156, +247,104, 41,193,249,136, 52, 79,200,137,201,115, 67,196,154, 50, 30, 30, 79,184, 78,207,200, 18,231, 3, 66,160,221,109,229,206, +231,171,175,191,199,249,229, 57,127, 93, 70, 47,206,148, 18,254,244,197,107,204, 75,210,159, 77,173, 13, 67,244,184, 62,219,195, +186,128,118,241, 12, 23,129,132,138,211,100,241,230, 97,161, 3,106,124,134, 22, 43, 60, 26,166,218, 80,178,195,114,115,196,203, + 23,231, 24,118, 59,236,198, 1,203, 60,225, 44, 85,204, 75,193,213, 33,224,157,203, 15, 17,208,240,245,247, 95,226,234,210,115, + 71,203,187,100,238,152,173, 13,155, 3,138, 14,110,122,254, 10,123,138, 83,199, 86,162,241,126,144,195,116,156,131,113,145, 14, +207, 40,163, 62,166,204, 89,162, 68, 54, 88, 29, 51, 82,195,198, 42,222,214,199,250, 52,202,124,138,100,174,133,199,213,220,137, +196, 24, 81,107,210, 51,196,216, 30, 8, 83,121,180, 46,194,174,190, 95,183, 40,101, 85,210,100,183,167,241, 37,205, 28, 13, 89, + 37,209,197,150,250,122, 47, 23, 46, 14,192,233,130,188,119,102,231, 74, 98, 90, 96, 90, 57, 2,185, 26, 45,136,233, 32,183,172, + 20,175,154, 13, 64, 63,119, 78,105, 51,134,201,115, 12,249, 48, 36,140,148,115,108,183, 11, 0, 67,158, 4,141, 45,123, 49, 73, + 76, 35, 95,124,213,117,158,132,117,212, 90, 49,207, 25, 0, 21, 5, 6,204,168,135,193,124, 90,158, 40,252,201,206,216,244, 89, + 21, 8,215,186,100,205,210, 46, 60, 61, 20,189,143, 54, 40,156, 60, 86,152,113, 17,249, 28, 55,214,160, 26,138,168, 93,150,132, + 33,146, 63,157,114, 59,130, 66,181,106, 45,136,135,208,213,252,134, 47, 53, 67,207,153, 9, 78, 47, 98,209, 3, 73,156,173, 76, + 9, 37, 68, 73,248,248,222, 56,178,238, 90, 42, 60, 56,249, 9,168,194, 86, 55,122, 7,208,228,222,193,243,126,221,218,214,215, + 63,146, 96, 87, 55,204, 6, 88, 21, 99,155,237,196, 73, 86,195, 18,236,130,190, 27,239,112,157,210,249,249, 60, 45, 34,140,180, +121,178,138,245,124, 31,136, 75, 44,231,196, 5,179,164,178,113,250,164,115, 24,199,145,173,138, 94,223,225,221, 46,240,221,100, +212, 89, 35, 19,178, 32, 29,122, 41,186,166,174,149,252,202, 91,237,147, 52,218, 50,126,207, 57,195,253, 95,255,199,191,251,189, + 30,210, 60, 78, 13,161,219,218,196,107, 44, 22, 18,211,249,247,170,156,236,142,250,166,136, 60,233, 2, 5, 92, 34, 41, 55,149, +149,148,206,147, 63,253,236,252,128,221,217,158, 96, 29,173,162,150,132,227,195, 35, 78,199,147,118,137,173,161, 11, 85,244,165, +103, 47,168,181, 93,120,231,136,163, 44, 48, 11, 65,231,201,142, 78, 67, 35, 90,231, 42,123,183, 77,113,163,203, 93, 86,195,154, + 19,189, 17,104,144,104,167,104,104, 6,105, 13,200,195,249,233, 63,252, 10,191,252,237,111,241,230,199, 19,190,251,230, 45,166, +211,138,101, 73, 48,237, 17,121,190, 81, 18,147,248,218, 37,130, 84,160, 19, 0, 16,163,231,142,166,231, 70,147, 5, 4, 26,115, +168,180,170,156,137, 9, 93, 50,171,214, 51,167, 20, 22,245,144,182,218,119, 50,107, 42, 79,246,174,206, 25, 44, 75,162,145, 88, + 12,172,164,119, 90, 81,123,206,186, 87, 6,113,173, 28,144,195, 98, 68, 17,166,152,174, 81, 88,151, 5,133,237, 84,180, 91, 11, +136, 49,106, 58,147,112,229,193,130,185,198,158,209,154,187,112,199,216,158,204,117,115,211,168, 19,151, 10, 53, 14,176, 62,114, + 42, 88, 3,156,167, 32,147,105, 66, 78, 43,126,188, 57,234,133, 40,154, 2, 41,124, 74, 41,120,120,156, 52,192, 40,165,140,146, + 10,174,159, 95, 18, 1,174, 82,177,241,199,207,190,194, 15, 63,221,232,179,180,205,103,246,214,224,253, 95,126,132,243,235,103, + 36,172, 76,212,105,158,159, 69, 56,239,112, 60,173, 56, 46, 5,143,115,193,244,120,194,242,112,143, 99,106, 88, 50,253, 20,188, + 51,136, 40,216, 69,139,193,145,205,237,176,115,120,253,205, 13,236,112,143,221,222,179,173,203,195,249, 64,187, 65, 22,239,200, +136,174, 25,153,162,128, 51, 5, 68,177, 43, 29, 57, 77,126, 72, 80, 73,145,140,148,230,228,213,191,171,105,120, 13,156,249, 96, + 53, 58, 56, 51,171, 91, 67, 73,180,232,169, 10, 84,146,231,214, 7,175,144,170,200,161, 43,242,247,234, 59,226,236,147, 61,188, + 60, 43, 91,173, 0,133,155,172,202,159,151,216,222,109,222,181,176, 39, 0, 80, 94, 67, 8,188, 91, 37,165, 57,109, 15,123,178, +164,240,202,141,225, 28,113,208,186,144,240,176, 77, 5, 72,130,173,205,153,247,159,214,161, 39, 55, 27,190,144, 26,211,230, 40, + 51,220, 5,130,246,200,122,128,220, 23,252,217,112, 65,227, 3,141,247, 61,195,183,200, 82, 10,238, 20,171, 98,139,165,251,204, + 41,211, 72, 93, 68,101, 34,142,171,155, 11,172,245,190, 77,214, 97, 34, 68, 51,154, 43, 14, 29,225, 74,238,129,132,170,136, 35, + 98,139,136,150,239, 85,214,165,214,116,155,150, 60, 51,206,219,190,175, 54, 93,105,237,172,131, 15,158,139, 13, 14, 18,226,251, +196,104, 81, 97, 56, 69,206,233,186, 83,254, 44,105, 18,212,174,198,231,184, 8, 14, 27, 71, 89, 27, 22, 12,169, 94,137, 93, 0, +186,178,100,225,181,172, 63,132,102, 42,133,186, 8,228,250, 3,213,221, 21,248, 27,173,136,217,188, 35,134, 47,114,253,103,130, +228,118, 60, 37, 97, 13,151,128,213,140,104,195, 12, 16, 60, 57,122,198,113,143, 16, 40, 82,218, 49, 53, 53,196,200,246,210, 30, +129, 28, 56, 29,207,108,214,225, 58,218,175, 61, 94,188, 42,226,119,139, 28, 38,171,113, 78, 25,126, 27, 83,183, 77,224,161,221, +148,231, 31, 82, 85,192, 64, 45, 4,163,113,252,131, 41,188, 99, 65,166,109,135,247, 22,235,188, 62,169,184, 21, 95, 89,133, 66, + 71, 86, 9,121, 32,232, 67,239, 73, 88,180,175,234, 88, 65,218, 47, 52, 29,197,203, 15, 86, 30,116, 10, 41,160,174, 89,132, 39, +178,119, 33, 33, 68,101,129, 66,120, 50,145,144, 48, 2,233, 58, 82,206,138,187, 44, 60, 46,164, 2,132, 70,116, 82, 33, 5, 86, +129,138,178,125,183,223,227,183,191,251, 71, 24, 59,224,203,207,191,199,178,144, 45,204,154,140,150,126, 68,181, 96, 69,101,211, + 61, 76, 41, 25,222,137,130,145, 4, 27,198,178,146,181, 54,192, 83,156, 98, 78,130,236,132,138, 91, 84,169,107, 45,150,105, 70, + 67,223,187, 74, 5,175,145,179, 27,214,176, 76, 82,132,142,183,174, 61,186,209,160, 33, 12,129,253,251,172, 66, 70, 3,204,198, + 71, 44,160,157,210, 89,231,212, 53, 17,137,110, 93, 87,180, 74, 99, 45, 31,168, 51,118,210, 85, 88,192, 26,222, 89,169, 61,140, + 38, 28,121, 93,225,120,151, 28,152,143, 15,182, 0, 93, 28, 86,148,182,224,108,231,144,203,136,106, 61, 76,107, 72, 28,164, 97, + 26,193,105,170, 37,188,171, 42,122,185,128,250,230,187,159,250,174, 23, 6,145, 15, 21,114, 19, 84,124,253,205,143, 24,199,136, +151, 47,175, 0, 0, 15, 15, 71,124,245,151,239,117,228,213,197, 69, 6, 25,192,127,251,235, 91,220,150,207,240,191,253,203,175, +112,113, 24,176, 27, 3,188, 51,120,124,152, 97,106,193, 59,215, 59,164, 84,112,255,184,224,135,219, 19,150,227, 17,102, 74,184, +185, 95,240,221, 16,112,125,112,120,177, 51,120,113,189,199,225, 44,226,124, 28,113, 92, 43,126,184,191,193,123,127,119, 64, 5, +117, 90,198,145, 11, 66,102,156,181, 54, 24,231, 53,226, 81, 52, 16,114,224, 72,247,208,227, 28, 29, 83,203,118, 90,212,218, 13, + 35, 66,214, 77,141,199,150, 41, 17, 20, 39,103,194,111, 10,153, 16,108, 91,106,252, 12, 57,239,217,202,100,117,151, 71,103,101, +225,115, 66,118,200, 77,197,176,138, 60,101,104,134, 90,235,248, 10,202, 57, 81, 3, 80, 73,125, 92, 75,226,253,105, 87,165,139, +117,135, 44, 77,129,243,191, 51, 92, 33,123,172, 49,132,230,117,142,158,217, 24, 27,154, 1,188, 37, 26,219,184,139,152, 25,245, +234,156, 67,110,188, 58,224,238,213, 7,186, 60, 99,244, 61, 64,195, 18,101,172, 22,106, 0, 4,134, 99,189,133,105,244, 94, 73, +209, 83,114,213,189,174,117, 30, 48,155,108, 6,235, 0,111, 54,208, 20,106, 48,116, 44,110,128,233,180,112,163, 98, 52,133, 79, + 58, 92,177, 50,146, 53,205,195,114,209, 51, 24, 78, 19, 84,188, 43, 96,188, 67,128, 81,142,132,115, 3, 82, 42, 24,134,192,223, + 63, 84,244, 41, 13,131,172,251,228, 44,165, 71,169,146, 66,154,159, 53, 29,237, 6,175, 14, 24,209,253,208, 56,154, 47, 80,112, + 18, 93, 41, 92,204, 73, 74, 95,247,250,211, 52,167,106,186,166, 76,135,115,202,202,228,247,188,250,163, 64, 30, 18,165,134, 96, +250,250, 38,103,250,179,109,239,197,107,165,159, 35,229,188,131, 73,155,109,243,188, 1,141,139,107, 89,105,202, 69, 45,217,240, +164, 92, 39,254, 63, 24,137, 46,147, 49,203,130,108, 33, 46, 26, 67,120,115, 34, 14, 70, 20, 91, 52,197, 45,176, 85, 59, 14, 3, + 35,108,173,166,123, 90,102,190, 8,140,169, 55,155, 29, 30,230,189, 81, 69,124,229,208, 29,231,232,231,186,213,218, 72, 12,118, + 46, 52, 61,159,167, 19,220,127,252,223,127,247,251, 14, 14, 49,204, 78,182,221, 38,192,212,167,200,241,152, 61,126,145,252,221, +216,196,233, 9, 59, 93,211,148,248,226, 33,204,169,211,133,183, 84, 96,135,243, 3,226,184,195,176, 27, 57, 68,100, 37,213,123, + 73,152, 78,179,142,115, 4,136, 32,151,186,247, 94, 11, 2, 57,172, 74,105,154,241, 43, 30, 76, 57,204, 40,248,161, 83,160,228, + 5, 21,207, 55, 9,173,192, 17,163,150,187, 85,203,127,167, 60,232,252, 33, 87,217, 27, 83, 69,245,209, 39, 31,227,211,127,250, + 7,188,125,115,194,235,191,252,132,121, 78, 52,242, 94,110, 81,214,187,205,174,198,179, 0,199,178, 13,164,103,175, 91,103,144, +214, 2, 52,178,238,104,130, 25, 92, 79,168,226,149, 3,219, 62,159,194, 41, 10,129, 84,200, 19,219, 39, 19,226,189,239,163, 29, +232, 5, 45, 15,130, 88, 18,229,192,183,108, 85,244,161,143,214,219, 38, 42,178,199,201, 26,166, 84, 37,130, 93,228,164,145,170, +148,201, 76,249,206,194,225, 22, 47,171, 40, 81, 11, 17,129,128, 86,116,180,234, 57,181,201,113,119,128, 86,241,236,210,225,217, +101,197,217, 89,197,215, 95, 79,128,137,216,159,237, 54,250, 6, 32, 45, 43,144, 19,210,154,112,243,184,244,244,176,141,103,184, + 20, 2, 29, 45,108,211, 91, 57, 78,182,148,130,239,127,184,193, 24, 60, 46, 47, 15,240,222, 97,136, 30,111,111, 30,116,229, 51, + 50, 49,174,176,246,228, 52,205,248,252, 79,223,160,228,138,139,203,115, 88, 31,129, 86,176,174, 5,165, 1,231,187,128, 23,229, + 30, 87, 54,195, 22,201,125,247,152, 83,198,237,195,132,219, 83,198, 52,103,196,224, 48,236, 6,252,225,243,239,240,246,244, 35, +118,103,148,133, 64, 10,109,199, 99,112,240,104,188,109, 0, 80, 77,149,196, 26,155,204, 87,172, 15, 17,206, 71,132, 97, 71, 7, + 10,143, 67,229,215,168,106, 23,146, 71, 13, 21,174,233,248,120, 3, 19, 81,157, 72, 12,186,235,220,170,230,181,123,100,152,143, +236,100,233,107,241, 79,186, 32,235, 68,171,147,153, 93,145, 84,205, 46, 66,187, 90,178, 22,169,212,209,231, 77,172, 39,141, 57, +233, 48, 29, 24,112,228,144, 75,227,184, 92,195, 42,126, 25, 75, 23, 45, 12, 74,237,234,111, 65, 46,131, 27, 6,114,216,108, 11, + 21,251, 4,241,188,172,148, 99,208, 41, 34, 70, 39,143,146, 4, 41, 96, 17,107, 45,196, 38, 44, 99, 86,180,166, 29,186,100,199, +151, 34, 40,217,242,100, 26, 34,251, 95,233,134,229,130, 18, 2,167, 48, 10,228,103, 42, 29,170,236,147, 5,207, 45,194, 94,122, +110,168,179, 29,134,160,231,181, 20, 13,162, 23,210,125, 56,255,255,137,181, 57, 78, 66,189,148,133, 15,237,162,221, 70,103, 33, + 92, 12,233, 50,131,239, 63,123,185,248, 37, 29, 78, 57,246,102,251,247,218, 77,131,230, 53,146,187, 71,131, 91, 93, 47, 25,118, +182,200,231,133, 77,154,166,174, 44,237, 86,196,217,116,109, 98, 45, 51, 73,140,237,150,203,210, 87, 26, 98,239,243,142, 86,149, +244, 14, 89,165,232, 25, 93,169,112, 54, 61, 79,161, 75,233, 88,106,239, 29,134,145,222, 63,185, 11,133,197, 2,112,145, 39, 4, + 67,207, 19, 55,177, 21,110, 66,212, 4,136,195, 92, 60,205, 14,161,149,234,170, 54,207,101, 89,144,214, 21,243, 52,209, 10,224, + 63,253,135,127,249,125,230,209, 17, 12,158, 84,242, 20,147, 71,221,155,136, 68,104,148, 84,186, 39,220,117,145,142,124, 33,234, +101, 55,125,252, 34, 76,100, 45, 30,124,192,254,112,134,253,225, 12,214, 5,238, 0, 19,230,105,194,116, 60,177, 32,175, 63,236, + 82,181, 8,208,222,108,144,129,134, 21,160,149,121,188,148, 33,110, 53, 87, 92,138, 10,185,224, 12,191,120, 29,221,138,190,106, +240, 76, 54,242, 86, 31,200, 56, 4,142, 56,108,234,113,191,184,188,196, 63,255,187,127,139, 56,158,227,155,191,190,193,221,205, + 17,185, 52, 88,155, 81,211, 45, 90, 89, 20,123,219,179,132,155,194,105,232, 0,171, 61,229,138, 53, 1,195, 16,153,131,205, 34, + 35,142,132,149,145,170, 40, 84,193, 65, 30, 10, 2,105, 82, 60, 56, 70,244,114, 5,206,214,152,218,216,211, 92, 68,213, 78,127, + 23,172, 97, 68,175, 35,244,230,102, 95,215,106,101,181,104, 83, 90,145,198, 76,182, 70,225, 45,188,138, 31, 98, 64,140, 68, 7, +180, 28,229,216,116,125, 66,137, 91, 84,145, 74, 84,104, 34,229, 44, 23, 36,157, 94, 37,138, 90,225, 56,211,248,118, 93, 13, 94, +127,103,113,125,125,213,167, 16,155, 41, 83,157,103, 56,103,113,127, 90,186, 21,167,246,181, 82,173,141,152,215,236, 41,110,181, +113,167, 68,118, 29, 3,224,157, 87,207,225,172,197,179,171, 3,110,111, 30,144, 75,213, 68,169, 79,222, 37, 27,219,227,156,176, +172,212,213,126,251,253, 13,190,250,234, 7, 60,187, 60,199,225,226, 28,185, 20, 76,247, 15,184,249,254, 45,230,187, 7, 92, 12, + 1,239, 62,219,225,114,116, 48,243,132, 22, 3,224, 60,110,239, 38,124,253,221, 91,252,229,219,183,120,253,221, 91,124,246,245, + 55,184,122,110,117,204,172, 11, 82, 81, 82,111, 32, 62,219,142,187,178,101,137,132,167, 14,158,197,105, 46, 4,114, 69,240, 37, +228,172,211, 14, 67, 15, 63, 64, 39,114,244,156, 84, 26,187,243,216,145,242,218,253,166,147,226,231,139, 11, 64, 17,214,138, 8, +140,214, 69,229, 9, 91,189,255,190,250, 36,230,178, 54, 10,254,145,112,139,158, 94,198,228, 52,201,125,231, 49,182,236, 40,131, + 31,200,199,107,105, 45,225,125,164,174,152, 51,226, 27,140,158, 25, 50,146, 20,200, 82, 45,141,139,118,163, 19, 68,233,216, 10, +211,211, 66,244,228, 11,230,230, 68, 50, 22, 42,107, 87,164,155,173,165, 7,167, 72,177, 34,135,183,211, 29,107,223,157,211,106, +173,105, 16, 18,208,176, 44,153,166, 87,182, 7,128, 56, 71,123,231, 90,170,198, 87, 91, 99, 85,252, 85, 10,137,163, 66,240,218, +245, 9, 40, 71, 46, 26,203, 52, 77,203,150,216, 97,140,155, 36, 74,240,153,226, 85,160,214, 54, 41,151,146,166, 39, 13, 77,201, +133,206, 52,137,222,102, 27,165,116,220, 93, 96,109, 85,184,187, 45, 16, 84,244,182,129,192,168,231,158,115, 43, 10,171,219,155, + 98,101,187,240,204, 74,225, 34,251,117,254, 26,122,195,229, 54,147, 15,167,127,175,147,180,182, 77,236,175,172, 5,104, 39, 15, +157, 58, 90,231,217, 18,109,251,215,197,191,111, 24, 7, 22,179, 25,109, 40,123, 40, 77, 7, 36,201,185,238, 57, 53,141,226, 81, +131,134,150,201, 89,188,253, 51, 36,111, 94,255, 44,211,109,159,194, 70, 16,171,110, 90,201,241, 64, 5, 36, 21,188,203,178, 32, +151,140,121,158, 48,207,243,230,125, 50,112,255,241,223,255,238,247, 82, 5,201,142, 71,108, 9,210,197,210,195,212,244,131, 16, + 27,141, 36, 8,201, 15, 76, 30, 28,129,129,200,126,161,109,190,113, 17, 2,140,187, 29,118,103,103, 8,113, 32,155, 82,109, 72, +235,130,180, 44, 88,230,153, 83,126, 8, 29, 43,222,113,101,230,242, 72, 75, 58, 75,113,184, 71, 70,184,170, 77,137, 3, 14,228, + 96,146, 23, 79,126, 28,242, 80,232,195,238,122,119, 46, 31, 62,117, 27, 70,171,167, 16, 3, 62,253,135, 95,225,103,191,248,132, + 64, 50,127,249, 9,243,180,162,212, 2, 83, 31,145,151, 59, 46,114,232,207, 24, 71, 26,127,201,138, 64, 14, 81, 65,200, 86, 14, +224, 16, 75,155,227, 23, 86, 94, 98,241,207, 55,209, 52, 24, 9,231, 40,170,248, 23,181, 43,209,170, 82, 71, 8,242, 97,187, 44, + 9,105, 93,121, 36,214,167, 49, 77,117, 3, 68,139,147,221,166,225,164, 58, 65,119,138,149, 74, 8, 78, 57, 37,212, 74, 9,109, +222, 89,236,198,129,196, 64,178,251,130, 81, 75,160, 0,137,104,247,152,144, 87, 18,208, 53,238,218,173,231, 17, 61,103,162,123, + 79,209,162, 82, 81,139,130,247,135, 31, 42,230, 57,226,226,226,160, 89,222, 82,112,120,111,225, 76, 65, 53, 22, 63,188,121,160, +206, 77, 81,138,192, 3, 43,206, 73, 36, 67,190,242,221,224,241,226,234,128,143,127,246, 46,126,241,201, 7,120,255,253,151,156, +126, 68, 83,131,253,110,192,235,111,223,208, 36, 32, 87, 92,158, 69,252,226,253,231, 24, 7,143,183, 15, 19, 61,175,185,224, 56, + 45,248,252,139,191,226,244, 56,225,252,108,192, 89, 58,193,181,130, 92, 43,222, 78, 25,183,143, 9,209, 2,239,156, 7,188,250, +224, 26,247,199, 21,127,252,242, 43,188,243,110,198,225,178,160,186, 9,135, 11, 3,235,249, 93,105, 61, 37, 75, 14, 36,162,193, +113,127,205,187, 78,218,205,141,244,249,249,168,104, 73,121,214, 73,212,233,187,208,175,209, 8, 47,179,214, 1, 74,173, 99, 36, +105,237,132, 71, 93,213,216,254,115,160,206,155, 49,155,214,104,142,122, 46,153, 11, 14,209,206,180,158, 11,109,122, 7, 34, 99, +208,148,215, 13,216, 3,170,120,151,213, 28,121,211,139,162,102,213,194,233, 7, 24,227, 97, 93, 64,173, 22, 67, 28, 73,176,216, + 28, 39, 17, 54, 38,223,245, 85,162, 60,183,141,109,106,162, 29, 50, 12,212, 34, 34, 34,169,207, 67,244, 26, 70,211,152, 0, 41, +211, 60,161,117,213, 90, 56, 74,117, 75,158,131,226,170, 59,135, 99,115, 40,163,103, 68, 57, 47, 86,175,166, 74,117,225,165, 59, +239, 48,157, 40,180,200, 88, 65,110, 55, 12, 99,196,202,226,217, 30,250, 34, 97, 61,208,194, 74, 10, 87, 13,113, 98,207,127,103, +133, 27,221,123,247,240, 21,241,211,123, 94, 31,152, 39, 34,172, 97, 8, 12,197,177, 12,190,162, 66,200,234, 69,212, 5, 92, 50, + 17,139, 49, 32,165, 14,168,162,241, 53, 52, 50, 87,139, 31,231, 84, 0, 40,121, 20, 98, 95,150,247,159,108,213, 86, 57, 10, 82, +108, 58,134,114,216, 77,194,167, 32,104, 45, 95,238,181, 54,189,220, 69,215,161,133,190,216,207, 76, 47, 98,244,207,116,142,243, +202, 61, 79, 56, 28,130, 15,122, 95,200,121,180,253, 87, 23,112, 27,156,157,157,241,154,151, 26, 96,103,123,216,150,232, 59, 26, +136,139, 96, 88,148,217,116,218,252, 84, 20,151,185,233, 16,103,146,208, 35,167,105, 66, 90, 23,172,203,204,241,228, 80,174, 9, + 26,224,254,211,127,248,183,191, 23,208, 76, 46, 89,171, 48, 33,104, 9, 56,166, 87, 21,237,137,197, 77,118,102,242,205,118, 33, +196,255,236,185,150,241, 13,117, 1, 84,209,236, 15,103,186, 31,111, 53, 99, 58, 30,241,248,112,212, 42,197, 40, 51,215, 62,169, +240,104, 28, 38,170, 70, 9,101,233,187,211, 97,140,106, 47, 35, 53,123,211,162,131,252,234,246, 73, 58,209, 54, 43,119,251, 32, +201,238, 3, 13,120,249,222, 43,252,246,119,255,132, 82, 60,254,242,231, 31,112,123,115,228,241,208,130,154,110, 80,107,194, 56, + 70, 86,181, 59,245,111, 58, 70,253,129, 31,166,156, 50,219, 98,170, 90, 57,156, 51,172,196,183,156,107,110,181,203, 17,114, 31, +133, 66,100, 85, 59,110,139,149,204,163,248, 45, 12,164, 53,250,245, 96, 49,154,247,114, 33,208,180,195, 57,171, 35, 83,199,226, + 39,217,129, 75, 68,103,211, 52,173,218, 73, 78,150,104,124,250,159, 82,129, 42,136,162,168,181,133,132,146,252, 61,151,204,204, +121,171,187, 44, 31,156,242,161,251,171, 34,113,183,141, 47, 99,224,179,207, 23,188,124,241, 2,135,243, 51, 30,215, 27, 45,222, +104,166,100,177,100,131, 31,223,220,177,170,185,242,104, 42,243,190,141,118,239,251,232,241,235,143, 95,226,215, 31, 94,225,131, + 15, 94,225,250,229,115,242, 53,243, 75, 15,134, 48, 13, 67,192,244,120,194,227, 68,214,202,183,247, 19,222,127,113,192,123, 47, + 46, 48, 88,224,187,183,199,141,128, 12,184,185,123,196,215,175,127,196,224, 44,222,121,126,142, 64, 17,136,168, 48,248,233, 97, +198,237,113, 69,116,192,213,203, 75,220,221, 46,184,159, 86, 92, 92, 26,182, 45, 26,189,224,200, 82,211, 87, 60,149,241,152,206, + 7,132, 48,162,193, 96, 24,247, 76, 26, 36, 75, 85, 96, 21,174, 28,116, 98,103,234, 93, 61,141,250,200,161,226, 84, 15, 34,138, + 80, 17,161,201,223,169,147, 35, 24,189, 88, 5, 91,172,177,189,174, 91, 80, 9,164, 82, 40,116,168,148, 62,202,228,200,217,198, +255,217,195, 57,122, 6,132,168,180,104, 37,148,181,232,104,155,232, 99,239, 71,120, 63,192,135, 1,150,187,244, 90, 41,252,130, + 44,171,161, 39,193,192,108, 28, 11,149,175,161,206,224,176,174, 23, 25, 60,209,124, 18,157, 76, 93, 58,237,209,141, 53,148, 12, + 23,189,138,246,100, 66, 68, 66,190,162, 74,106,193,255, 72, 48, 11, 1,114,114,247, 81,243, 51, 77, 40,105, 97, 2, 8,162, 20, +236,163,166,134,105, 97,171,108, 8, 30,243,180,106,247,223, 42, 77,221, 74, 45,108,129, 53,106,205,203,185,168,190,197,110, 98, +103,229,178, 69,235, 63, 59, 69,155,154,190,175, 23,140,182,216,120,123, 30,186, 81,132,248,182, 83,173, 27, 11,155,196,216, 74, + 76,234,211, 4, 65,163, 23,174,144,212,107, 41,155,102,138, 46, 51,207,159,187, 76,161,100,106, 44,207,176,168,211, 61,175, 88, +201, 9, 36, 20, 60, 46, 4,248, 94,161, 20,185,176, 65, 22,247,175, 83, 62, 3, 65,160,123,207,163,120,142, 30, 23,145, 53, 53, + 38,142,131,206,172,122,192, 45,175,163,100, 85, 35, 20, 61,107, 40,117,207,178,200, 50, 14, 65,139, 68,209, 72, 84, 45,110, 91, + 31,179,111, 2,140, 68, 72,158,115,209,169,215,186,172, 72, 44,128,155,231, 25,235,186, 48,219,131,206, 70,249,254,229,190,240, + 62,192,203, 23, 70, 34, 5,167, 49,159, 62,122, 86,101,154, 30,220,194, 35,144,154, 73,109, 77, 21, 30,225, 90,211,146,224,188, +237, 57,196, 70,112,129, 69,171, 19,189,208, 45,129, 94,100, 68, 33, 69, 4,117, 94,149, 15,126,122,249, 58,162, 17, 58,106,210, +157,222, 70, 40,164,222,243, 40, 33, 37, 12, 66, 81,104, 0, 61,212, 99, 28,180,210,213, 63, 11, 13,158,233, 65,173, 86,237, 56, + 37,140,102,183,223,225,151,191,253, 20,113, 56,224,251,111,222,226,225,254,132,105,162, 93, 96,203, 15, 0,164,146,166,253,200, +110, 63, 34,231, 6,235,218, 38,120,194,176,165,167, 99, 3,125,240, 27,191, 58,143,111, 44, 7, 9, 40,103,185,233,238, 92,196, + 28, 70, 15, 15,177,181, 85,205, 22, 46, 76,180, 82,112,143, 53, 48,150, 43,113,231, 17, 44, 29,160,173,242,126,223,110,220, 10, + 27,136,140, 28, 14,181, 2, 37,175, 58, 93,216, 78, 60, 36,250,207, 90,203, 62, 90,143,204,221,189,145,168, 75, 86,233, 74,114, +154,132, 87, 72,197, 93, 75,161, 32,138,218,152,207,204,221, 16,175, 25, 72, 89,155, 17, 60,133,186, 12,193,161, 41,105,139,159, + 25,146,129, 35,151,132,148, 72,168, 7,102, 39, 95,156, 57, 12, 49,224, 48, 90, 92, 95, 95, 98, 55,120,196,154,224,163, 67, 25, + 56, 73,142,139, 45,209, 78,231,101,134,113, 30, 31,189,251, 12,127,253,246, 45, 86, 38, 99,125,241,205, 13,126,119, 62,226,131, + 87,151,248,236,245, 13,214,218,158,100,152,151,218,240, 95,190,250, 9, 0,240,219,143, 95, 32,175, 22,193,103,152, 66, 81,177, +223,252,120,194,222,237,241,171, 95,190,135,255,231,255, 61,226,238,174,224,250,121, 84,141, 4, 9,172, 44,226,110,208,174, 47, + 48,159,219,178, 31,215,113, 49, 45, 5,154, 84,233,173,118, 49,164, 6,118, 52,194, 0, 91,239,224,130,129,173, 36, 6,165, 72, +210,166,129, 61,127,171, 62,150,131,176,139, 93,123,192,147, 76, 84, 90, 37, 33, 90, 77, 5,214,210,159,227, 56,208, 35,241,243, +106,116,175,222,250,239, 3,169,144, 11, 79,112, 42, 79,128,182,123,111,169,238,172,139, 8,126, 68,140, 59, 52, 56,138,201, 52, + 14,214, 6, 0,142, 89, 14,228,108,160,179, 73,196,155,116, 9, 36,225, 45,136,246,162,138,195,132, 50, 29,204, 0,172, 68,104, +165, 73, 82, 42,216,237,119,170,100,159,166, 76,197,221,105, 81,229,113, 73,116,177, 52, 78,195,155,213, 6, 5,214, 19, 25,141, +122,150,162, 86,248,244,142,167, 89, 48, 68,165, 20,132,172,243,244, 14,146, 6,150,115,222, 13,217, 87,165,161,218, 66,174, 12, + 7,238,100,161,224,113,132,108,206, 77,227, 96,165,169,170, 53,233,100, 75, 81,208, 76, 82,171,133, 68,184,105, 35,132, 3,175, + 90,229,107,151,198, 65, 38, 41,242,141,138,178,222, 50, 76,131,104,112, 78,133,110,206,202,180, 3, 61,143,130,255,187, 97, 58, + 41,229, 59,208,196,111, 93,147, 6, 60, 41,153,206, 25, 21, 70, 91, 91, 57, 59,128,104,116,214, 89, 12, 46,114, 71,155,122, 12, +169, 33, 26, 93, 45, 77,223,167,214, 26,220,166, 84, 52, 32, 78,130,172, 29,122,134,124,111,144,130,247, 28, 94,100, 52, 95,157, + 10,134, 30, 63, 44, 58, 10, 90, 93,134, 13, 77,111,208,207, 48,179,109, 16, 5, 58,161,208,179,198, 24, 22,119,246,179,215, 56, +163, 83,160,196,193, 60, 98,225, 44, 57,179,200, 55,179,227,196,235,244,150,238, 65,114,100,248, 82, 11, 80,193,120, 83, 30, 81, +177,165,194, 72,213,210, 26,198,195, 5,210,244,168, 99,117,225, 50, 27, 99,145,150,196, 72,195,172,202,243,198, 23, 38,141,150, +232,146, 17,191, 99, 3,176,219,141, 79, 72, 60,222, 91, 36, 3,172, 41,179, 34, 86,226, 68,237, 38,159,182,234, 78, 10,141, 30, + 62,167,227,150,170,187, 48, 18,247, 80, 49, 32,151, 14, 77, 21,217,103, 42,170, 95,206,246,173, 76,200, 51,108, 23,210,135,195, + 7,252,236,231, 63,195,171,247,223,199,155,159, 30,241,229, 23,127,165,124,229, 82,225,221,138,117,126, 96, 43,137,131,245,148, +168, 70, 25,198,156,202,198,113,141,141,149,138, 37,247,125,110,227,140,227, 24,189,142,158,182, 99, 44, 9,169,208, 68, 50,166, +121, 89, 43,130, 62, 86,108,242,131, 67,223, 9,177, 47, 43,199, 57,146,128,197,170,104,201,123,250,121,192,121, 10, 88,217, 88, + 92,104,180, 10,218,213,164,140, 86,203,147, 64,134, 16,156,238,120,133,150,100, 56,130,147, 40, 81, 93, 56,162,158,201,180, 42, +161, 43, 4,171, 68,164, 16,157,174, 19,104,231, 86, 97, 36,111,153,187, 54, 73,152,155,167, 9,222, 59,188,251,170,225,171,191, +222,227,253,247,159, 19, 43,193,177, 54,195, 89, 52, 22, 8,238,207,118,248,244,211,143,176, 27,130, 86,210, 49,122, 68,100,152, +180, 32,231, 6,199,212,177,234, 71, 77, 4,171, 37,163,112, 38,182, 1, 16,199, 1,165, 0,151,175, 94,226,147, 15,239,240,217, +215,111,224,172,193, 15, 15, 51,254,242,253, 45,206, 71,178,163,196,224,177,166,140, 33,122,181,114, 14,193,225,234,114,143,221, + 97,135,214,118,188, 54,114,152,167,149, 21,183, 21,213, 69,252,230,211,159,225,203,215,223,225,250, 69,160, 3,203,243, 33,193, +222,112,239, 69,123,129,190,215,230,169, 10,137,186,156, 10,147,156,181,104,210, 93, 85,102,114, 51,118,116, 27,143, 41, 66, 40, +209,114,148,210,105,126,253, 93,204, 60,101,170, 58, 6,166, 51,160,207, 81,196, 94, 67,233,126,149, 29, 13, 77,197, 85,165,210, + 72, 94, 56,234, 98,205, 50,204,215, 46,124,137,111, 59,216, 82, 41,235, 93, 14, 93,231, 6,248, 64,153,210,214, 70,138, 29, 54, + 30,242, 91,189,167,239, 53,231, 74,159, 21, 7,195,136, 16,210, 57, 10,254, 88,150,166,254,227, 56, 4,204,211,130,156, 37,147, + 26, 42, 14, 36,175,181,193,233, 56,211,164, 3, 84, 24,136,160, 50,115,128, 78,107,141, 82,207,184, 11, 51,173, 17,118,217, 73, + 65, 68, 19,207,202, 23,114,228, 88, 99,239, 29,141,209, 29, 37,147, 97, 35, 68,150, 46, 95, 66,166,228,231,174, 86,210,214,116, +135, 79, 77,142,209,172,115, 98,179, 71,164,148,116, 47, 77,158,106,171,227,109, 99,229,140,102,107, 95,107,200,173, 95,204, 50, +162, 46,165,219,203, 10,239,210,115,110, 60,161,168,112,250, 28, 53,157,210, 72,227,161, 52,207, 53,171, 87,188, 85,122,175,187, + 0, 17, 48,168, 90,252, 56,239, 80, 0,157, 88, 2,228, 62, 16, 23, 4, 21, 54,133, 61,254, 69, 97, 93,130, 92,149,105, 68,136, +145,238, 43,103,116, 45, 49,140,156, 7,129,142, 83, 21,140,171, 49, 64,116, 94,181, 98,222,246, 52, 75,178,104,146,171,128,224, + 46, 44,242, 45, 69,191,151,148, 50,156,181, 8, 49,146, 91, 71,214, 9, 82,244,110, 50,224,157,111,218,136,137,128, 87,206,218, +202, 46, 46,137, 60,150,105,232,178,172,112,206, 98, 89, 22,172,235,202,196, 61,167,197, 85, 8,145,133,169, 61,119,222,123,163, +239,180, 90,218,186,197,192,118, 1,151,179,168, 9,170, 6,223,254, 75, 34, 90,115,162,145,115, 22,209,150,193, 38,183, 25, 42, +226, 32,193, 73, 81, 11,141, 11,164,200,132,122,242, 88, 8,192, 23, 30,173, 1,172,126, 93, 42,226,227, 10, 18,166,239, 30,213, +226,166, 73,115, 85, 85,227,198,138,111,208, 40, 88, 66,246, 54,153, 71,132, 54, 90,254,128, 29, 28,168, 26, 60, 59, 28,240,171, +127,252, 53,230,169,226,203, 63,125,143,187,219, 35,143, 14, 19,202,250, 0,184,174,124, 20,213,166,100,147,123, 99, 49, 79, 43, + 29,170,137, 81,150,220,149, 96, 19,227, 40,130,154,190, 95, 19, 6, 56, 99, 41, 55, 35,170, 42,157,120,235, 42, 98, 73,112, 74, + 41, 83, 81,196, 69,206,150,228, 68,113,178, 94, 21,244,231,215,207,113,186,191,133,129,231,208, 26, 18, 17,166, 68, 92,113, 26, +175,211, 30, 57, 48,228,198,218,200,145,149,142, 47, 21,250,204,196, 94,167, 34,196, 68,211,154,180,174, 72,235,202,221,155,229, +135,184, 51,224,189,179,104, 70,124,207,116,136,215, 82,129, 77, 40,143, 8,255, 36,140,226,229,203,128,215,223,174,152,231, 85, + 69,125,181, 80,122, 94, 74, 69,159,139,171,171,115,157,252, 8,221,108,153, 19,253, 57,235,132,106, 44, 76,116,168, 54,168,215, +222,123,162,209,229, 84, 17,247, 35, 85,235,107, 66,131,193,175,127,245, 33,238,231,132,105,165, 23,249,245,237,140,221,144,113, +184, 56, 67,109, 21,231,231,123,172, 92,120, 57,107,240,207,159,188,194,223,191,123, 5, 31, 40,173,238,241,113,134, 29, 6,152, + 66, 80,145,129, 15,129,171,103,103,248,254,205,136,146, 11,198, 61,139,119,188,225,145,105,230, 41, 87,235,162,202, 74, 59, 99, +201, 82,111,155,124,242,218,160, 94, 89,171,232,222,166, 59, 84,205,149,150, 78, 76,121,254,125, 20,104,120, 66,100, 56,184,194, +128, 46,237,210, 26,108,115,172, 1, 1,235, 57, 50,170, 53, 20,220, 82, 86,194,194,162,106,209,237,125, 96, 40, 83,219, 36, 13, +102,221,121, 82,247,104, 57,192, 38, 35,231, 85, 47,116,218,159,143,112,126, 32,205,128, 13, 48, 54, 34,186, 8,107, 35, 12, 19, +188,100,156, 42,233,117,206, 57,172,137,104,129, 33, 4,238, 18,201,202, 85,114, 65, 8, 14,199,148,104,223, 89, 0, 51, 2,203, + 12,196, 49,162, 85,122, 95, 7,110, 8,150, 90,113,126,190,227,228, 52,138, 45,118,206,113, 68,114,103,209, 11,117, 63, 4, 42, +136,228,194,244, 44, 24,163,105,166, 8,245, 88,196,202,248, 87,105, 34,250,179, 94,245,242,209,226,169, 52,206,167,239, 59, 86, + 25,223,234, 74, 15,192, 60, 47,186,174,162,166,202, 17,144,198,245, 32, 28, 90, 41, 24,229,158,139, 40,145,172,111, 30,165,117, +140,171,164, 76,150, 77, 49, 33,128,176,206,253,160,255, 78,197, 5,244, 89, 19,254,132,229, 28,241,148, 18,134,129,226,187, 91, +223,168,208,159,195,151, 46, 77,142, 40, 88, 11, 28,152, 34,153,240, 62,244, 12, 14,203,177,214,141,155, 20,171,130, 56,160,178, +206,203, 24, 3, 27,169,232,241,220,168,202,101, 47,130, 55,201,147,111,220,172,168,122,159,167, 47, 21, 18, 11,219, 54,234,123, +167, 43, 9,103,157, 66,156, 2, 67,205,232, 78,115,172, 65, 2,239,213,155,226,211,101, 13,189, 93, 77,136, 59,167,181,186,201, + 73,161,159,101,214, 20,195, 0, 0, 32, 0, 73, 68, 65, 84,213,241,241,136,156,147,138,236, 36,182,218,176,173,220, 74,216,199, +102, 85, 41,171, 38,247,127,254,203,111,127, 47,221, 96, 8,182,167, 81, 9, 61,135,173, 76, 62, 70,148,180,234,229, 40, 35, 4, +218,117,116, 72,140, 99, 31,250,214,202, 32, 86,143,109,130,209,197,245, 75, 28, 46,159, 33,142, 7,196,113, 64,171, 13,211,233, + 17, 57, 45,170,246, 83, 17,131, 68,185,170,234,214,110,178,102,193, 0,150,254, 65,201, 40, 92, 4, 61, 34, 48, 33, 59,133,209, + 31,104,247,192,146, 0, 99,140, 1,207,159, 95,224,213,171, 23,248,217, 47,127,129,183, 63, 61,226,219,215,111, 48, 77,204,163, +207, 71, 88, 76,168,181, 98,127,126,137,214,178,122,216, 61,103, 42,207, 39, 34, 89,173, 43, 85,206, 36, 82, 75,250, 80, 56,238, + 48,157,119, 24,207, 46, 16,135,136,188, 65, 97,234,120, 43,238, 48,238,247, 88,166, 73, 87, 23, 86, 67, 89,172, 62, 0,194, 35, + 46, 85, 44,125,244,121,133, 24,112,118,121,133,154,147,170,218,173,243, 40,105,209, 93,166,120,131,165,219, 42,137,160, 49,198, +118, 27, 20,169, 55,187,253, 67, 92, 14,102,179,211,214,100,176, 90,177, 46,139, 66,138, 66, 12,218,177,197, 24, 16,188,213,172, +123, 17,102, 82, 50, 19,219,145,120,141, 98,141, 83, 65, 79, 8, 65,169, 92, 67,244,184, 63, 58,156, 95, 28,250,133, 87,187,251, +161,177,237, 79,246,109,178,191,107,153,139, 69, 67,122, 5,227, 44,154,143, 12,217,161,180, 50,231, 60,124,164,236,237, 16, 61, + 12,219,158,226, 24, 17,172,195,253,227,204,238, 8,143, 10,154, 54,200,232,113,183, 27,224,157,197, 47, 63,124,129,223,124,252, +146,118,220,142,166, 8,178, 43, 44,165,194,143, 3, 48, 14, 40, 21,248,241,205, 29,118,135, 21,187, 51,251, 55,187,224,166, 22, +205,214,176, 73,127,178,155, 95, 70,211,171,204,251, 91,153,146, 72, 65,109, 55,133, 0, 56,255, 92, 73,108,165, 32,229,164,158, +118,113, 79,200,115, 39,187,116, 93, 25,233, 30, 80, 20,235,141,221, 9,133,215, 50,148, 75,160,191, 79,192, 74,156, 86,101,173, +164,197,241,136, 61, 39, 46,226, 19, 82, 94,144,210,210, 59,116,227, 16,226, 30, 33,238,224,220, 8, 31,104,244,238,252, 0, 24, +175, 33, 52,100, 73, 50,106,113, 42, 28,143,220, 88,228, 75, 34, 79,186, 48,214, 37,169, 88,211, 52, 25,135, 98, 83,208,244, 73, + 97,227,164, 52, 9,126, 41, 27, 2, 92,225, 34,165,233,174, 30, 28,142,148, 24, 84,101,159, 68,160, 22, 94, 75,172,156, 12, 39, +110, 30, 31,172, 94,178,212,101,245, 21, 72,218,216, 45, 69, 23,211, 1, 50, 77,187, 68,195,163,115,154,104,230, 30,214,194,194, + 80,129,217, 60,201, 14,104, 20,130, 35,174, 60,209, 17, 73,214, 71,206,165, 19,230,182, 12,120,165,217,101, 21,183,150, 90,148, + 86, 89,248,239,178, 60,213, 17, 65,173,120,246, 75,206,204,176, 72, 8,222,169,182, 65,166, 74, 74,235,116, 29, 22,211, 49,198, +208,213,169, 53, 61,139, 94,184, 37, 66,167,115,155,137,172, 8,128,101,130,213,211, 70,157, 38,200, 57,158,168,250, 16, 52, 14, +216,108,214, 86, 98,121,107,219,128, 28,141, 28, 54, 24,198, 17,198, 58,229,178,199, 97, 80, 61,139,209,231, 82, 24, 14, 93, 35, +224,157, 83,221,130, 52, 68,216, 8,145,115, 46,152,166,137, 47,246,170,239,172,181,142,167, 99, 78,155, 84,209, 21,200,231, 39, +137,118,181, 53,120,108, 70,218,243,180, 48, 33, 44,242,238,155,198,185,150, 69, 63,137,219, 75,221, 65,108, 60,205, 2, 63, 89, +115,210,113,139,168, 54,157, 55, 29,157,231, 28,141, 45,130,199,233,225, 30, 33,173, 24,198, 29,219,231, 40, 86, 81, 70, 44,180, + 67,106,234,223,147, 67,202, 7, 7, 8, 28,134,213,245,226, 59, 21, 6,176, 68,144,138,229,164,100,153, 36,176, 78,128,173, 10, +251,253,136,203,243, 61,158, 95, 63, 67, 12, 30, 57, 55, 60,156, 18,254,252,249,119, 56, 29,103,170, 78,243,140,150, 79,244, 89, + 56, 66,150, 58,223, 31, 50,130,196,176,205,207, 82,224,132, 80,204, 52, 97,136, 95, 76, 17,152,120,166, 52, 85, 14,146, 40,235, +170, 21,151,225,241,143,140,160, 40,227,187,123, 48, 5, 23, 41,140, 99,217, 39, 57,241,121, 59, 7,239, 44,134,232, 81,119, 81, +127, 95,171,133,195,108,120, 37,144, 51,175, 5,146,130,122, 98, 28,244, 98, 17,111,179, 18,200,184, 64,146, 89,174, 76, 42,114, +226,189, 93,173,156,204, 86, 40,122, 80,128, 16,158,208,142, 82,237,243,218, 81,121,247,118, 51,166,237,163,218,166, 1, 48,214, +122,180,150,113,125,237,240,230,246, 17,167,211, 57, 14,135,145, 44,134,124,105,164, 92,212,106, 84, 75,219,136,184, 42, 76, 5, + 90,136,188,207, 93,177,204, 51,130, 39, 63,247,241,241,136, 92, 23,180, 22,240,222,123,175, 54, 7,135, 71,179, 21, 13, 30, 31, +126,242, 17,190,249,241, 22,143,199, 89, 95,124, 18, 94, 58, 21,146,253,252,227,247,240,155, 95,188,143,161,156,224, 55, 66, 49, +103, 12,246,151,123,132,195,136,228, 71,220,220, 29,241,205,247, 63,194, 12, 39,140,177,119, 60, 26, 4, 33, 34, 71, 16,252, 69, +216,237,226,229, 53,204,164,177,214, 10,169,148, 14, 92, 64,199,141,168,221, 70, 38,251,204,156, 18, 74, 45,170,136, 22,213,177, +140,254,172,237,217, 7,222, 65,247,237,154, 33, 45,133, 66,206,154,180, 69, 16,187,166, 69,156,112,175, 13,191,171, 13, 13, 89, + 83,215, 26,139,230, 68,208,181,234, 56,155, 14,194,128, 16,118, 8,129, 46,115,231,200,186,102,109, 4, 12, 77, 82, 26,123,196, +183,185, 18, 36, 0,227, 51, 9,125, 4,233, 44,117,137,142,211,231,114,218,190,179, 17,173, 20,248, 51,131,180, 44,200, 76,179, +220,159,237, 48,215,166, 89, 16,222, 57,172,117,209,231,190,108, 46,215,233, 52, 51,221,177,162, 54,131,121,234,162, 56, 52,154, +202,205, 83,210, 73, 89, 99,245,123,107, 86,145,163,130,126, 45, 44,114,115,140,113, 54,108, 99,146, 11, 90, 10, 88, 9,223, 42, +185,144, 70, 70,149,239,242,235, 13,150,165,168,144,207,242,164,176,182,206, 51, 88,151, 85, 1, 55, 50,222, 86,242,155,237,217, +226,105, 45,122, 17, 21, 46,146, 42, 12, 96, 58,170, 86, 66, 92, 4, 25,222,195, 85, 88, 15,197,224,162,194,226, 73,202,138,231, + 0,162,106,159,124, 6,206,245,100,185,202, 98,104,200,101,207, 98, 97,111, 28,143,233,161,130, 54,207, 23,158,209, 41, 16, 91, +100, 5,124,196, 77,138, 97,136,147,181,142, 19,254,130,174, 37,169, 96,165, 66, 53, 12, 81,225, 90, 62, 68,172,235, 74,130,222, + 24, 9,201, 28,237, 19,230, 9,236, 38, 35,157, 45,124,181,110,163,104,177, 9,172, 42,189,152,150,159, 61, 79,136,151,180, 34, +167,164,193, 69,242,254, 26,121, 87,225, 58, 6,189, 85, 88, 22, 78, 74,241,162, 43, 18,107,225, 75,206,108, 37,233,135,234, 92, +103, 88, 99, 16, 7, 66,251, 85, 20, 84, 22,202,249, 97, 68,176, 22, 37,173, 26,199,233,252,128, 90, 23, 98, 40, 75, 87, 18, 60, +252,217, 14,211,227,253,134, 67,108,121,103, 76,216,203, 16, 77,199,117,150, 4,227, 68,252, 66,148, 40,203,221,147,117,129,228, +251,204,214, 13,195, 14,105, 93, 89, 92,229, 84, 65,123,113,117,133,219,183,183,240,214, 96, 60, 59, 71, 94,103,196,113,199,135, + 64,197, 58,205,236, 39,116,120,231,229, 5, 94, 60,191,198, 48,142,120,120, 92,112,154, 22,124,255,253, 45,121,147,115,197,112, +113,197,211,192, 21, 62, 54,248, 48,162,242,135,125,184,188, 4,140,193,254,226, 25,140, 49,120,188,189,101,129, 5,189,224, 54, + 68, 18, 40,149, 6, 32,113, 39, 65, 98,171, 97,228,135,137,187,141,121, 89, 96,125,232,187,222, 90, 49,236,247,200,235,218, 67, + 13, 74,131,245,196, 61,142,123,122,137,208, 10,210,186,160,150,130, 96, 3,206, 46, 47,177,158, 78,136,135, 1, 62,122,173,134, +227,238, 0,231, 28, 78,247,183,164, 10,221, 29,176, 78, 15, 20,166,146, 18,206,175,174,177, 78,143, 20, 72, 18, 2,225,102,215, +153,253,231,180,179, 9,195, 14, 62, 70, 26,245, 47, 51,242,186,176,146,191, 32,238,206, 17,119, 69,191, 86,107, 12, 78,247, 55, +250,153,187,230, 52, 7,154,192, 12, 70, 69,122,173,208,232,173,114,167,100, 5,100, 34, 43, 23,107,225,229,226, 52, 1,222, 54, +124,248,126,198,215,223,222,192,186,231,176, 0,134, 49,160,128,146,193, 44,239,174,156,183,176,181, 31, 22,118,220,241, 36, 0, + 72,115, 70, 75, 5,190, 22,220,220,220,225,226, 48,227,226, 34,227,207, 95, 85, 60,187,186,196,225,226,128, 16, 35,173, 36,150, +149, 42,223,224,241,209,199, 31,224,179,255,241,149, 34, 69,101,210,227,172,199,167, 31,191,194,207,127,245,247, 24,163, 7,142, + 5,168, 25,222, 2,171,221,161,186,136, 33, 6,248,146, 81, 79, 43,190,249,254, 47,104,225, 17,113, 20,152, 80,239, 18,100,164, + 46,240, 11,245, 65, 27, 18, 44, 86,101, 98, 55, 29,249,201, 69,147, 75,210,105,143,221, 88, 4,115,102,215, 65,235, 32,169,218, + 40,180, 69, 96, 54, 34, 10, 45, 44,106,205,173,104, 28,165,120,165,155,138,101, 37, 86,153, 16,188,148,158,101,181,163,183, 44, +196, 52,118, 27,179,154, 55, 88,216,190,155, 22,127,174,181, 30, 49,238,121,143, 62,194,152, 0, 31, 70, 52, 88,210, 6,176, 0, +104,219,157, 43,127, 94, 66,109, 90, 86, 31,124, 74, 21,201,200,104,220,233,175, 35,120, 11,115, 16,106,128,117, 36,170, 26,198, +136,146, 41,146,120,220, 13, 40,197,192,193,195, 6, 1, 0, 85,228,181, 42,191, 33,165,170, 44,115,205, 9,111,164,223,152, 39, +106,100, 44,187,134,233,239,175,124,113, 91,208,176,211, 32, 51, 11,163,234,196,211, 81,140,115,233, 76, 13,199,187,243, 45, 21, + 83, 61,218, 3,173, 52,220, 38,114, 19, 6,180, 54,226,230, 96, 97,209,179, 6,187,172, 69, 69, 88, 2,112, 17,218,155,105,100, + 63,131,109, 58,177,104,181,209,106,105,195,253,207,252,103,102,214, 7,145, 6,195, 82, 49,193,118, 80,181,207, 57,179,233,194, +251,232,189,100, 14, 63,169,150,167, 8, 64,107, 14,198,208, 78, 91,237,145,150,109, 27, 66,190,227, 40, 95,177,171,245,231,221, +194,132,174,188, 23,171,111,201,137, 38,131, 12,153,180,155,156,247, 14, 45,171, 26,227, 26, 66, 64,169,180,187, 95,217, 15, 46, + 25, 34, 68, 15,141, 58, 29, 86,209, 96,147,244,196,158,215,225, 88, 24, 89,153, 81, 34, 63,131, 82,171,254,122,181, 92, 26,131, +105,154,233, 62, 99,235,154,225,103,218, 57,223, 99, 99,189,225, 34,213,178, 78, 41,235, 84, 92,190,167,198, 65, 80,190,212,194, + 47,131,213, 15,209,242, 75, 84, 10,141,193, 61, 31,112,198, 57,164,229, 68,182,176,253, 25,106,201, 88,231,132,218, 38,132, 97, +135,146, 38,133,162,196,241,140, 70, 47,134, 31, 62,174,190,200, 95,235,121,167, 36,157,153,133, 11, 35,242,186,232,129, 20,135, + 29,124,136,120,184,191, 35, 63, 98, 24, 96,157,197,114,154, 97,230, 9,187,195, 57, 33, 56,121, 23, 49,158, 29, 48,159,102, 29, + 61,146,128, 98, 64, 94, 23, 52, 52, 28, 14, 7,188,252,224, 93,140,129, 0,251,169, 56,188,189, 57, 97,158,110,144, 56,177,106, + 89, 27,214,121, 37,204,100,157, 80,203, 17,121,165,248,198, 48,140,136,187, 29,242, 58, 99, 62, 61, 98,220,159,227,241,238, 86, +233,120, 41, 23,178,162, 57,143,229,116,194,178, 38,196, 97, 64, 28, 6,164,117, 38,228, 46,143,122, 74, 46, 40,166, 74, 2, 54, +198,113,192,195, 60, 17,193,104, 28,248,176, 78,104,113,164,231,198, 24,248, 72,159, 79, 89, 41,249, 44, 12, 3,226, 48,162,178, + 50,157, 4, 94, 17,181,172,152, 31, 78,104, 48,216,157, 95, 98, 62, 62, 80, 84,226, 74, 98,166, 16, 28,214, 19, 85,179,227, 46, + 98, 24, 3,188, 59, 71, 78, 51,210,156, 16,134, 17, 67,188, 64, 78,180,167, 11, 59,218,107,150,188, 32,167, 70, 36, 47, 99, 48, + 29,143,228,249,126,188,225,151,184, 34, 12, 35,176,161, 89,181, 74,145,159,186,118,105,149,159, 47,238,244,197, 94,197,163, 37, +233, 48,250,250, 70, 10, 11,238, 6, 91,197,126, 15,156,141,143,120,184, 27,112,249,236, 92, 61,195, 70,120,253,214,162,242,136, +208,114, 12,107, 74,180,227, 75, 41,193,194, 32,163, 97, 77,183,120,231, 69,134,181, 5,214,120,188,122, 81,112,115,115, 15,148, +130,221,217, 14, 46,142, 68,182,227,175,233,221,247, 94,224,245,235, 31, 48, 77,211, 19,107,204, 47,255,238, 26,127,255,243, 15, +104,247,151, 11,220,238,128,101,158,209,130, 67,220, 81, 49,177,206, 43,242,154,241,223,255,251,159,176,212, 27, 12, 59, 66, 3, + 27,227, 0,238,142,196, 91,102,172,133, 51,118,227, 59, 54,154,112, 38,191, 76, 18,170,182,168, 72, 93, 59,241,175, 79,204, 29, +104, 27, 32, 12, 29, 78,124, 24,215,130, 82,243,102,167,219, 35, 50, 69, 44,219,132,242,166, 33,148, 60,122,175, 6, 13,221,219, + 78, 69, 59, 84,152,199, 49,137, 40, 53,241,180,166,176,163,163,251,168,101,116,232, 92, 68, 8, 59,162,224,133, 29,156,139,176, + 46, 18, 77,209,121,246, 34,123,221, 31,246,220,245,218, 59, 99, 97,145,155,134,133,217, 5,153,147, 19,211,218,185,232, 46, 9, + 21,172,194,154,134,180, 90, 32, 52, 96,193, 19, 7, 64,107, 13,197, 86,118, 2, 61,133,141,136, 88, 85, 14, 85,201, 80,108,104, +152, 78, 75, 23, 17, 55,179,193,208,146, 67, 72,160, 93,138, 45,206,189, 56,156,231,196, 81,166,221, 34,108, 57, 21, 81,114,230, + 5, 19, 45,194,217, 30, 0, 34, 7, 59, 61, 75,235,218,195,182,176, 81, 96,211,142, 63,108, 70,223,244,249,165, 76,223,193, 86, + 54,229,156, 69, 53,141, 74, 19,231,177, 44, 43,103, 85,152,141, 46, 9, 79, 48,175,150,197,147, 20,249, 92, 20, 35,222, 54, 46, +135,156, 24, 38,149,170,254,121,222,123,190,128, 61,171,203,187, 80, 77, 72,156,145,191,110, 77,103,131, 99,170,156,213, 4, 79, +249, 33, 85, 6,247,200,250, 72, 38, 56,114,137, 10,251, 99,147, 28,207, 43, 7,168,139, 42,248,160, 98,101,112, 35, 72,107,230, +173,101,155,166, 14,158, 39,165,181,108,132,208,173,105,113, 83, 54, 89,243,242,243, 46,185, 80, 36,117,226,216,114,118, 28, 81, + 65, 80,225,172,127,146,149,208, 56,233,141, 88, 33, 22, 96,112,145,240,255, 83, 74,250, 92,249, 86, 11, 86, 22, 90, 17, 26, 20, +104, 45,195, 6,135,188,146,120, 65,246, 84,121,157, 88,197,238,176, 76, 39, 24, 71, 98,163,148, 18, 92, 24, 40,148,165,100, 24, + 71,190,191,229,248, 64, 7, 69, 54, 44, 10,200, 27, 11,129,133, 31,123, 7,184, 46, 51,214,121,214,125,111, 28, 7, 28, 31,232, +247, 47,203, 74, 48,130,113, 68,141, 25,181,144,248,195,199,128,117, 89, 49,238, 70,192, 56, 44,211,145,173, 7, 84,160, 68,107, +112,241,236, 25, 14,135, 61, 1,108,106,192,237,219, 27,164, 92,136, 10,198,196, 48, 10,194,160,170,206,250,132, 86, 11,150,101, + 70,206, 75, 23,254,149,130,176,223,211, 37,207, 7, 76,136,196, 65, 46,165,114,208, 12,165,133,173,235, 74, 31,244,186, 96, 28, +119, 40, 57,241, 97, 96, 20, 96,211,106,211, 16,141,211,241,136, 48,238, 97,204, 9,113, 24, 41,201,141,199, 81, 36, 50,170, 40, +105,214, 49, 86, 45, 13,166,101,196,221, 14,243, 99,130, 99,189,192,178, 16,165, 13,188,131,234,228, 57,230,204,243,154,194,128, +128, 45,178,151,105, 53,115,142,122, 3,204,138,253,197, 21,210, 58, 83,241,229, 7,164,101,194,186,172, 50, 75, 66,225,140,119, + 57,212,197, 35,227, 67,196,252,120,215,245, 20, 60,142,133, 86,221, 50,102,238,187, 86,242,127, 58, 21,207,160, 9, 74,182,194, + 52,178,228, 84,206, 46,110, 60,210,126,255, 93,135,207,190,120,192, 37, 14,212,189,177, 5,200,152, 2, 24,178,197,216,129, 86, + 41,202,180,102, 45, 66, 74, 11, 94,189,147,176,219,211,120,176,100,234, 62,119, 35,112,255,120,131,220, 14,120, 60,174,112,115, +129,227, 36, 43,207, 7,202, 71, 31,125,128,127,253,215, 63,242, 75,239,240,222, 59, 87,120,239,227,159,161,249,145,242, 14, 24, +149, 91,214, 4, 88, 7, 44, 43,124, 12, 88,150, 21,255,237, 15,127,194,106,239, 48,158,121,254, 58,146,234, 80,100,202,209, 96, +117,125, 34,211,173, 14, 82,225, 60,239,121,166,253, 40,251,166,173,235,170,244,148,132,161, 94,216,226, 38, 91,128,162,187,211, + 62, 22,108, 29, 65, 41,232,205,210, 63,231, 86, 58,134,151,190,198,170,197,147, 0,147,106, 43, 26,176, 2, 22, 23,145,160,147, + 60,231,109,195, 70,223,230, 75, 24, 78,175, 10, 97, 7, 31, 70,132, 48, 34,132, 29,143, 24, 61, 96, 60,124,136, 26, 42, 34,151, +182,149, 48, 35,116,129,153,138, 95, 25, 91,108,208,144,171,164, 15, 78,176,182, 41, 80,202, 90,139,253,110,196, 50,101, 10, 3, + 43, 14,130,226,161,244,197, 12,107, 87, 69, 89,103, 43, 88,234, 78,251,138,198,235, 85, 32, 29,178, 92,106,222, 19,164,197,130, +214, 74,153, 57, 11,134, 89, 10, 68, 41,115,124,134, 82,247,182, 44, 43,175,178, 88, 15,176,137, 63, 22,216, 77,230, 9,136,247, +100,231,162, 34, 96,229,245, 28, 21, 96,166,116,103, 2,217, 8,235,134,181,238,249,239, 15,106,143, 19,177, 29,173,208,184,168, +102, 29,130,210,227, 74,210,157,240, 56, 68,157,194,210,121, 88, 55,118, 51, 46, 68, 74,121,114,121,213, 34,226,224,186,193,135, +155,205,174,222,234, 4, 9, 27,240,146,188,179, 0,176,206, 11, 39, 90,174,234, 12, 17, 7, 86,171,149,226,127, 55, 92, 2,153, +102, 60,241,144, 11,216,133,187,222,233, 68, 86, 69,142,250, 80, 52,120, 90,217,189, 33, 43,102,187, 41,178, 44,157,219,162,253, + 33,113, 31, 41,209,177,177,255, 73,161,101, 89,244, 75,176,180,198,246,195,166, 69,214,188,204,124,177,211,207,191,241,247, 75, +171,163,190, 82,168, 98, 85, 53, 93, 8, 40,224, 30,177,141,139, 85,180,177,158,198, 11,135, 89, 56,196,226,149,110, 12,243, 23, +139, 85,173, 5,203, 60,161,150, 30,140,178, 59, 27,112,124,152,216, 94,181, 96, 24,247,120,188, 61, 97,119, 56, 32, 45,139,130, + 46, 4, 21,106, 55, 99, 15, 88,131,146, 38, 22,206, 88,248,232,148,132, 68, 66,173,128,113,127, 1,227, 44,198, 67, 99,170, 86, + 69, 41,143, 84, 32, 44, 19,198,179, 11,184,156,225,195,128,180,204, 8,193,225,242,226, 28,215, 87,231,120,246,226, 21, 30,111, +239,145,114,197,219,155,137, 20,143,126,196,195,237,137,119, 81,128, 13, 30, 97, 31, 65, 19,149,202,153,196, 64, 53,108,147,147, + 68, 44,221, 9,202,104,202,178,159,144, 46,169,202,123, 49,231, 45,140,143, 24,207,162,194,102, 72,253,154,144, 83,247, 38, 74, +103, 37, 15, 78,205, 25,158, 59, 67, 24, 10,105, 65,171,112, 49,243, 3,218,179,144,125, 12,138, 71,181,206, 32,179,118,192, 88, + 25,199,109,212,211,173, 91,210,168,226,167, 11,213,251, 78, 43,179,206,179,149, 35,232, 1, 41, 99,173,117, 73,216,133, 29,194, +238, 12, 62,142, 44, 62, 2, 92,205, 72,147,248,200,105,149, 50,236,246, 88, 79,143,122, 0, 98,131,208, 52,130,101, 84, 56,141, +237, 59,184,214, 0, 39,233,125,242,114,115,149,207,144, 13, 81,169,215, 66, 88,212,188, 38,188,184,170, 56, 30, 39,236,118,180, + 3,243,214,194,120,234, 32, 91,227,125,220,208,253,231,104, 5,131,127,196,229,243, 5, 62, 24,180, 70, 93,132,120, 79,209, 26, +206,207, 78,152, 78, 84,172,182, 90, 57,102,184, 34,238,207,248, 98,240, 24, 99,192,237,253, 17, 47, 94, 92,227,163, 79, 62, 70, +181, 1,211,146,209,214,153, 39, 1,141,125,193, 11,210,106,241,248,195, 29,254,244,213, 95,144,237, 3,226,208, 19,183,250, 24, +189, 42,159, 90,190,239,101, 73,170, 63, 72, 41,177,142, 34,107,198,122, 15,161,200, 48,213,232, 63, 83,129, 90, 45, 76,106,107, +155,108,242, 78, 11, 20, 39,137, 88,214, 58, 20,134, 62, 59, 26,229, 54, 13,184, 48,182, 23,103,212, 17, 85,137,107, 71, 46, 73, + 69, 81, 45, 37,237, 91, 37,233,176,199,182,244,110,215,218, 0,239, 7,222,161, 15,112,126,228,156,131, 72, 23,186, 15, 42,204, + 36, 64, 82,183, 81,130,173, 87,102, 11,190,146,139,134, 33, 55, 57,173, 88,230, 9, 41, 45,104,141,198,169, 49, 4,192, 91,204, +115,215,120,160, 1, 33, 22,140, 24, 80,162,135, 19, 15,112, 54,236, 40,161,110,169,176,170, 89,227,154, 25, 84,164,128,166,202, +144, 31,167, 70, 29,233,119, 85,221,221, 26, 80, 76,238,212, 52, 94, 7, 88, 55,242,154,164, 48,147, 34,107, 40,143,136,248, 74, +202,128,119, 88, 87,201, 71, 47, 24,135,160,144, 26,201,198, 40,133, 86,124,212,169, 59,212,146, 52,115,163, 85,218,207, 18,110, +187,193, 90,118, 8,193, 96,220, 57,140, 99, 84, 33,236,184,139,172, 25,177, 60,241,168,184,191,123,196,241,241,164,185,225,149, + 11,144, 53, 37, 22, 25,214, 46,170, 91,133, 51, 66, 23,111,181,189,187,207,169,243,209, 37,134,186, 86,163,151,107,215, 65,244, +207, 64, 28, 80, 82, 36, 88,107, 40, 60,138, 47,120,209, 60,208, 62,221, 0,182, 23, 21, 98, 29,116,190,175, 36,131,183, 58,217, + 17, 38,134,116,243,243,178,112, 90,101, 64, 94,179,254,172, 20,246, 83, 27,115, 7, 54, 12, 1,136,253,208,117,202,101,112,188, + 62, 73, 72,107,183, 24,231,148,217, 54,156,168,217,227,201,142,164,188, 81,250,100, 85,173,131, 20, 55,146,126,168, 23, 59,175, + 37,139, 18, 74, 29, 11, 83, 29,252,186,172, 92, 5,122,180, 2,246, 13,246,131, 85,148,235,149,119, 15, 82,177, 91, 67,221,117, +171, 5,198, 89,204,199, 35,156, 15,136,187, 17, 46, 4, 44,211,157,126, 8, 84,197,122,245,219,137, 82,176,150, 4, 88,202, 60, + 94, 78, 51,226,184, 71,195, 91, 78, 76, 75,200,105, 65,157,201,128, 31, 98,192, 50, 23,221,207, 82,101,150,177, 59, 59,224,213, +171,107, 28, 6,143, 24, 34,114, 1,166, 57,227,205,155, 35,238,110, 30, 81, 91, 83,203,211,238,224, 81,249,208,141,187,128,218, + 18, 74, 90, 81, 82,227,149,194,129, 5, 62, 76, 17,242, 91,102, 47, 93,162,100, 19, 41,136, 60,206, 33, 61, 0,117,252,214, 39, + 76,167, 19, 42,131, 91,156,119, 40, 43,244,197,139,145,124,186,158, 59,116,234,242, 73, 76,130,154, 17,247,103,152,143, 39,141, +225,139, 49,162,172, 19,130,241, 24,198, 29, 74,201, 88,231, 35, 10,167, 25,237, 14, 23,212,161,173, 9,113,207, 16,154, 2,197, + 64, 58,215,243,136, 99,244,250, 67,151,196, 43,225,230, 67,210,175, 56,241,168,150,172,211,134,117,153,144,150,169,123, 37,217, + 42,229,196,137,224, 44,118,103,231, 88,166, 71, 70,243,242, 88, 40,117, 59,145,118,234,218, 85, 17,158, 82, 81,195, 44,254,145, + 81, 99,102,130, 30, 17,195,154, 30, 24,149,121,220,181, 1, 87,207,128, 63,255,245, 17,105,217,113,128,133,165, 9,145,233,209, +150,214,128,246,136,229,136,171,139, 9,103,123,240,133,207,221, 49,103, 51, 27,235,128, 90,176, 27, 27,110,238,110,128,246, 2, +121, 77,152,166, 5,113, 24, 49,223, 29, 53,141,233,234,250, 25,113,226,223,123, 7,107, 42, 72,169,160,166, 5,168, 69,157, 13, +196, 13, 95,241,211,155, 91,124,251,211,119, 56,123, 70,105,114,116, 49, 87, 69,239,138,216,166,214,181,239,200, 75, 81,177,151, +188, 63,125, 15,202, 54,174, 82, 96, 18, 84, 0,213, 26,255,218, 86,225, 26,117, 63,164, 8,110, 42,164, 34, 6,188,225, 11,163, +109, 58, 77,190,116, 91,209, 72, 84,176,205, 80,212,208,132,104, 23, 32, 82, 23,207,149,154,249,247, 53,221,167,226,111, 58,243, +142, 73, 21, 65,156,103, 85,251, 30,214,122, 88, 55,192,121,182,170,109, 21,238,214,246, 14,133, 39, 68, 13,228, 11, 23,171,145, +140, 30, 11,219, 59, 41, 32,134, 47,244,188,160,148,149, 38, 61,213,160,213,128, 80, 9,100,100, 48,192, 89,242, 1,251,224,177, +174,148,229, 62, 12, 77, 63,243,110, 21,229, 44,241,232,177, 46, 52, 46, 37,219,158,215,142, 51, 68,143,117, 45,170, 78,223,159, +197,110, 11, 86,177,150,132,153, 84,205,164,167,239,147,232,117,178,187, 45, 62,192, 57, 48,141,142,154,170,236, 51,159, 63,244, + 94, 73,172,169,228,177,203, 69, 93,231,138, 24,189,114, 58,182,142, 27,161, 85, 6,198, 94,203, 24,126,183, 27,158,216,107,155, +138,184, 54, 33, 58,206,226,234,197, 21,222,254,116,135, 31,191,251, 1,211, 52,235, 78, 56, 4,199,235, 51,163, 5, 14,193, 80, +208,133,144,205,104, 48,148, 92, 80,235, 90,213,107,238, 28, 11, 47, 83, 71,116,111,105,141,142, 83, 51,229, 25, 34, 70, 73,238, + 57, 18,173,145, 5,147, 29, 0,224,134,133, 4,138, 13,134,125,238, 6, 64,225, 53, 83,226,103, 71,160, 74,228,128, 96,126, 70, +163,228,192,202, 83, 15, 89,255,136,149, 82, 68,173,226, 87,167,207,218, 43, 10,183,129,220, 87, 36, 82,164,207, 53,229, 76, 19, + 87,118, 12, 56,103, 80,114, 71,207, 90,198,134,171,242, 95,194,211, 56, 41,142,166,131, 30, 77, 50,224, 13,101, 97, 9, 61,178, +148,130, 97, 32,206,191, 55, 32, 15, 37,184,250,234,204,110,167, 10,233, 16, 61, 82, 74, 8,195,128,202, 49,137,214, 7,148,188, +234,190,207, 88,131,117,158, 48,236,206, 48, 61, 62, 42,223,184,143,240,168,203,203, 57,195,135,168, 7,155,103, 33,193,180,208, +254,207,179,177,190,230,140, 16,119,200,121,102,185,190,195,249,213, 57, 30,239,238,176,219,141,120,126,117,129,119, 94,189,194, +229,245,115, 60,222, 31,241,240,112,196, 79,111,238, 81,106, 67, 46, 13, 97,215, 48,157,102, 85,178,134,232, 96, 93,131,243,116, + 0,132, 33, 98,153,120,244, 99, 44,134,221, 64,226, 13,102, 27,247,132, 54,186,176, 99,116,202, 50, 22,123, 8,189,140, 34,148, +105, 88,166, 9, 33,142,104, 62, 35,175,137,196,128,195,136,178,206, 24, 70, 30,125,177, 5,171,172, 5, 99, 12,240, 43,217,181, + 74,166, 2,163,150,130,113, 71,144,140, 17,173,143,234, 56,144,165,100, 82,214,135,184,211,131, 86,146,178,164, 82,118,222,118, +150,115,240,168, 60,226,211, 49,215, 70, 37, 76,137, 76, 93, 41,238, 60,137,147, 36,117, 41,205, 19,206, 46, 46,144,230, 25, 57, + 45,100, 59,218,141, 72,243, 9,206, 91,248,184, 35,107,147,198, 80,209,190, 72, 88,244,210,174, 9,128, 71,128, 35, 85,178,177, + 45, 95, 8,140,173,173,165, 50,212,134, 65, 69,210,201,182, 30,206, 97,172,131,119, 6,231,251, 5,199,211,140,103,151, 52,134, +175,220, 77,197,104,208,106,194, 52,157, 16,221, 29, 46, 46,243, 38,151, 90, 98,100,177, 73,174,227,136, 90, 52, 28, 14, 19, 30, + 78, 73,109,101,133,125,225, 41,145,111,221,143,103,184,126, 53,224,238,254,136,187,251, 19, 74, 78,240,166, 98, 8, 30,251, 93, +160, 0,161,148,241,240,240,136,111,126,248, 26, 23,215, 64,201, 70,109, 43,137,137, 89,178,103,125,124, 60,110, 88,255,165,231, +142, 51,120,200, 26,199, 23, 73,247,176, 11,204,162,212,222,141, 11, 64,100, 59,126, 4,122,124,170,250, 92,101,156, 46,223,188, +129,142,250,244, 61, 21, 23, 6,239, 72, 75,237,182, 44, 26, 19, 39,141,195,148,162, 64, 24, 18, 79,187,243,167,119,188,247, 3, + 98,216, 33, 68, 82,183,123, 63, 80, 56,139,161,112, 22, 99,156, 30,198,133,125,249, 41,103,242, 81,203,247, 42, 19,142,210,145, +180,148,228,150,177,174, 11,210,186, 32,231, 5, 37, 47,168, 53,161,148,196, 32,173, 8,107, 6,254,245,158,109,125,134,113,172, + 3,131,102,168, 51,222,237, 7, 84,161,127,165,132,194, 66,193, 90, 43,198, 49,160, 20,160, 22,234, 20,119,251,129,115, 21, 26, +114,166,247,239,248, 48,179, 54, 8,234,109,174,121,213, 75,198,106, 39,201,172,111, 99,148, 69, 17,135,158,184, 70, 66,224,130, + 56, 68, 88, 67,207, 32,197,150, 50,155,157,139, 41,241,207,239,207,118, 60, 49, 36,208,205,225, 16, 52, 7, 93, 38,166,134, 93, + 55, 20,192,226,213, 49, 2, 0,235,105,162,162,100, 79,184,211,113, 63,192, 26, 75, 80, 33,231,176, 63,203, 8,113,196,195,253, +163,186, 75, 40, 55,220,245,216,221,214,148,154,166,158,108, 35,254,234, 62,173,180, 90, 1, 50,207,128,131,123, 72, 24, 72, 93, +110,229, 36, 76,153,102, 57,187, 93, 25,210,247,147, 57,115,188,242, 89,102,248, 60,174, 10, 69,178, 27, 90,158,233,239,178,114, +251,141, 90, 54,231, 57, 61, 73,150,115, 76,164,171, 76,164,147,157,117,226,248,211, 56, 4,222,118,246,239,179,129, 92, 19,164, + 65,232, 89,232, 66,141, 36,248, 13, 21,101,113, 28, 41, 18, 92, 86,211, 76, 81, 37,216, 13, 1,139,106, 33,198, 2, 9,194,171, +178,244,183,172, 0,233,212,229,188,245, 57,173, 36, 70, 74, 34,234, 72,122, 56, 26,182,212,228,149, 18,185,166,121,198,217,197, + 5, 89,136,150, 19, 10,131, 0,218,204, 10,199, 64,106,200,117,153,249,130,225, 60, 91,174, 52, 8, 77,104, 68,114,163,232,214, +101, 94, 97,172,197,186, 30, 17,198, 29,210,186,208, 68,160,172,136,113,196,176, 59,131, 51, 22, 87, 23,103, 56,124,248, 14, 14, +103,103,152,167,140,227, 41,227,230,254, 39,220,221,222, 34,113, 7, 87,106, 35,238,110,164,238, 38,151,132, 97,180, 0, 86, 24, + 59,192, 7,131,156,128,156, 22, 88, 79,221,125, 43, 5,203,188,162,193, 17, 66, 82,109, 75,149,217,210, 86,187, 34, 99, 13, 76, + 51, 88, 78, 51,252, 16,177,174, 21, 41,157,244, 18, 51,166, 34,238,118,136,227,158,190,247,156,104,229, 44,160, 26,111, 52,147, + 93, 36, 82, 34, 52,146,195,119, 93,146,190, 48,181, 85,160, 20,228, 83,198,184,223, 97,220,147,242,127, 93, 23,245, 69,194,144, +216, 48,196,160,187,117,231, 12,210,124,194, 56,238,176, 59, 59,224,116,119, 75,228, 58,103, 20, 44, 4,211, 11, 43,218,221, 88, + 77, 97, 35, 23, 5, 83,186, 78, 71,248, 56, 96,207,214,195, 52,157,244, 98, 26,246,228, 37, 15,195, 8,107,104,167,152, 78,247, + 60, 54,134,238,191, 84,184,195,237,141, 36, 90, 45,115, 81, 14,193,186,102, 13,117,145,139,140, 96, 15, 44, 42,107, 18,145, 72, + 7,250,229, 69,195, 23, 95,221,224,217,197, 25, 93, 44, 92,184, 44,203,138,156, 30,240,236,226,136,224, 36,210, 51,117,174, 60, + 63,147,102,147, 91,208, 84, 77, 93,129,246, 6,181, 61, 39,123,158, 49, 90,156, 54, 30,167,206,185,114, 17,150, 96, 77,195, 84, + 27, 30,141,193,221,163,195,126, 23,113,188,191, 71,198, 61,174, 95, 9, 34,149,116, 7,162, 94,149,221, 52,237,176,169, 75, 22, + 78,184, 66, 40, 88, 60,152, 91,209,168,227, 45,133,173,176,226, 85,236,111,236,100,163,175,210, 26,221,211, 3,181,171,233,177, + 17, 86, 9,175, 92, 81,183,156,135,174, 43,236,198,254,254,194,163,191,170,207,198,223,182,225,205,244,175,171,239, 50,183,255, + 50,136,145,236,106,206, 13, 12,151,137,108, 91,243,112,214,195,160,175,145,232, 96,183,250, 25,232,104,114, 67, 87,147,233, 64, +206,133,186,243,101, 65, 90,103,164, 76,209,205,212,161,175, 48, 40, 0, 40, 80,169, 56,135,182,210,179,228,125,224,142,145,118, +181,194,197,112,187, 81,151,255,235,146,148, 98, 38,240, 24, 81,161, 75,113, 54, 79,237, 9,102, 84, 46,178,113, 36,225, 36, 15, + 54,248,247, 22, 69, 41, 91,211, 35, 59,165,120, 10,209,245,125, 52,127,191,187, 33, 80,126, 3,120,125,217,186,138, 90,118,207, +222,247,236,121,183,167,179,234,252,226,208, 21,243, 60,129, 17,112, 75, 90,105,220, 63, 12, 17, 11,219,142, 97, 44,246,251,145, + 69,204, 22,203,188,224,246,230, 30,243, 52, 99,158,201,118,108,109, 64,202, 85,173,140,165, 18,236,167, 42, 36, 11,155, 24, 85, +210,104,200, 26,176,150, 94,234,105, 49, 93,187, 48, 12, 60, 6,167,128, 41,217,145, 23, 53, 45, 27, 75,235, 80,141, 30, 54,196, +200,215,104,110,214,205, 40, 76,137,195,195, 72, 48,219,119,227, 50,209, 82,133,124,233,107, 8, 89,177, 90, 93, 77,118, 31,124, +213,192, 35,167, 52, 71, 65,105,167,212,116, 50,230,172,229, 66,212,105,130,225,178,172,154,174, 6,190,244,231,121,229, 75,155, +190,231, 97,116,124, 38, 85,157, 80,200, 62,189,255, 28,123, 48, 12, 74,213, 66, 72,139,122, 33, 18,254,223,255,249,223, 55,242, + 66,123, 13,112, 55,155,100, 33, 18, 90, 4,205,115,150,208,135,192, 68, 56,203,134,120,231, 3,118,103,231, 84,181,230,172, 25, +188,158,171,211,170,252,117, 11,239, 35,174, 95, 94,195,199, 1, 46, 70,164, 53, 35, 45, 51,230,211, 17,211,241,164, 40,191,221, + 56,224,234,242, 18, 87,207, 46,224, 92,196,178, 20, 60,220, 79, 56, 77, 43, 93,226, 54,224,248,120,162, 23,187, 84, 13,228,240, +193,194,218,138,113, 71,151,180, 8, 0,125,112,218,173, 40,217,201, 82,103,158,216,114,150, 57,134,209, 57,139,101, 78, 60,202, +222,238, 52,232, 67, 89,230,164,149, 18,241,214,161, 99, 49,195,187, 55, 17,131, 41,158, 83,160, 14,219,131,153,247,154,228, 61, +175, 93, 25,203,191,191,176,154,216, 24,244, 75,141, 69, 67,206,154, 13,172,164,234,190,104, 93,215, 77, 85,203,227,237, 84, 57, +105,174,169, 34, 83, 84,231, 70,241,163,153,233, 80,108,171,225, 7, 65,236, 74,129, 31,194,162,161, 29, 76,151,115,244,115, 85, +181,116,235, 97, 15,114, 73,200,129,166,212, 51,174,154,197,163,107,141,217,124, 70,146,136, 5,189,192, 5,182, 65,225, 5, 85, +121,248,223,126,223,224,252, 75, 60,191,186,192,237,237, 3, 30,142, 15,184,122,182,226,226,156,190, 15,221,229, 51, 18, 82,197, +103,149, 43,124, 30,139, 11,249,176, 54, 96, 77,192, 15, 63,158,225,112,184, 68,169,224,128, 29,154,104,164, 92,144,115,165,236, +226,148, 16, 25, 78, 34, 7,201,221,221, 45,206, 46, 18,206,206,141,134,147, 72,225,176,229,172, 83, 49,151, 54,207, 86,223,209, +146,197,180,118,176, 38, 39, 19, 54, 30,131,151,218, 54, 25,220,142, 15, 63,137,103,229,120, 27, 43,226,212,196,214, 23,206, 10, +216,228,119,203,243, 79,226,163,162,147, 31,152,246, 4, 97,218,239,239,214, 59,239,206,167, 17, 97,250, 38,189, 11, 79,190,190, + 24,119,240, 46,194,249, 17,145,211,213,156,139,236, 6, 97, 76, 50,243,204,101,236,174, 35, 85, 97, 59,240,179,174, 9,101,149, + 10,161,156, 87,164,180, 96,153, 39,180,150,145,185, 67,111, 53,211,127,114,218, 27,157, 89,103,212, 36, 12,180,203,143,195, 14, +222, 5,132, 24, 17,227,136,113, 55, 80,129,202,163,233, 16,131, 38,136,137, 21, 41,198, 64, 80,162, 33, 98, 93,211,147,131, 82, + 10,227, 24,189, 66, 94,100,245, 38,144, 38, 99,240, 55,180, 75,232,106, 69,131,116,184,184,150,177, 58, 52,147,157, 8,158,242, +191,149,203,222,122,224, 21,237,145,141,186,108,196, 63,157, 89,109,189,157,230, 16, 37,146,119,213, 28, 69,124,124, 60,225,248, +120,194, 52, 77,152, 78, 51, 23, 59, 21,173, 57, 60,123,254, 46, 78,199, 71,164,229, 78,145,215,214, 89,122, 7, 88,128,215, 3, +127,140, 90,197, 68, 4, 40,147, 32, 81,215,203,138,169,181,110, 51, 67,235,171, 58,121,223,181, 43,229,239,205, 8,148,102,115, +166, 10,203, 68,166,145,242, 32, 54,126,119,132,175,226, 92,207,171, 16,129,104, 78,165,255, 76, 96, 25,169, 29,224, 67,208, 53, +139, 99, 20,117,136, 65,209,223,178,166,210,115,149,167, 1, 82,152,175,107, 70,201, 25, 41, 37, 44,203,162,163,117,249,187, 58, +205,181,105,206, 10,176, 81,200, 11,154,184,210,202,205,179,128, 86, 3,121,176, 41, 84,106,213, 53,157,151,177,157, 38,107,109, + 30, 54, 17, 25,208, 88,201,233, 33,228,125, 64, 54, 77,125,116,165, 0, 46, 12, 72, 57, 99, 62,157,224, 67, 64,203, 69,199,133, + 70,160,255,220,173, 91,233, 38, 35, 65, 91, 4, 90, 95, 50,169,180,159, 63,123,142, 87,175, 94,192, 57,143,105, 74,184,189, 95, +113, 58, 30,145,107,195,233,180,226,248,184,192,248,128, 56, 0, 15, 15, 19,137, 18,188, 5, 76,134,117,181,239,179, 75,163,175, +141,247, 73, 89,125,155,141,145,141,204, 74,111, 61,104, 68, 46,238,170, 56,206, 46, 98,160,157, 34,212, 75, 88, 53,128,130,249, +219,181, 17, 42,112, 19,159,183, 77, 70,146, 93,149,140,174,156,165, 41,133, 88, 82,100,172,178, 46, 9, 33,144,237, 3,173, 98, + 24,189, 30,236,166, 81,144, 70,201, 5,205,118, 62,178, 84,137,181, 85, 70, 31, 66, 85,174,222, 89, 88, 47,251, 56, 43, 75, 84, + 6, 37,212, 30, 58,163, 15, 38,137,255, 42,251,114,185, 54, 32,188,168,118,224,230,201,131,108, 93,213,140,110,203, 47,158,184, + 4,192,240,154,194, 5,144, 15,244,146, 9,228,145,108, 83, 20,150, 65, 69, 22,120,220,201,104, 73,174, 70, 9,126, 87,200,106, +195,136,224,151, 47, 12,254,240,249, 91, 76,243,140,232, 31,241,225, 7, 86,199,155,180,183,244, 10, 35, 49,155,238,200,122,175, +226, 36,186,240,179, 94,114, 6, 5, 49,172,184,189, 49, 24, 3,181, 81, 51, 0, 0, 15,117, 73, 68, 65, 84,134, 65, 85,227,196, +253,167, 12,131,182,174, 8,214, 34,179, 43, 96, 45, 21,211,250,136,243,203, 21, 97, 52,200,197,233,197, 35,202,254,182, 9, 47, +217,190,188, 66,212, 51,205, 60, 1, 91, 84,197,134,242,200, 17, 85,187, 32, 18, 13,109, 40,132, 60,222, 19,107,155, 92,212, 6, +146,154,199,216, 88, 94,101, 72, 33,208, 74,235,255,187,117,133,174,217,220,222,230,111, 47,116, 60,129,224,109,238,248, 13,141, +142,125,182,129,249,237, 33,208,101, 78, 96,153, 64,121, 9,214,169,239, 90,148,238,212, 60,208,138, 72, 4, 96,102,147,143,190, +221,159,175,235, 74, 4,202,188,176, 46,129,186,243, 90, 18,249,214,217,190,215,211, 14, 87,148, 66, 17,192,198, 56,132, 80, 80, + 96,224,170,195,233,116, 82, 1, 92, 74, 96, 33, 18,189, 35,105, 77,234, 53, 78,107, 67,225,221,185, 36,147,137, 69, 73, 88, 20, +153,197, 94,130, 9,149,213,147,196, 84,251, 90, 53, 24, 68,146,185, 2,239,194,101,151,236,156,225,208,162,166,169,107, 50,186, +118,150,196,114,173,153, 30,155,202,204, 14, 10, 52, 34, 32,148, 36,247,201,115, 47,255,166, 88,107,139,227,241,132,101, 94,112, + 58, 78, 72, 41, 97, 58, 45,180, 86,228, 34,160,243, 7, 40,242,247,248,120,194,186, 76,204, 40,105,154,174, 56, 77,243, 19, 17, +161,142,152, 89, 41,110,108, 63, 11,169, 1,226, 11,152,207, 88,176,166,131, 86,201, 22,173, 64, 27, 13,171, 49,223,178, 38,107, + 42,152,148,144, 43, 17,210, 78, 75, 82, 87,132,156, 61,221,114,215,167,175,212, 76,249,206,172,231, 59,140,158, 89,104,128, 76, +173, 21,235,178, 34, 12,145,244, 21,206, 49, 91,194,116, 91,166,193, 19,180, 47,221, 99, 69,173,106,203, 66,159,169,172, 87,140, +181, 88,151,117,147,244,102, 54, 86,188,170,231,129,198, 14,115,194, 27,173, 99,184, 49,226,245,130,156,191,164,115,233, 5,181, +231, 12, 35,162,240, 88,203,248,199,158,125, 43,187,207,156, 87, 86,165,210, 14, 11,153,237, 23,193,227,240,236, 57, 90, 51,152, +143, 15, 12,245, 23,241, 6, 80, 83,131,247,161,123,123, 45, 61,200, 68,161,107,240,129,190,152,253,126,196,203,103,231, 8,206, + 35,165,134,159,222, 76,152,166, 21,243,156,144, 75, 35, 81, 18,167,148,237,175,158, 33,173, 9,211, 60, 33, 12, 22, 33, 22,180, + 58,179,157,141,148,205, 90,237,212,202, 15, 85, 85,171, 27,212, 71, 8, 77, 18, 43,165,193,251, 30,195,186,204, 36, 70, 19,111, + 44, 76,235, 47,112,237, 30,234, 90,179, 90, 34,114,238, 54, 34, 99, 13, 26, 67, 56,100, 76, 35,221,156, 40, 26, 73,100,199,151, +220, 38,178,144, 88,210,244,194, 72, 80,128, 88,196, 52, 0, 0, 82,156, 88, 13, 64, 49,242,119,240,195,101,184,184,201,185,106, +177, 86, 56, 58,146,198,202, 89, 89,208,208,206, 12, 76,113,227, 52, 35, 21,148, 84,189, 60,156,119,172,115,128,194, 99, 68, 45, + 43, 43, 23, 65,153,166, 53, 49,121,176,176,250,150,212,235,150,191, 46,137,148,108,173,160,149,138,102,232,247, 56,239, 0,107, +209, 74,225,189, 22, 58, 74,183,117, 69,117, 8, 13,239,190,172, 56, 28, 38,140, 99,208,226,141, 72, 95, 13,144, 46,191, 86,254, + 51,250, 56,187,177, 32, 70,190,175,156, 23, 10,229,169, 5,187,161,226,246,230, 45,156,189,166, 29, 42,167, 36, 89,107, 17,157, +193,249, 97,135,148, 18,230,156,240,211,219,123,184, 97,194,243,119,156, 2, 78,138,178,249,205,223,132, 95, 72, 4,234,255,223, +214,181,237,216,109, 28,193,154, 11,201, 93, 57, 78,236,135, 0, 9, 96, 63,228,255, 63, 43, 15, 14, 16, 59,182,172, 61,231,144, +115,233,201, 67, 87,247, 12,109, 9, 16, 4, 44, 36,237,146,135,156,238,174,174, 75, 92, 34, 87,181, 83, 79,132,129,199,178, 11, +159, 40,204,156,218,215, 73,217,236, 52,173,249,180,230,199,190, 30,252,239,117,202,172, 26,167, 78,251,179,227, 38, 87,192, 36, + 35, 33,172,243,121,184, 23,246,101, 37, 57,198, 82,227,131,197,119,110, 94,208,247, 67,161,219,141,153,232,192, 44,232,112, 98, + 26,156,209,222,250,156,220, 76,114, 55, 29, 25, 59,122,107, 40,245,242,130,174,158, 10, 85,207,165, 81, 1, 84, 90,191,172, 77, + 53,208,165, 18,185,216,144, 82, 67,109, 21, 57,155, 90,100,195,121, 94, 8, 81, 27,185,109,219,200,124,166,206,155,205,106,135, +224,245, 58, 85,158,118,108, 14,211,170, 15,133, 65,231,112,207,246, 45, 37, 8, 39, 84, 51,100,114, 75,107, 78, 97, 58, 81,235, +174,214,154, 2, 35, 40, 91,163, 16, 34,152,205,173, 15,255,182,103, 95,147, 25,167,166, 92, 5,163,171,252,106, 14, 29,211, 6, + 22, 67, 11,240,235,169, 83,248,227,241,100,222,195,148, 90, 53,114, 24,148,209, 62,188,129,120,251,116,208, 0,168, 65,216,156, +152,237,172, 41, 45,134, 8, 98,200,158, 97,111,143,145,197,209,118,242, 65,114,202,254, 46,169,194, 69,125,243, 83, 74,142, 32, + 26,170, 97,201,115, 49, 76, 94,138, 77,234,118, 63, 12,221, 51, 91,104,227,121,105, 61, 91, 99,136,103, 86,155, 57,245, 37,222, +103,115,228, 84, 4, 35,123,100,177,237,235,117, 55,222,177,167,233,187, 98, 60, 29,131,253,205,213, 80,155,121, 54,157,173,222, +204,162,208,187,171, 78,212, 13, 86,207,233,110,140,251,218, 16,227, 68, 61, 76,249,209, 91,115,228,213,243,215,137, 42, 91,212, +116,167, 9, 82, 6, 4,209,187, 22, 97,197,159,187,179,141,249,189, 70,167,183, 27, 97,111,118,111, 13, 95,126,253, 89, 15,235, +214, 61,151, 86, 53,233,137, 58,214,177,236,194, 42, 90,219,244, 34, 14,229,112,126,251,118, 32, 33,224,247,207, 23, 94,175, 7, +158,175,130,243,210, 29,215,117, 53,196,108, 83,139, 78,142,143, 47,191, 33, 39,193,113,116, 79, 19,179,125,181,194, 53,209, 39, +229, 28,130,134, 27,208,223,215,166,108,125,209,231,174, 55,165,192, 0, 2,157,110,246, 35, 47,153,226,184,153, 10,120,210, 34, +221,198,202,213, 72, 72, 81,105, 96, 38, 81, 77,117,160, 1, 49, 42,179,242, 60,139, 63,148, 66,223,246,108, 4, 69,179, 11, 13, +240,140,112,149, 92,204,137, 78,247,159,253,118, 0,175, 48,220,236, 22, 53, 24, 99,176,235, 11,113,129, 80, 57, 1, 91, 62,180, + 70, 54,138,107,218, 3,244,250, 58,253,169,253,112, 29, 97,153, 2,131,119,218,154,122, 74,171, 69,139, 37,140,137,135, 48, 83, +228, 74, 33, 66, 48,240,122, 40,255,160, 94,250,176,231,180,234,118, 59, 66, 87,184, 83, 95,242,232, 5,195,156,182, 52,242,176, +249,164,222, 91,197,247,223, 1, 67, 42,202, 53,227,125,253, 90,237,112,176,156,110, 55, 24, 17,111,106,220, 95, 61, 48, 87,122, +232,117,126,247,221,137, 95,254,243, 63,236,251,155, 42, 29, 74,197,219,177, 97,223,222,241,122,105,206,241, 79,255,253, 5,127, +253,190,226,239,255,248,228, 76,122,157, 20, 4, 0, 19,157,114,102, 97, 45, 12,199,208, 67, 77,245,228,118,176, 36,247,111,182, +104, 82,135,249, 48,247,182,198,202,118,184,117, 76, 57,142,174, 62,132,205,100, 92, 32,117, 42, 13, 32,186, 34,185,193,232,227, +207,108,245,177, 74,179,194, 77,243,107,187, 61, 47,232,127, 34,188, 7, 45,228,187,234,207,119,146,226, 98, 82,103,200, 85,125, + 97,202, 11,243,235,246, 92,239, 46,124,180,105, 98,211,245,231,174, 77, 61, 42,106, 43,184,174, 23, 73,112, 69,239,171, 84,200, +104, 24,210,110, 43, 14,191, 30,207,119, 47, 16,217,209,187,146, 83,115,214,176, 17,164,140, 24, 6,141, 78, 56,169,146,236,123, + 28,135,146,157, 24,245,171, 13,250,180,216, 77, 35, 57,241,209, 62, 43,203, 67,183, 70,206, 66,139, 34, 77, 96,212,149, 13, 44, + 14,244,163,168,170, 58, 17, 1,114, 86,228,107,223,178, 26, 71, 5, 96,132,225,196,177,141,214,220,103,189, 92, 1,227,106,163, + 23,220,203,222, 62,251,215,243,196,243,161, 30, 26,154,160,216, 60,186,216, 10,184,145, 36,173,209, 53,180, 40,229, 12, 25, 17, + 32, 26,226,166, 39,214,188,218,170,144,239,175,177,254, 91,155,235, 66, 55,127,177,240,120, 26, 33,217,207,108,146, 47,251,173, + 4,228,230,141,159,121, 47,140,133,133, 89, 59,179, 72,168,134, 82, 2,174, 44,171,161,224, 82,199,225, 68,225,137,154,165,148, +200, 63, 74, 72,121,195,182,101,198,135,139, 15,129, 54,100, 89,146, 95,163,228,176, 93, 21,177, 69, 59,130,253, 68,190,248, 89, + 61, 30, 31,254,238,205,204,140,238, 36, 97,107,240, 60, 69,174,119, 52,147,116,135,225, 28, 46,243, 2, 25, 67, 0,161, 14, 94, +132,110,232, 51,115,161,209, 99, 66,186, 32, 43, 52,216,233, 81, 25, 49,122,115,253,157, 38, 43,233,161,157, 24,252,224,105, 80, + 8, 24, 65,148,192, 68,219,186,169,123,141, 40,103, 81,157,175,177, 89,217,157,138, 31, 62, 3,173, 40,228,255,251,243,194,199, +163,224,186, 42,174, 83,205,107,122,159, 26,188, 64, 88,116,223,129, 24, 27, 54, 90, 2,106,241, 75, 64, 83, 15,232,193, 34,165, + 7,134,249, 82, 79,215,186,152,166, 17,193, 16,154, 89, 12,133,232,243,198, 29,148, 77, 71,116, 54,203, 57,210,148, 66,221,209, +214,221,186,133, 97,236, 71, 90, 36, 24,113,198, 40,118,225,126, 95, 67, 26, 18,111,250,220,151, 40,249, 37, 68, 64,218,240,220, +229,200, 66, 27, 72,210,210,105,187, 57,236, 35, 93,176, 31, 27, 68,135, 45,221, 77,166,200, 16,137,224, 76,104,113,105, 84, 92, +162, 84, 65,102, 60, 31,170,129,197, 12,134,161, 44,181,187, 29,162,176,176,216,122, 34, 48,105,205,188,244, 45,169, 47,249,100, +161,100, 65, 44, 80,179,244, 14,105,102,132,211, 81, 37,120,131, 84, 45, 71,221,247, 91,205,119, 78,181, 54, 63,140, 53,245,170, +112,111,107, 47, 69,243,233,221, 88,234,154, 96,215,252,165,193, 8, 51, 60, 33, 40, 10, 97,134, 47,182,106,176,207, 67,247,201, +180,100, 29, 3,219,214, 17,143, 7,202, 83,229,111,182,167, 46,231,133,231,243,196,207,159, 63,227,159, 63, 2,223,124,251, 78, +120, 54,122, 97, 14, 49, 83, 18,179,249,228,145,199,174,205,133, 5, 48, 64, 53,181,102, 44, 19, 98,210,249, 82,204,219, 31,115, + 90, 48, 40,190,247,165,160,136, 79,115,129, 72,210, 48,167, 44,169,108, 12,198,173, 73, 95,208,250, 63, 34,232,203, 58, 96, 45, +213,227,214, 48,134,233, 70, 51, 27, 36,135,221,163, 23,114, 43,236, 41,239,202,108,143,137,190,237,201,119,156,195, 67, 67,104, +136, 50, 58,119,152,147, 12,103,147,102,151, 6,145,134, 82, 78,148,122, 82,121, 67,184, 93, 10, 27,152,254,199,125,192, 87, 26, +150,134, 90, 47,228,188, 19,145, 59,241,246,246,134,171, 48, 36, 35, 68, 92, 87, 65, 41, 13,239,239,111, 44,190, 21,159,190,121, + 87, 50,173, 7, 41,117,103, 49,219,103,116,190,206, 25,133,203,213,156,249, 54,104,200, 76,167,223,120,242,116, 46, 64,225, 84, +133,218,251,242, 30,168,193,201,179, 84,151,142,198,212, 81, 95,138,184, 60, 62,228,230,185,191, 6,132, 32, 0, 31, 95, 26,191, +223, 32, 81,107, 62,243,142,246, 12, 37,236,218,212, 58,205,193,244,140, 83,152, 62, 33,196, 93,223,137,246,244, 0, 26, 13,124, + 2,174,243,226,215,194,189, 32, 27, 95,163,155,253,112,192,190,169, 18,105,176, 17,101,210, 1, 17,129,228,177,191, 51, 20, 38, +112, 85, 18,248,190, 12,247, 84,241,253,240, 98, 21,219,249,110, 27, 39,105,140,232, 36,100,123, 70, 45,120,198, 16, 1,125,156, +233,158,200,179, 10, 92, 45,235,125,152, 6, 74, 93,186,174, 44, 23, 75,117,247,197,103, 3, 88,107, 65,171,141,114,207,153,199, + 17,226, 76,158,244, 21, 32, 21, 22, 78,160, 37,105,185,113,226,182,208,172,110,242, 61,139, 86, 77,202,250,247, 53,240, 48, 88, + 94,239, 95,158, 89,173,220, 17,164,232, 55, 53,111,219,116, 97,228, 69,107, 6, 55,167,170, 16, 17,146, 48,118, 84,157,193,108, +130,200,140,180,203, 57,161,182, 37, 88,158,211, 68,171, 13,191,254,124,225, 58, 59,206,171,206,130, 16, 3, 6, 37, 20,105,139, + 80,235,230,130,253,128, 67, 30,215, 89, 84, 83, 9, 22,151, 56, 89,163, 86, 80, 21,101,176,131, 53,121, 71,169,132, 25, 26,235, + 84,241, 78,108, 64,211,187,114, 12,144, 1,228, 40,232,157,142, 73,180,138,236,109,166,225,204, 93,221,212,114,186, 7, 51,179, +222,205, 62,213,246, 98, 0,208,139,120, 98,156, 25, 88, 96, 4,106, 68,133,102, 17,193,225,170, 96,228,138,184, 88, 52, 6, 96, +116,241,110,218,174,215,194, 86, 6,134,103, 42, 15, 12, 72, 45,206,196,148,160,159,141, 30, 34, 10, 75,135, 8, 84,178, 96, 21, +137,201,252,127,130, 67,162, 10,175, 51, 62,151,102, 22,182,223, 82, 61,120, 33, 2, 33, 19,118,238,157,241,129,209, 15,142, 24, +163,202,250, 0,102, 84, 7,196, 33,144, 22,110,187, 67,219,167,201, 50, 97,199,104,251,114, 78,161, 11, 36,109, 36, 45, 33, 76, +107, 18,164,177,144,212,172,152, 56,215,131,147,166, 50,237,163, 91,122,202,152,101,240,219,191, 13,252,244,185, 34,149,134, 79, +223,188,227,237,200,248,229,215, 15, 60,234,239,248,225, 95,154,234,166,132,187,160, 13, 49, 89,219,198, 42, 55,152,217, 8, 50, + 49, 69,156,116, 78, 12,105,166, 86,137,116, 90,171, 10,155,183,177,192,167,114,131,234, 21, 77, 80, 6,111, 37,204,175, 48,250, +202, 80,159, 6, 48,171, 17,140, 23,102,140,251, 20, 27,190,166, 45, 95,254,237, 88,216,247, 94,215,131,223,207, 16, 18, 73,104, +159, 56,157,111,234, 10,151, 54,132,168, 74,143,152, 19,229,148, 51, 81,107, 70,121,234, 90, 75, 74,245,230,163,213,206, 67,147, +150,154,237, 68, 41, 23,164,147, 12, 55,218,178, 63,191,147,250, 2,166,202,230, 94,212,133,108,249,147,172,124,125, 22,246, 35, + 59,186,168, 43,167, 0, 57, 54,222,130,142,243,188,148,109, 30,117, 2,237, 77,220, 8,196, 11, 70,210,172, 2,219, 73,103, 73, +232, 61, 78, 43, 83, 66,228,225,164, 67,220,150, 81,174,203, 87, 99, 38,209,179,201, 47,156,156,238, 45,223,158,223,195, 73, 98, + 93, 9,194,147,201,221,150, 20,197, 53,249,111,146, 83,205,218,182,241,156,108,189,163,131,222, 17,146,110,201,110,145,104, 88, +222,222,112,157, 47, 64, 46, 95, 37, 90, 66,156,173,155,134, 8,210,150,153,248,216,221,100,106,208,157, 79,152, 67, 16,194, 92, +137, 6, 68,198,252, 6, 72, 24, 75,192,204,112,249,179,213, 38,105,226,123,100, 31, 46,185, 91,206, 41,163, 19,121, 8,182,131, +103, 13, 75, 41,163,212,194,230,139,198, 69,190, 94, 18,162, 34, 74,244, 54,196,110,163,153, 78,107,182,254,154,104,146, 38,154, +106,243, 95, 94,197,239,111, 35, 33,238, 60, 95,238, 13, 17,104,181,174, 15,119,184, 37,210, 13,183,196, 54,190,139, 54, 27,231, +171, 56, 58,106,232, 67, 92,185, 13, 33,176,160,119,111,126,245,243,238,254, 12,100, 37, 30, 97, 18, 18, 8,191,167,152, 8,193, +194,139,146,233,133, 71,183,167, 70,208,155, 22,116, 61,212, 35, 82,222,144, 55,211,253, 6,159,182,221,199,186, 11, 18,229,103, + 31,207,130,215,147,121,200,153,105,112, 91, 68,171, 5,239,239, 3, 57,107,182,247,160, 14, 79,243,201, 5,199,219,225,249,217, +105, 83,130, 73,165,251,143, 57,115,101, 66, 95, 6,181,244, 62,144, 6,176,237,145,153,220,145, 76,245, 37,237, 9,129,241,133, +129, 93,221, 64, 19, 62,252,117, 66, 85, 33, 4, 71,193, 99, 28,126, 95, 76, 94,166,222, 4,193,139, 36,220, 35, 25, 56,222,119, +151, 72, 25,121, 6, 49,176, 72, 83,243, 30,151,132, 34,204,134,192, 58, 68, 55,195, 33,100,156,114, 68, 41,213,201, 70,246,255, + 90,167, 94, 75,157, 59,114,122,192,247, 46, 12,228, 80, 59, 86, 45, 24,129, 49,174,130, 8, 30, 68,152, 49,173,138,134, 76,252, +171,209, 64, 66, 72, 34,155, 70, 49, 76,149,147,249,252,128, 6, 47, 6, 69,137,241, 3,250,204,153, 71, 72, 68, 95,112,243,115, +246, 78,185,117,205, 92, 31, 36,128,153, 11,215, 26,231,104, 80,155,177,189,187, 44,126,203,141,205,253,152,161, 8, 57,121,202, +221,180,190, 37,209, 12, 1, 57, 3,251,123,199,245,219, 64,137,192,191,191,124,224, 47,223,119,252,248,131,134,190, 88,150,121, + 24, 3,199,219,161,135,249, 18,150, 97,135,136,125, 46,205, 15,238,137,124,129, 84, 19, 89,243,207,205,108, 37, 96,129,208,225, +225, 44, 70,210,148, 49,225, 76, 44, 5, 28, 52,133, 27,203,159,179,136,143, 91,192, 6,238, 95,162,106, 97,122,170,143,123,169, + 95, 10,188, 69, 29,103,108,251, 59,142,227, 19,182,125,215, 44,244,188,185,127,187,241, 43,220, 33,142, 7,228,140,149,158,141, +153, 77,232,181, 84, 93, 65, 54, 13,123,186,202, 11,173,158,110, 40, 51,134, 22,115,127, 17,195, 87,213,118, 95,181,168, 53,150, + 60,160, 90,228,148,148,208,116, 28,193,119,204, 41, 51,147, 61,137, 15, 6,198,109,177, 56, 96,159, 2, 69,136,226,137,107,213, +227,162,236, 88,149, 40,118,109,186,207,143, 68, 12, 35, 7, 39,113, 4, 80,145,185,232,241,198,138,132, 90, 35, 36,222,240,153, +191,192,141, 80, 6, 99,208, 51, 52, 40,154, 55,131, 66,252,182,215, 54,132, 54,209,132, 41,198,190, 12, 32,148, 94, 70,101,249, +247,246, 64,239,215,228,125,112,144,241,226, 52, 4,113, 76,206, 80,107, 21,206,120,115,120, 94,207,156, 25, 49, 60,161,100, 29, +118, 22,130,152,173,250, 40,181, 84,114,156,102, 22, 4,128, 92, 27, 61,139,106, 43,110,108, 3,227,149, 18,210, 47,181,249, 26, +201, 26, 81, 67, 34, 66, 0,101,150,217,163,166,109, 64, 90,127,117,219,211,143, 85, 6, 59,110,202, 2,243, 72, 48,189,122,171, +226, 74, 14, 43,208,238,183, 80,245,231,219,182,221, 27,228,169, 40, 10,168, 36, 34,218, 36,127,158, 39,182,156,209,153,116, 89, +174,230,211,191, 17, 50, 53, 35, 68, 47,254,255,159,208,210,246, 3,165,114,118, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130, 0}; diff --git a/source/blender/editors/space_clip/clip_ops.c b/source/blender/editors/space_clip/clip_ops.c index 491014357e4..74dd5e72014 100644 --- a/source/blender/editors/space_clip/clip_ops.c +++ b/source/blender/editors/space_clip/clip_ops.c @@ -201,7 +201,7 @@ void CLIP_OT_open(wmOperatorType *ot) { /* identifiers */ ot->name= "Open Clip"; - ot->description= "Open clip"; + ot->description= "Load a sequence of frames or a movie file."; ot->idname= "CLIP_OT_open"; /* api callbacks */ From 1db55215d0649bc687fb97301981d442d4ea3c61 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 13 Dec 2011 19:40:49 +0000 Subject: [PATCH 28/70] Do not use a dot in the end of descriptions --- source/blender/editors/space_clip/clip_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_clip/clip_ops.c b/source/blender/editors/space_clip/clip_ops.c index 74dd5e72014..34726732a17 100644 --- a/source/blender/editors/space_clip/clip_ops.c +++ b/source/blender/editors/space_clip/clip_ops.c @@ -201,7 +201,7 @@ void CLIP_OT_open(wmOperatorType *ot) { /* identifiers */ ot->name= "Open Clip"; - ot->description= "Load a sequence of frames or a movie file."; + ot->description= "Load a sequence of frames or a movie file"; ot->idname= "CLIP_OT_open"; /* api callbacks */ From a7823dda6941420ba1317ac3682c8b563a47023c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 13 Dec 2011 22:30:23 +0000 Subject: [PATCH 29/70] fix for py noise doc string (not a show stopper :) ) --- source/blender/python/mathutils/mathutils_noise.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/python/mathutils/mathutils_noise.c b/source/blender/python/mathutils/mathutils_noise.c index bd490d62e94..09337d9a23b 100644 --- a/source/blender/python/mathutils/mathutils_noise.c +++ b/source/blender/python/mathutils/mathutils_noise.c @@ -720,7 +720,7 @@ PyDoc_STRVAR(M_Noise_voronoi_doc, " :arg exponent: The exponent for Minkovsky distance metric.\n" " :type exponent: float\n" " :return: A list of distances to the four closest features and their locations.\n" -" :rtype: [list of four floats, list of four :class:`mathutils.Vector`s]\n" +" :rtype: list of four floats, list of four :class:`mathutils.Vector`s\n" ); static PyObject *M_Noise_voronoi(PyObject *UNUSED(self), PyObject *args) { From 7d9a8c2308f2783062271eb99c18e8738b470d4d Mon Sep 17 00:00:00 2001 From: Jens Verwiebe Date: Wed, 14 Dec 2011 06:15:52 +0000 Subject: [PATCH 30/70] OSX: Add a framework-check for Jack to avoid crashes --- intern/audaspace/SConscript | 2 ++ intern/audaspace/intern/AUD_C-API.cpp | 12 ++++++++++++ 2 files changed, 14 insertions(+) diff --git a/intern/audaspace/SConscript b/intern/audaspace/SConscript index b8d5a56a625..27556060fca 100644 --- a/intern/audaspace/SConscript +++ b/intern/audaspace/SConscript @@ -25,6 +25,8 @@ if env['WITH_BF_JACK']: sources += env.Glob('jack/*.cpp') incs += ' jack ' + env['BF_JACK_INC'] defs.append('WITH_JACK') + if env['OURPLATFORM'] == 'darwin': + incs += ' ' + env['BF_BOOST_INC'] if env['WITH_BF_SNDFILE']: sources += env.Glob('sndfile/*.cpp') diff --git a/intern/audaspace/intern/AUD_C-API.cpp b/intern/audaspace/intern/AUD_C-API.cpp index 7455e24cdc0..2eab57765c7 100644 --- a/intern/audaspace/intern/AUD_C-API.cpp +++ b/intern/audaspace/intern/AUD_C-API.cpp @@ -78,6 +78,9 @@ #ifdef WITH_JACK #include "AUD_JackDevice.h" +#ifdef __APPLE__ +#include +#endif #endif @@ -137,8 +140,17 @@ int AUD_init(AUD_DeviceType device, AUD_DeviceSpecs specs, int buffersize) #endif #ifdef WITH_JACK case AUD_JACK_DEVICE: +#ifdef __APPLE__ + if (!boost::filesystem::exists("/Library/Frameworks/Jackmp.framework")){ + printf("Warning: Jack Framework not available\n"); + break; + } else { +#endif dev = new AUD_JackDevice("Blender", specs, buffersize); break; +#ifdef __APPLE__ + } +#endif #endif default: return false; From 6b652928a756a62356d96dc3a122b72530d77bb0 Mon Sep 17 00:00:00 2001 From: Jens Verwiebe Date: Wed, 14 Dec 2011 08:01:24 +0000 Subject: [PATCH 31/70] Cleanup for 42622 using struct stat instead boost --- intern/audaspace/SConscript | 2 -- intern/audaspace/intern/AUD_C-API.cpp | 8 +++----- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/intern/audaspace/SConscript b/intern/audaspace/SConscript index 27556060fca..b8d5a56a625 100644 --- a/intern/audaspace/SConscript +++ b/intern/audaspace/SConscript @@ -25,8 +25,6 @@ if env['WITH_BF_JACK']: sources += env.Glob('jack/*.cpp') incs += ' jack ' + env['BF_JACK_INC'] defs.append('WITH_JACK') - if env['OURPLATFORM'] == 'darwin': - incs += ' ' + env['BF_BOOST_INC'] if env['WITH_BF_SNDFILE']: sources += env.Glob('sndfile/*.cpp') diff --git a/intern/audaspace/intern/AUD_C-API.cpp b/intern/audaspace/intern/AUD_C-API.cpp index 2eab57765c7..c2a7677a400 100644 --- a/intern/audaspace/intern/AUD_C-API.cpp +++ b/intern/audaspace/intern/AUD_C-API.cpp @@ -78,9 +78,6 @@ #ifdef WITH_JACK #include "AUD_JackDevice.h" -#ifdef __APPLE__ -#include -#endif #endif @@ -141,8 +138,9 @@ int AUD_init(AUD_DeviceType device, AUD_DeviceSpecs specs, int buffersize) #ifdef WITH_JACK case AUD_JACK_DEVICE: #ifdef __APPLE__ - if (!boost::filesystem::exists("/Library/Frameworks/Jackmp.framework")){ - printf("Warning: Jack Framework not available\n"); + struct stat st; + if(stat("/Library/Frameworks/Jackmp.framework",&st) != 0){ + printf("Warning: Jack Framework not installed\n"); break; } else { #endif From b9614b0e523e3fd8c5584e07d6892383adcc9952 Mon Sep 17 00:00:00 2001 From: Joerg Mueller Date: Wed, 14 Dec 2011 08:38:21 +0000 Subject: [PATCH 32/70] Fix for Jens commit, otherwise OSX will crash without Jack as soon as audio access is tried. --- intern/audaspace/intern/AUD_C-API.cpp | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/intern/audaspace/intern/AUD_C-API.cpp b/intern/audaspace/intern/AUD_C-API.cpp index c2a7677a400..9100a277124 100644 --- a/intern/audaspace/intern/AUD_C-API.cpp +++ b/intern/audaspace/intern/AUD_C-API.cpp @@ -139,13 +139,16 @@ int AUD_init(AUD_DeviceType device, AUD_DeviceSpecs specs, int buffersize) case AUD_JACK_DEVICE: #ifdef __APPLE__ struct stat st; - if(stat("/Library/Frameworks/Jackmp.framework",&st) != 0){ - printf("Warning: Jack Framework not installed\n"); - break; - } else { + if(stat("/Library/Frameworks/Jackmp.framework", &st) != 0) + { + printf("Warning: Jack Framework not installed\n"); + // No break, fall through to default, to return false + } + else + { #endif - dev = new AUD_JackDevice("Blender", specs, buffersize); - break; + dev = new AUD_JackDevice("Blender", specs, buffersize); + break; #ifdef __APPLE__ } #endif From 3d5330f789c287666b875706c84228520473add5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 14 Dec 2011 21:08:08 +0000 Subject: [PATCH 33/70] vertex group changes, use more api functions more (some vertex group editing functions were copied about), also make some functions int oapi calls. - remove defgroup_find_index(), use BLI_findlink instead since they both work the same way. - move static function getNearestPointOnPlane() to BLI_math api function closest_to_plane_v3() - ED_vgroup_give_parray() added option to return an array where unselected verts are NULL (simplifies code & works for lattice when it didn't before). - more consistant error checking of ob->actdef. --- source/blender/blenkernel/BKE_deform.h | 2 +- source/blender/blenkernel/intern/deform.c | 122 +-- source/blender/blenlib/BLI_math_geom.h | 4 +- source/blender/blenlib/intern/math_geom.c | 37 +- source/blender/blenloader/intern/readfile.c | 4 +- source/blender/editors/object/object_vgroup.c | 870 +++++++----------- .../editors/sculpt_paint/paint_vertex.c | 20 +- .../blender/makesrna/intern/rna_object_api.c | 2 +- 8 files changed, 471 insertions(+), 590 deletions(-) diff --git a/source/blender/blenkernel/BKE_deform.h b/source/blender/blenkernel/BKE_deform.h index 9902b26e15b..9a27f292f36 100644 --- a/source/blender/blenkernel/BKE_deform.h +++ b/source/blender/blenkernel/BKE_deform.h @@ -43,7 +43,6 @@ struct MDeformVert; void defgroup_copy_list(struct ListBase *lb1, struct ListBase *lb2); struct bDeformGroup *defgroup_duplicate(struct bDeformGroup *ingroup); struct bDeformGroup *defgroup_find_name(struct Object *ob, const char *name); -int defgroup_find_index(struct Object *ob, struct bDeformGroup *dg); int *defgroup_flip_map(struct Object *ob, int *flip_map_len, int use_default); int *defgroup_flip_map_single(struct Object *ob, int *flip_map_len, int use_default, int defgroup); int defgroup_flip_index(struct Object *ob, int index, int use_default); @@ -66,6 +65,7 @@ void defvert_sync_mapped(struct MDeformVert *dvert_dst, const struct MDeformVert void defvert_remap (struct MDeformVert *dvert, int *map, const int map_len); void defvert_flip(struct MDeformVert *dvert, const int *flip_map, const int flip_map_len); void defvert_normalize(struct MDeformVert *dvert); +void defvert_normalize_lock(struct MDeformVert *dvert, const int def_nr_lock); /* utility function, note that 32 chars is the maximum string length since its only * used with defgroups currently */ diff --git a/source/blender/blenkernel/intern/deform.c b/source/blender/blenkernel/intern/deform.c index 94be15e27c0..4d3af172b22 100644 --- a/source/blender/blenkernel/intern/deform.c +++ b/source/blender/blenkernel/intern/deform.c @@ -163,33 +163,85 @@ void defvert_sync_mapped(MDeformVert *dvert_dst, const MDeformVert *dvert_src, /* be sure all flip_map values are valid */ void defvert_remap(MDeformVert *dvert, int *map, const int map_len) { - MDeformWeight *dw; - int i; - for (i=0, dw=dvert->dw; itotweight; i++, dw++) { + MDeformWeight *dw= dvert->dw; + unsigned int i; + for (i= dvert->totweight; i != 0; i--, dw++) { if (dw->def_nr < map_len) { dw->def_nr= map[dw->def_nr]; + + /* just incase */ + BLI_assert(dw->def_nr >= 0); } } } void defvert_normalize(MDeformVert *dvert) { - if (dvert->totweight<=0) { + if (dvert->totweight <= 0) { /* nothing */ } else if (dvert->totweight==1) { dvert->dw[0].weight= 1.0f; } else { - int i; - float tot= 0.0f; MDeformWeight *dw; - for (i=0, dw=dvert->dw; i < dvert->totweight; i++, dw++) - tot += dw->weight; + unsigned int i; + float tot_weight= 0.0f; - if (tot > 0.0f) { - for (i=0, dw=dvert->dw; i < dvert->totweight; i++, dw++) - dw->weight /= tot; + for (i= dvert->totweight, dw= dvert->dw; i != 0; i--, dw++) { + tot_weight += dw->weight; + } + + if (tot_weight > 0.0f) { + float scalar= 1.0f / tot_weight; + for (i= dvert->totweight, dw= dvert->dw; i != 0; i--, dw++) { + dw->weight *= scalar; + + /* incase of division errors with very low weights */ + CLAMP(dw->weight, 0.0f, 1.0f); + } + } + } +} + +void defvert_normalize_lock(MDeformVert *dvert, const int def_nr_lock) +{ + if (dvert->totweight <= 0) { + /* nothing */ + } + else if (dvert->totweight==1) { + dvert->dw[0].weight= 1.0f; + } + else { + MDeformWeight *dw_lock; + MDeformWeight *dw; + unsigned int i; + float tot_weight= 0.0f; + float lock_iweight= 1.0f; + + for (i= dvert->totweight, dw= dvert->dw; i != 0; i--, dw++) { + if(dw->def_nr != def_nr_lock) { + tot_weight += dw->weight; + } + else { + dw_lock= dw; + lock_iweight = (1.0f - dw_lock->weight); + CLAMP(lock_iweight, 0.0f, 1.0f); + } + } + + if (tot_weight > 0.0f) { + /* paranoid, should be 1.0 but incase of float error clamp anyway */ + + float scalar= (1.0f / tot_weight) * lock_iweight; + for (i= dvert->totweight, dw= dvert->dw; i != 0; i--, dw++) { + if(dw != dw_lock) { + dw->weight *= scalar; + + /* incase of division errors with very low weights */ + CLAMP(dw->weight, 0.0f, 1.0f); + } + } } } } @@ -227,7 +279,7 @@ bDeformGroup *defgroup_find_name(Object *ob, const char *name) int defgroup_name_index(Object *ob, const char *name) { /* Return the location of the named deform group within the list of - * deform groups. This function is a combination of defgroup_find_index and + * deform groups. This function is a combination of BLI_findlink and * defgroup_find_name. The other two could be called instead, but that * require looping over the vertexgroups twice. */ @@ -244,46 +296,6 @@ int defgroup_name_index(Object *ob, const char *name) return -1; } -int defgroup_find_index(Object *ob, bDeformGroup *dg) -{ - /* Fetch the location of this deform group - * within the linked list of deform groups. - * (this number is stored in the deform - * weights of the deform verts to link them - * to this deform group). - * - * note: this is zero based, ob->actdef starts at 1. - */ - - bDeformGroup *eg; - int def_nr; - - eg = ob->defbase.first; - def_nr = 0; - - /* loop through all deform groups */ - while (eg != NULL) { - - /* if the current deform group is - * the one we are after, return - * def_nr - */ - if (eg == dg) { - break; - } - ++def_nr; - eg = eg->next; - } - - /* if there was no deform group found then - * return -1 (should set up a nice symbolic - * constant for this) - */ - if (eg == NULL) return -1; - - return def_nr; -} - /* note, must be freed */ int *defgroup_flip_map(Object *ob, int *flip_map_len, int use_default) { @@ -540,9 +552,9 @@ MDeformWeight *defvert_find_index(const MDeformVert *dvert, const int defgroup) { if (dvert && defgroup >= 0) { MDeformWeight *dw = dvert->dw; - int i; + unsigned int i; - for (i=dvert->totweight; i>0; i--, dw++) { + for (i= dvert->totweight; i != 0; i--, dw++) { if (dw->def_nr == defgroup) { return dw; } @@ -626,7 +638,7 @@ void defvert_remove_group(MDeformVert *dvert, MDeformWeight *dw) */ if (dvert->totweight) { dw_new = MEM_mallocN(sizeof(MDeformWeight)*(dvert->totweight), __func__); - if (dvert->dw){ + if (dvert->dw) { memcpy(dw_new, dvert->dw, sizeof(MDeformWeight)*i); memcpy(dw_new+i, dvert->dw+i+1, sizeof(MDeformWeight)*(dvert->totweight-i)); MEM_freeN(dvert->dw); diff --git a/source/blender/blenlib/BLI_math_geom.h b/source/blender/blenlib/BLI_math_geom.h index d494d63f56b..27da6c1025d 100644 --- a/source/blender/blenlib/BLI_math_geom.h +++ b/source/blender/blenlib/BLI_math_geom.h @@ -65,7 +65,9 @@ float dist_to_plane_v3(const float p[3], const float plane_co[3], const float pl float dist_to_line_segment_v3(const float p[3], const float l1[3], const float l2[3]); float closest_to_line_v3(float r[3], const float p[3], const float l1[3], const float l2[3]); float closest_to_line_v2(float r[2], const float p[2], const float l1[2], const float l2[2]); -void closest_to_line_segment_v3(float r[3], const float p[3], const float l1[3], const float l2[3]); +void closest_to_line_segment_v3(float r[3], const float p[3], const float l1[3], const float l2[3]); +void closest_to_plane_v3(float r[3], const float plane_co[3], const float plane_no_unit[3], const float pt[3]); + float line_point_factor_v3(const float p[3], const float l1[3], const float l2[3]); float line_point_factor_v2(const float p[2], const float l1[2], const float l2[2]); diff --git a/source/blender/blenlib/intern/math_geom.c b/source/blender/blenlib/intern/math_geom.c index 382448ebb1c..ef04e5e9bce 100644 --- a/source/blender/blenlib/intern/math_geom.c +++ b/source/blender/blenlib/intern/math_geom.c @@ -209,33 +209,54 @@ float dist_to_line_segment_v2(const float v1[2], const float v2[2], const float } /* point closest to v1 on line v2-v3 in 2D */ -void closest_to_line_segment_v2(float closest[2], const float p[2], const float l1[2], const float l2[2]) +void closest_to_line_segment_v2(float close_r[2], const float p[2], const float l1[2], const float l2[2]) { float lambda, cp[2]; lambda= closest_to_line_v2(cp,p, l1, l2); if(lambda <= 0.0f) - copy_v2_v2(closest, l1); + copy_v2_v2(close_r, l1); else if(lambda >= 1.0f) - copy_v2_v2(closest, l2); + copy_v2_v2(close_r, l2); else - copy_v2_v2(closest, cp); + copy_v2_v2(close_r, cp); } /* point closest to v1 on line v2-v3 in 3D */ -void closest_to_line_segment_v3(float closest[3], const float v1[3], const float v2[3], const float v3[3]) +void closest_to_line_segment_v3(float close_r[3], const float v1[3], const float v2[3], const float v3[3]) { float lambda, cp[3]; lambda= closest_to_line_v3(cp,v1, v2, v3); if(lambda <= 0.0f) - copy_v3_v3(closest, v2); + copy_v3_v3(close_r, v2); else if(lambda >= 1.0f) - copy_v3_v3(closest, v3); + copy_v3_v3(close_r, v3); else - copy_v3_v3(closest, cp); + copy_v3_v3(close_r, cp); +} + +/* find the closest point on a plane to another point and store it in close_r + * close_r: return coordinate + * plane_co: a point on the plane + * plane_no_unit: the plane's normal, and d is the last number in the plane equation 0 = ax + by + cz + d + * pt: the point that you want the nearest of + */ + +// const float norm[3], const float coord[3], const float point[3], float dst_r[3] +void closest_to_plane_v3(float close_r[3], const float plane_co[3], const float plane_no_unit[3], const float pt[3]) +{ + float temp[3]; + float dotprod; + + sub_v3_v3v3(temp, pt, plane_co); + dotprod= dot_v3v3(temp, plane_no_unit); + + close_r[0] = pt[0] - (plane_no_unit[0] * dotprod); + close_r[1] = pt[1] - (plane_no_unit[1] * dotprod); + close_r[2] = pt[2] - (plane_no_unit[2] * dotprod); } /* signed distance from the point to the plane in 3D */ diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 1ada2448d86..36df6f76601 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -8725,9 +8725,9 @@ static void do_versions(FileData *fd, Library *lib, Main *main) } if(ob->soft && ob->soft->vertgroup==0) { bDeformGroup *locGroup = defgroup_find_name(ob, "SOFTGOAL"); - if(locGroup){ + if (locGroup) { /* retrieve index for that group */ - ob->soft->vertgroup = 1 + defgroup_find_index(ob, locGroup); + ob->soft->vertgroup = 1 + BLI_findindex(&ob->defbase, locGroup); } } } diff --git a/source/blender/editors/object/object_vgroup.c b/source/blender/editors/object/object_vgroup.c index 408558a30eb..7d63d7dc270 100644 --- a/source/blender/editors/object/object_vgroup.c +++ b/source/blender/editors/object/object_vgroup.c @@ -175,7 +175,7 @@ int ED_vgroup_data_create(ID *id) } } -static int ED_vgroup_give_parray(ID *id, MDeformVert ***dvert_arr, int *dvert_tot) +static int ED_vgroup_give_parray(ID *id, MDeformVert ***dvert_arr, int *dvert_tot, const short use_vert_sel) { *dvert_tot = 0; *dvert_arr = NULL; @@ -201,20 +201,39 @@ static int ED_vgroup_give_parray(ID *id, MDeformVert ***dvert_arr, int *dvert_to *dvert_tot = i; i = 0; - for (eve=em->verts.first; eve; eve=eve->next, i++) { - (*dvert_arr)[i] = CustomData_em_get(&em->vdata, eve->data, CD_MDEFORMVERT); + + if (use_vert_sel) { + for (eve=em->verts.first; eve; eve=eve->next, i++) { + (*dvert_arr)[i] = (eve->f & SELECT) ? + CustomData_em_get(&em->vdata, eve->data, CD_MDEFORMVERT) : NULL; + } + } + else { + for (eve=em->verts.first; eve; eve=eve->next, i++) { + (*dvert_arr)[i] = CustomData_em_get(&em->vdata, eve->data, CD_MDEFORMVERT); + } } return 1; } else if(me->dvert) { + MVert *mvert= me->mvert; + MDeformVert *dvert= me->dvert; int i; *dvert_tot= me->totvert; *dvert_arr= MEM_mallocN(sizeof(void*)*me->totvert, "vgroup parray from me"); - for (i=0; itotvert; i++) { - (*dvert_arr)[i] = me->dvert + i; + if (use_vert_sel) { + for (i=0; itotvert; i++) { + (*dvert_arr)[i] = (mvert[i].flag & SELECT) ? + &dvert[i] : NULL; + } + } + else { + for (i=0; itotvert; i++) { + (*dvert_arr)[i] = me->dvert + i; + } } return 1; @@ -231,11 +250,20 @@ static int ED_vgroup_give_parray(ID *id, MDeformVert ***dvert_arr, int *dvert_to lt= (lt->editlatt)? lt->editlatt->latt: lt; if(lt->dvert) { + BPoint *def= lt->def; *dvert_tot= lt->pntsu*lt->pntsv*lt->pntsw; *dvert_arr= MEM_mallocN(sizeof(void*)*(*dvert_tot), "vgroup parray from me"); - for (i=0; i<*dvert_tot; i++) { - (*dvert_arr)[i] = lt->dvert + i; + if (use_vert_sel) { + for (i=0; i<*dvert_tot; i++) { + (*dvert_arr)[i] = (def->f1 & SELECT) ? + <->dvert[i] : NULL; + } + } + else { + for (i=0; i<*dvert_tot; i++) { + (*dvert_arr)[i] = lt->dvert + i; + } } return 1; @@ -290,11 +318,11 @@ int ED_vgroup_copy_array(Object *ob, Object *ob_from) int defbase_tot= BLI_countlist(&ob->defbase); short new_vgroup= FALSE; - ED_vgroup_give_parray(ob_from->data, &dvert_array_from, &dvert_tot_from); - ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot); + ED_vgroup_give_parray(ob_from->data, &dvert_array_from, &dvert_tot_from, FALSE); + ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot, FALSE); if((dvert_array == NULL) && (dvert_array_from != NULL) && ED_vgroup_data_create(ob->data)) { - ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot); + ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot, FALSE); new_vgroup= TRUE; } @@ -316,7 +344,7 @@ int ED_vgroup_copy_array(Object *ob, Object *ob_from) if(defbase_tot_from < defbase_tot) { /* correct vgroup indices because the number of vgroups is being reduced. */ - int *remap= MEM_mallocN(sizeof(int) * (defbase_tot + 1), "ED_vgroup_copy_array"); + int *remap= MEM_mallocN(sizeof(int) * (defbase_tot + 1), __func__); for(i=0; i<=defbase_tot_from; i++) remap[i]= i; for(; i<=defbase_tot; i++) remap[i]= 0; /* can't use these, so disable */ @@ -343,160 +371,84 @@ int ED_vgroup_copy_array(Object *ob, Object *ob_from) return 1; } -/* for mesh in object mode - lattice can be in editmode */ -static void ED_vgroup_nr_vert_remove(Object *ob, int def_nr, int vertnum) -{ - /* This routine removes the vertex from the deform - * group with number def_nr. - * - * This routine is meant to be fast, so it is the - * responsibility of the calling routine to: - * a) test whether ob is non-NULL - * b) test whether ob is a mesh - * c) calculate def_nr - */ - - MDeformWeight *newdw; - MDeformVert *dvert= NULL; - int i, tot; - - /* get the deform vertices corresponding to the - * vertnum - */ - ED_vgroup_give_array(ob->data, &dvert, &tot); - - if(dvert==NULL) - return; - - dvert+= vertnum; - - /* for all of the deform weights in the - * deform vert - */ - for(i=dvert->totweight - 1 ; i>=0 ; i--){ - - /* if the def_nr is the same as the one - * for our weight group then remove it - * from this deform vert. - */ - if(dvert->dw[i].def_nr == def_nr) { - dvert->totweight--; - - /* if there are still other deform weights - * attached to this vert then remove this - * deform weight, and reshuffle the others - */ - if(dvert->totweight) { - newdw = MEM_mallocN(sizeof(MDeformWeight)*(dvert->totweight), - "deformWeight"); - if(dvert->dw){ - memcpy(newdw, dvert->dw, sizeof(MDeformWeight)*i); - memcpy(newdw+i, dvert->dw+i+1, - sizeof(MDeformWeight)*(dvert->totweight-i)); - MEM_freeN(dvert->dw); - } - dvert->dw=newdw; - } - /* if there are no other deform weights - * left then just remove the deform weight - */ - else { - MEM_freeN(dvert->dw); - dvert->dw = NULL; - break; - } - } - } - -} /* for Mesh in Object mode */ /* allows editmode for Lattice */ -static void ED_vgroup_nr_vert_add(Object *ob, int def_nr, int vertnum, float weight, int assignmode) +static void ED_vgroup_nr_vert_add(Object *ob, + const int def_nr, const int vertnum, + const float weight, const int assignmode) { /* add the vert to the deform group with the * specified number */ - MDeformVert *dv= NULL; - MDeformWeight *newdw; - int i, tot; + MDeformVert *dvert= NULL; + int tot; /* get the vert */ - ED_vgroup_give_array(ob->data, &dv, &tot); + ED_vgroup_give_array(ob->data, &dvert, &tot); - if(dv==NULL) + if(dvert==NULL) return; - + /* check that vertnum is valid before trying to get the relevant dvert */ if ((vertnum < 0) || (vertnum >= tot)) return; - else - dv += vertnum; - /* Lets first check to see if this vert is - * already in the weight group -- if so - * lets update it - */ - for(i=0; itotweight; i++){ - - /* if this weight cooresponds to the - * deform group, then add it using - * the assign mode provided + + if (dvert) { + MDeformVert *dv= &dvert[vertnum]; + MDeformWeight *dw; + + /* Lets first check to see if this vert is + * already in the weight group -- if so + * lets update it */ - if(dv->dw[i].def_nr == def_nr){ - + + dw= defvert_find_index(dv, def_nr); + + if (dw) { switch(assignmode) { case WEIGHT_REPLACE: - dv->dw[i].weight=weight; + dw->weight = weight; break; case WEIGHT_ADD: - dv->dw[i].weight+=weight; - if(dv->dw[i].weight >= 1.0f) - dv->dw[i].weight = 1.0f; + dw->weight += weight; + if(dw->weight >= 1.0f) + dw->weight = 1.0f; break; case WEIGHT_SUBTRACT: - dv->dw[i].weight-=weight; + dw->weight -= weight; /* if the weight is zero or less then * remove the vert from the deform group */ - if(dv->dw[i].weight <= 0.0f) - ED_vgroup_nr_vert_remove(ob, def_nr, vertnum); + if(dw->weight <= 0.0f) { + defvert_remove_group(dv, dw); + } break; } - return; } - } + else { + /* if the vert wasn't in the deform group then + * we must take a different form of action ... + */ - /* if the vert wasn't in the deform group then - * we must take a different form of action ... - */ + switch(assignmode) { + case WEIGHT_SUBTRACT: + /* if we are subtracting then we don't + * need to do anything + */ + return; - switch(assignmode) { - case WEIGHT_SUBTRACT: - /* if we are subtracting then we don't - * need to do anything - */ - return; + case WEIGHT_REPLACE: + case WEIGHT_ADD: + /* if we are doing an additive assignment, then + * we need to create the deform weight + */ - case WEIGHT_REPLACE: - case WEIGHT_ADD: - /* if we are doing an additive assignment, then - * we need to create the deform weight - */ - newdw = MEM_callocN(sizeof(MDeformWeight)*(dv->totweight+1), - "deformWeight"); - if(dv->dw){ - memcpy(newdw, dv->dw, sizeof(MDeformWeight)*dv->totweight); - MEM_freeN(dv->dw); + /* we checked if the vertex was added before so no need to test again, simply add */ + defvert_add_index_notest(dv, def_nr, weight); + } } - dv->dw=newdw; - - dv->dw[dv->totweight].weight=weight; - dv->dw[dv->totweight].def_nr=def_nr; - - dv->totweight++; - break; } } @@ -506,7 +458,7 @@ void ED_vgroup_vert_add(Object *ob, bDeformGroup *dg, int vertnum, float weight, /* add the vert to the deform group with the * specified assign mode */ - int def_nr; + const int def_nr= BLI_findindex(&ob->defbase, dg); MDeformVert *dv= NULL; int tot; @@ -514,7 +466,6 @@ void ED_vgroup_vert_add(Object *ob, bDeformGroup *dg, int vertnum, float weight, /* get the deform group number, exit if * it can't be found */ - def_nr = defgroup_find_index(ob, dg); if(def_nr < 0) return; /* if there's no deform verts then create some, @@ -533,19 +484,34 @@ void ED_vgroup_vert_remove(Object *ob, bDeformGroup *dg, int vertnum) /* This routine removes the vertex from the specified * deform group. */ - const int def_nr= defgroup_find_index(ob, dg); - if(def_nr < 0) - return; - ED_vgroup_nr_vert_remove(ob, def_nr, vertnum); + /* TODO, this is slow in a loop, better pass def_nr directly, but leave for later... - campbell */ + const int def_nr= BLI_findindex(&ob->defbase, dg); + + if(def_nr != -1) { + MDeformVert *dvert= NULL; + int tot; + + /* get the deform vertices corresponding to the + * vertnum + */ + ED_vgroup_give_array(ob->data, &dvert, &tot); + + if(dvert) { + MDeformVert *dv= &dvert[vertnum]; + MDeformWeight *dw; + + dw= defvert_find_index(dv, def_nr); + defvert_remove_group(dv, dw); /* dw can be NULL */ + } + } } -static float get_vert_def_nr(Object *ob, int def_nr, int vertnum) +static float get_vert_def_nr(Object *ob, const int def_nr, const int vertnum) { - MDeformVert *dvert= NULL; + MDeformVert *dv= NULL; EditVert *eve; Mesh *me; - int i; /* get the deform vertices corresponding to the vertnum */ if(ob->type==OB_MESH) { @@ -556,14 +522,13 @@ static float get_vert_def_nr(Object *ob, int def_nr, int vertnum) if(!eve) { return 0.0f; } - dvert= CustomData_em_get(&me->edit_mesh->vdata, eve->data, CD_MDEFORMVERT); - vertnum= 0; + dv= CustomData_em_get(&me->edit_mesh->vdata, eve->data, CD_MDEFORMVERT); } else { if(vertnum >= me->totvert) { return 0.0f; } - dvert = me->dvert; + dv = &me->dvert[vertnum]; } } else if(ob->type==OB_LATTICE) { @@ -573,30 +538,27 @@ static float get_vert_def_nr(Object *ob, int def_nr, int vertnum) if(vertnum >= lt->pntsu*lt->pntsv*lt->pntsw) { return 0.0f; } - dvert = lt->dvert; + dv = <->dvert[vertnum]; } } - if(dvert==NULL) - return -1; - - dvert += vertnum; - - for(i=dvert->totweight-1 ; i>=0 ; i--) - if(dvert->dw[i].def_nr == def_nr) - return dvert->dw[i].weight; + if (dv) { + MDeformWeight *dw= defvert_find_index(dv, def_nr); + if (dw) { + return dw->weight; + } + } return -1; } float ED_vgroup_vert_weight(Object *ob, bDeformGroup *dg, int vertnum) { - int def_nr; + const int def_nr= BLI_findindex(&ob->defbase, dg); - if(!ob) return -1; - - def_nr = defgroup_find_index(ob, dg); - if(def_nr < 0) return -1; + if(def_nr == -1) { + return -1; + } return get_vert_def_nr(ob, def_nr, vertnum); } @@ -611,26 +573,24 @@ void ED_vgroup_select_by_name(Object *ob, const char *name) /* only in editmode */ static void vgroup_select_verts(Object *ob, int select) { - EditVert *eve; - MDeformVert *dvert; - int i; + const int def_nr= ob->actdef-1; + MDeformVert *dv; + + if (!BLI_findlink(&ob->defbase, def_nr)) { + return; + } if(ob->type == OB_MESH) { Mesh *me= ob->data; EditMesh *em = BKE_mesh_get_editmesh(me); + EditVert *eve; - for(eve=em->verts.first; eve; eve=eve->next){ - dvert= CustomData_em_get(&em->vdata, eve->data, CD_MDEFORMVERT); - - if(dvert && dvert->totweight){ - for(i=0; itotweight; i++){ - if(dvert->dw[i].def_nr == (ob->actdef-1)){ - if(!eve->h) { - if(select) eve->f |= SELECT; - else eve->f &= ~SELECT; - } - break; - } + for (eve=em->verts.first; eve; eve=eve->next) { + if (!eve->h) { + dv= CustomData_em_get(&em->vdata, eve->data, CD_MDEFORMVERT); + if (defvert_find_index(dv, def_nr)) { + if (select) eve->f |= SELECT; + else eve->f &= ~SELECT; } } } @@ -647,17 +607,13 @@ static void vgroup_select_verts(Object *ob, int select) BPoint *bp; int a, tot; - dvert= lt->dvert; + dv= lt->dvert; tot= lt->pntsu*lt->pntsv*lt->pntsw; - for(a=0, bp= lt->def; atotweight; i++){ - if(dvert->dw[i].def_nr == (ob->actdef-1)) { - if(select) bp->f1 |= SELECT; - else bp->f1 &= ~SELECT; - - break; - } + for(a=0, bp= lt->def; af1 |= SELECT; + else bp->f1 &= ~SELECT; } } } @@ -668,8 +624,8 @@ static void vgroup_duplicate(Object *ob) { bDeformGroup *dg, *cdg; char name[sizeof(dg->name)]; - MDeformWeight *org, *cpy; - MDeformVert *dvert, **dvert_array=NULL; + MDeformWeight *dw_org, *dw_cpy; + MDeformVert **dvert_array=NULL; int i, idg, icdg, dvert_tot=0; dg = BLI_findlink(&ob->defbase, (ob->actdef-1)); @@ -693,53 +649,51 @@ static void vgroup_duplicate(Object *ob) ob->actdef = BLI_countlist(&ob->defbase); icdg = (ob->actdef-1); - ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot); - - if(!dvert_array) - return; + /* TODO, we might want to allow only copy selected verts here? - campbell */ + ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot, FALSE); - for(i = 0; i < dvert_tot; i++) { - dvert = dvert_array[i]; - org = defvert_find_index(dvert, idg); - if(org) { - float weight = org->weight; - /* defvert_verify_index re-allocs org so need to store the weight first */ - cpy = defvert_verify_index(dvert, icdg); - cpy->weight = weight; + if (dvert_array) { + for(i = 0; i < dvert_tot; i++) { + MDeformVert *dv= dvert_array[i]; + dw_org = defvert_find_index(dv, idg); + if(dw_org) { + /* defvert_verify_index re-allocs org so need to store the weight first */ + dw_cpy = defvert_verify_index(dv, icdg); + dw_cpy->weight = dw_org->weight; + } } - } - MEM_freeN(dvert_array); + MEM_freeN(dvert_array); + } } static void vgroup_normalize(Object *ob) { - bDeformGroup *dg; MDeformWeight *dw; - MDeformVert *dvert, **dvert_array=NULL; - int i, def_nr, dvert_tot=0; - + MDeformVert *dv, **dvert_array=NULL; + int i, dvert_tot=0; + const int def_nr= ob->actdef-1; + Mesh *me = ob->data; - MVert *mvert = me->mvert; const int use_vert_sel= (me->editflag & ME_EDIT_VERT_SEL) != 0; - ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot); + if (!BLI_findlink(&ob->defbase, def_nr)) { + return; + } - dg = BLI_findlink(&ob->defbase, (ob->actdef-1)); + ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot, use_vert_sel); - if(dg) { + if (dvert_array) { float weight_max = 0.0f; - def_nr= ob->actdef-1; - for(i = 0; i < dvert_tot; i++) { - - if(use_vert_sel && !(mvert[i].flag & SELECT)) { + + /* incase its not selected */ + if (!(dv = dvert_array[i])) { continue; } - dvert = dvert_array[i]; - dw = defvert_find_index(dvert, def_nr); + dw = defvert_find_index(dv, def_nr); if(dw) { weight_max = MAX2(dw->weight, weight_max); } @@ -748,12 +702,12 @@ static void vgroup_normalize(Object *ob) if(weight_max > 0.0f) { for(i = 0; i < dvert_tot; i++) { - if(use_vert_sel && !(mvert[i].flag & SELECT)) { + /* incase its not selected */ + if (!(dv = dvert_array[i])) { continue; } - dvert = dvert_array[i]; - dw = defvert_find_index(dvert, def_nr); + dw = defvert_find_index(dv, def_nr); if(dw) { dw->weight /= weight_max; @@ -762,9 +716,9 @@ static void vgroup_normalize(Object *ob) } } } - } - if (dvert_array) MEM_freeN(dvert_array); + MEM_freeN(dvert_array); + } } /* This adds the indices of vertices to a list if they are not already present @@ -875,47 +829,20 @@ static void getSingleCoordinate(MVert *points, int count, float coord[3]) mul_v3_fl(coord, 1.0f/count); } -/* find the closest point on a plane to another point and store it in dst */ -/* coord is a point on the plane */ -/* point is the point that you want the nearest of */ -/* norm is the plane's normal, and d is the last number in the plane equation 0 = ax + by + cz + d */ -static void getNearestPointOnPlane(const float norm[3], const float coord[3], const float point[3], float dst_r[3]) -{ - float temp[3]; - float dotprod; - - sub_v3_v3v3(temp, point, coord); - dotprod= dot_v3v3(temp, norm); - - dst_r[0] = point[0] - (norm[0] * dotprod); - dst_r[1] = point[1] - (norm[1] * dotprod); - dst_r[2] = point[2] - (norm[2] * dotprod); -} - -/* distance of two vectors a and b of size length */ -static float distance(float* a, float *b, int length) -{ - int i; - float sum = 0; - for(i = 0; i < length; i++) { - sum += (b[i]-a[i])*(b[i]-a[i]); - } - return sqrt(sum); -} - /* given a plane and a start and end position, compute the amount of vertical distance relative to the plane and store it in dists, then get the horizontal and vertical change and store them in changes */ -static void getVerticalAndHorizontalChange(float *norm, float d, float *coord, float *start, float distToStart, +static void getVerticalAndHorizontalChange(const float norm[3], float d, const float coord[3], + const float start[3], float distToStart, float *end, float (*changes)[2], float *dists, int index) { // A=Q-((Q-P).N)N // D = (a*x0 + b*y0 +c*z0 +d) - float projA[3] = {0}, projB[3] = {0}; + float projA[3], projB[3]; - getNearestPointOnPlane(norm, coord, start, projA); - getNearestPointOnPlane(norm, coord, end, projB); + closest_to_plane_v3(projA, coord, norm, start); + closest_to_plane_v3(projB, coord, norm, end); // (vertical and horizontal refer to the plane's y and xz respectively) // vertical distance dists[index] = norm[0]*end[0] + norm[1]*end[1] + norm[2]*end[2] + d; @@ -923,7 +850,7 @@ static void getVerticalAndHorizontalChange(float *norm, float d, float *coord, f changes[index][0] = dists[index] - distToStart; //printf("vc %f %f\n", distance(end, projB, 3)-distance(start, projA, 3), changes[index][0]); // horizontal change - changes[index][1] = distance(projA, projB, 3); + changes[index][1] = len_v3v3(projA, projB); } // I need the derived mesh to be forgotten so the positions are recalculated with weight changes (see dm_deform_recalc) @@ -965,11 +892,14 @@ static void moveCloserToDistanceFromPlane(Scene *scene, Object *ob, Mesh *me, in int totweight = dvert->totweight; float oldw = 0; float oldPos[3] = {0}; - float vc, hc, dist = 0.0f /* Not necessary, but quites down gcc warnings! */; + float vc, hc, dist; int i, k; float (*changes)[2] = MEM_mallocN(sizeof(float *)*totweight*2, "vertHorzChange"); float *dists = MEM_mallocN(sizeof(float)*totweight, "distance"); - int *upDown = MEM_callocN(sizeof(int)*totweight, "upDownTracker");// track if up or down moved it closer for each bone + + /* track if up or down moved it closer for each bone */ + int *upDown = MEM_callocN(sizeof(int)*totweight, "upDownTracker"); + int *dwIndices = MEM_callocN(sizeof(int)*totweight, "dwIndexTracker"); float distToStart; int bestIndex = 0; @@ -1170,136 +1100,82 @@ static void vgroup_fix(Scene *scene, Object *ob, float distToBe, float strength, static void vgroup_levels(Object *ob, float offset, float gain) { - bDeformGroup *dg; MDeformWeight *dw; - MDeformVert *dvert, **dvert_array=NULL; - int i, def_nr, dvert_tot=0; - + MDeformVert *dv, **dvert_array=NULL; + int i, dvert_tot=0; + const int def_nr= ob->actdef-1; + Mesh *me = ob->data; - MVert *mvert = me->mvert; const int use_vert_sel= (me->editflag & ME_EDIT_VERT_SEL) != 0; - ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot); - - dg = BLI_findlink(&ob->defbase, (ob->actdef-1)); - - if(dg) { - def_nr= ob->actdef-1; - + if (!BLI_findlink(&ob->defbase, def_nr)) { + return; + } + + ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot, use_vert_sel); + + if (dvert_array) { for(i = 0; i < dvert_tot; i++) { - - if(use_vert_sel && !(mvert[i].flag & SELECT)) { + + /* incase its not selected */ + if (!(dv = dvert_array[i])) { continue; } - dvert = dvert_array[i]; - dw = defvert_find_index(dvert, def_nr); + dw = defvert_find_index(dv, def_nr); if(dw) { dw->weight = gain * (dw->weight + offset); - + CLAMP(dw->weight, 0.0f, 1.0f); } } - } - if (dvert_array) MEM_freeN(dvert_array); + MEM_freeN(dvert_array); + } } /* TODO - select between groups */ static void vgroup_normalize_all(Object *ob, int lock_active) { - MDeformWeight *dw, *dw_act; - MDeformVert *dvert, **dvert_array=NULL; + MDeformVert *dv, **dvert_array=NULL; int i, dvert_tot=0; - float tot_weight; + const int def_nr= ob->actdef-1; - Mesh *me = ob->data; - MVert *mvert = me->mvert; const int use_vert_sel= (me->editflag & ME_EDIT_VERT_SEL) != 0; - ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot); + if (lock_active && !BLI_findlink(&ob->defbase, def_nr)) { + return; + } - if(dvert_array) { + ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot, use_vert_sel); + + if (dvert_array) { if(lock_active) { - int def_nr= ob->actdef-1; for(i = 0; i < dvert_tot; i++) { - float lock_iweight= 1.0f; - int j; - - if(use_vert_sel && !(mvert[i].flag & SELECT)) { + /* incase its not selected */ + if (!(dv = dvert_array[i])) { continue; } - tot_weight= 0.0f; - dw_act= NULL; - dvert = dvert_array[i]; - - j= dvert->totweight; - while(j--) { - dw= dvert->dw + j; - - if(dw->def_nr==def_nr) { - dw_act= dw; - lock_iweight = (1.0f - dw_act->weight); - } - else { - tot_weight += dw->weight; - } - } - - if(tot_weight) { - j= dvert->totweight; - while(j--) { - dw= dvert->dw + j; - if(dw == dw_act) { - if (dvert->totweight==1) { - dw_act->weight= 1.0f; /* no other weights, set to 1.0 */ - } - } else { - if(dw->weight > 0.0f) - dw->weight = (dw->weight / tot_weight) * lock_iweight; - } - - /* incase of division errors with very low weights */ - CLAMP(dw->weight, 0.0f, 1.0f); - } - } + defvert_normalize_lock(dv, def_nr); } } else { for(i = 0; i < dvert_tot; i++) { - int j; - - if(use_vert_sel && !(mvert[i].flag & SELECT)) { + + /* incase its not selected */ + if (!(dv = dvert_array[i])) { continue; } - tot_weight= 0.0f; - dvert = dvert_array[i]; - - j= dvert->totweight; - while(j--) { - dw= dvert->dw + j; - tot_weight += dw->weight; - } - - if(tot_weight) { - j= dvert->totweight; - while(j--) { - dw= dvert->dw + j; - dw->weight /= tot_weight; - - /* incase of division errors with very low weights */ - CLAMP(dw->weight, 0.0f, 1.0f); - } - } + defvert_normalize(dv); } } - } - if (dvert_array) MEM_freeN(dvert_array); + MEM_freeN(dvert_array); + } } @@ -1332,68 +1208,64 @@ static void vgroup_lock_all(Object *ob, int action) } } -static void vgroup_invert(Object *ob, int auto_assign, int auto_remove) +static void vgroup_invert(Object *ob, const short auto_assign, const short auto_remove) { - bDeformGroup *dg; MDeformWeight *dw; - MDeformVert *dvert, **dvert_array=NULL; - int i, def_nr, dvert_tot=0; + MDeformVert *dv, **dvert_array=NULL; + int i, dvert_tot=0; + const int def_nr= ob->actdef-1; Mesh *me = ob->data; - MVert *mvert = me->mvert; const int use_vert_sel= (me->editflag & ME_EDIT_VERT_SEL) != 0; - ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot); - - dg = BLI_findlink(&ob->defbase, (ob->actdef-1)); - - if(dg) { - def_nr= ob->actdef-1; + if (!BLI_findlink(&ob->defbase, def_nr)) { + return; + } + ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot, use_vert_sel); + if (dvert_array) { for(i = 0; i < dvert_tot; i++) { - - if(use_vert_sel && !(mvert[i].flag & SELECT)) { + + /* incase its not selected */ + if (!(dv = dvert_array[i])) { continue; } - dvert = dvert_array[i]; - if(auto_assign) { - dw= defvert_verify_index(dvert, def_nr); - } else { - dw= defvert_find_index(dvert, def_nr); + if (auto_assign) { + dw= defvert_verify_index(dv, def_nr); + } + else { + dw= defvert_find_index(dv, def_nr); } if(dw) { - dw->weight = 1.0f-dw->weight; + dw->weight = 1.0f - dw->weight; if(auto_remove && dw->weight <= 0.0f) { - /* could have a faster function for this */ - ED_vgroup_nr_vert_remove(ob, def_nr, i); + defvert_remove_group(dv, dw); } } } - } - if (dvert_array) MEM_freeN(dvert_array); + MEM_freeN(dvert_array); + } } static void vgroup_blend(Object *ob) { - bDeformGroup *dg; MDeformWeight *dw; MDeformVert *dvert_array=NULL, *dvert; - int i, def_nr, dvert_tot=0; + int i, dvert_tot=0; + const int def_nr= ob->actdef-1; EditMesh *em= BKE_mesh_get_editmesh(((Mesh *)ob->data)); // ED_vgroup_give_array(ob->data, &dvert_array, &dvert_tot); - if(em==NULL) + if (em==NULL) return; - dg = BLI_findlink(&ob->defbase, (ob->actdef-1)); - - if(dg) { + if (BLI_findlink(&ob->defbase, def_nr)) { int sel1, sel2; int i1, i2; @@ -1402,8 +1274,6 @@ static void vgroup_blend(Object *ob) float *vg_weights; float *vg_users; - def_nr= ob->actdef-1; - i= 0; for(eve= em->verts.first; eve; eve= eve->next) eve->tmp.l= i++; @@ -1453,6 +1323,9 @@ static void vgroup_blend(Object *ob) dw= defvert_verify_index(dvert, def_nr); dw->weight= vg_weights[i] / (float)vg_users[i]; + + /* incase of division errors */ + CLAMP(dw->weight, 0.0f, 1.0f); } i++; @@ -1462,83 +1335,85 @@ static void vgroup_blend(Object *ob) } } -static void vgroup_clean(Object *ob, float eul, int keep_single) +static void vgroup_clean(Object *ob, const float epsilon, int keep_single) { - bDeformGroup *dg; MDeformWeight *dw; - MDeformVert *dvert, **dvert_array=NULL; - int i, def_nr, dvert_tot=0; + MDeformVert *dv, **dvert_array=NULL; + int i, dvert_tot=0; + const int def_nr= ob->actdef-1; Mesh *me = ob->data; - MVert *mvert = me->mvert; const int use_vert_sel= (me->editflag & ME_EDIT_VERT_SEL) != 0; - ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot); - - /* only the active group */ - dg = BLI_findlink(&ob->defbase, (ob->actdef-1)); - if(dg) { - def_nr= ob->actdef-1; - - for(i = 0; i < dvert_tot; i++) { - - if(use_vert_sel && !(mvert[i].flag & SELECT)) { - continue; - } - dvert = dvert_array[i]; - - dw= defvert_find_index(dvert, def_nr); - - if(dw) { - if(dw->weight <= eul) - if(keep_single==FALSE || dvert->totweight > 1) - ED_vgroup_nr_vert_remove(ob, def_nr, i); - } - } + if (!BLI_findlink(&ob->defbase, def_nr)) { + return; } - if (dvert_array) MEM_freeN(dvert_array); + ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot, use_vert_sel); + + if (dvert_array) { + /* only the active group */ + for(i = 0; i < dvert_tot; i++) { + + /* incase its not selected */ + if (!(dv = dvert_array[i])) { + continue; + } + + dw= defvert_find_index(dv, def_nr); + + if (dw) { + if (dw->weight <= epsilon) { + if(keep_single==FALSE || dv->totweight > 1) { + defvert_remove_group(dv, dw); /* dw can be NULL */ + } + } + } + } + + MEM_freeN(dvert_array); + } } -static void vgroup_clean_all(Object *ob, float eul, int keep_single) +static void vgroup_clean_all(Object *ob, const float epsilon, const int keep_single) { - - MDeformWeight *dw; - MDeformVert *dvert, **dvert_array=NULL; + MDeformVert **dvert_array=NULL; int i, dvert_tot=0; Mesh *me = ob->data; - MVert *mvert = me->mvert; const int use_vert_sel= (me->editflag & ME_EDIT_VERT_SEL) != 0; - ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot); + ED_vgroup_give_parray(ob->data, &dvert_array, &dvert_tot, use_vert_sel); + + if (dvert_array) { + MDeformVert *dv; + MDeformWeight *dw; - if(dvert_array) { for(i = 0; i < dvert_tot; i++) { int j; - - if(use_vert_sel && !(mvert[i].flag & SELECT)) { + + /* incase its not selected */ + if (!(dv = dvert_array[i])) { continue; } - dvert = dvert_array[i]; - j= dvert->totweight; + j= dv->totweight; while(j--) { - if(keep_single && dvert->totweight == 1) + if(keep_single && dv->totweight == 1) break; - dw= dvert->dw + j; - - if(dw->weight <= eul) - ED_vgroup_nr_vert_remove(ob, dw->def_nr, i); + dw= dv->dw + j; + if(dw->weight <= epsilon) { + defvert_remove_group(dv, dw); + } } } - } - if (dvert_array) MEM_freeN(dvert_array); + MEM_freeN(dvert_array); + } } @@ -1716,14 +1591,12 @@ void ED_vgroup_mirror(Object *ob, const short mirror_weights, const short flip_v } } else if (ob->type == OB_LATTICE) { - Lattice *lt= ob->data; + Lattice *lt= vgroup_edit_lattice(ob); int i1, i2; int u, v, w; int pntsu_half; /* half but found up odd value */ - if(lt->editlatt) lt= lt->editlatt->latt; - if(lt->pntsu == 1 || lt->dvert == NULL) { goto cleanup; } @@ -1825,34 +1698,37 @@ static void vgroup_delete_object_mode(Object *ob, bDeformGroup *dg) { MDeformVert *dvert_array=NULL; int i, e, dvert_tot=0; - const int dg_index= BLI_findindex(&ob->defbase, dg); + const int def_nr= BLI_findindex(&ob->defbase, dg); + + assert(def_nr > -1); - assert(dg_index > -1); - ED_vgroup_give_array(ob->data, &dvert_array, &dvert_tot); if(dvert_array) { - MDeformVert *dvert; - for(i= 0, dvert= dvert_array; i < dvert_tot; i++, dvert++) { - ED_vgroup_vert_remove(ob, dg, i); /* ok if the dg isnt in this dvert, will continue silently */ + MDeformVert *dv; + for(i= 0, dv= dvert_array; i < dvert_tot; i++, dv++) { + MDeformWeight *dw; + + dw= defvert_find_index(dv, def_nr); + defvert_remove_group(dv, dw); /* dw can be NULL */ } - for(i= 0, dvert= dvert_array; i < dvert_tot; i++, dvert++) { - for(e = 0; e < dvert->totweight; e++) { - if(dvert->dw[e].def_nr > dg_index) { - dvert->dw[e].def_nr--; + for(i= 0, dv= dvert_array; i < dvert_tot; i++, dv++) { + for(e = 0; e < dv->totweight; e++) { + if(dv->dw[e].def_nr > def_nr) { + dv->dw[e].def_nr--; } } } } - vgroup_delete_update_users(ob, dg_index + 1); + vgroup_delete_update_users(ob, def_nr + 1); /* Remove the group */ BLI_freelinkN(&ob->defbase, dg); /* Update the active deform index if necessary */ - if(ob->actdef > dg_index) + if(ob->actdef > def_nr) ob->actdef--; if(ob->actdef < 1 && ob->defbase.first) ob->actdef= 1; @@ -1864,41 +1740,19 @@ static void vgroup_delete_object_mode(Object *ob, bDeformGroup *dg) static void vgroup_active_remove_verts(Object *ob, const int allverts, bDeformGroup *dg) { EditVert *eve; - MDeformVert *dvert; - MDeformWeight *newdw; - bDeformGroup *eg; - int i; + MDeformVert *dv; + const int def_nr= BLI_findindex(&ob->defbase, dg); if(ob->type == OB_MESH) { Mesh *me= ob->data; EditMesh *em = BKE_mesh_get_editmesh(me); for(eve=em->verts.first; eve; eve=eve->next){ - dvert= CustomData_em_get(&em->vdata, eve->data, CD_MDEFORMVERT); - - if(dvert && dvert->dw && ((eve->f & SELECT) || allverts)){ - for(i=0; itotweight; i++){ - /* Find group */ - eg = BLI_findlink(&ob->defbase, dvert->dw[i].def_nr); - if(eg == dg){ - dvert->totweight--; - if(dvert->totweight){ - newdw = MEM_mallocN(sizeof(MDeformWeight)*(dvert->totweight), "deformWeight"); - - if(dvert->dw){ - memcpy(newdw, dvert->dw, sizeof(MDeformWeight)*i); - memcpy(newdw+i, dvert->dw+i+1, sizeof(MDeformWeight)*(dvert->totweight-i)); - MEM_freeN(dvert->dw); - } - dvert->dw=newdw; - } - else{ - MEM_freeN(dvert->dw); - dvert->dw=NULL; - break; - } - } - } + dv= CustomData_em_get(&em->vdata, eve->data, CD_MDEFORMVERT); + + if(dv && dv->dw && (allverts || (eve->f & SELECT))){ + MDeformWeight *dw = defvert_find_index(dv, def_nr); + defvert_remove_group(dv, dw); /* dw can be NULL */ } } BKE_mesh_end_editmesh(me, em); @@ -1908,11 +1762,17 @@ static void vgroup_active_remove_verts(Object *ob, const int allverts, bDeformGr if(lt->dvert) { BPoint *bp; - int a, tot= lt->pntsu*lt->pntsv*lt->pntsw; + int i, tot= lt->pntsu*lt->pntsv*lt->pntsw; - for(a=0, bp= lt->def; af1 & SELECT)) - ED_vgroup_vert_remove(ob, dg, a); + for(i=0, bp= lt->def; if1 & SELECT)) { + MDeformWeight *dw; + + dv= <->dvert[i]; + + dw = defvert_find_index(dv, def_nr); + defvert_remove_group(dv, dw); /* dw can be NULL */ + } } } } @@ -2036,56 +1896,30 @@ static void vgroup_delete_all(Object *ob) } /* only in editmode */ -static void vgroup_assign_verts(Object *ob, float weight) +static void vgroup_assign_verts(Object *ob, const float weight) { - EditVert *eve; - bDeformGroup *dg, *eg; - MDeformWeight *newdw; - MDeformVert *dvert; - int i, done; + MDeformVert *dv; + const int def_nr= ob->actdef-1; - dg=BLI_findlink(&ob->defbase, ob->actdef-1); - if(!dg) + if(!BLI_findlink(&ob->defbase, def_nr)) return; if(ob->type == OB_MESH) { Mesh *me= ob->data; EditMesh *em = BKE_mesh_get_editmesh(me); + EditVert *eve; if(!CustomData_has_layer(&em->vdata, CD_MDEFORMVERT)) EM_add_data_layer(em, &em->vdata, CD_MDEFORMVERT, NULL); /* Go through the list of editverts and assign them */ - for(eve=em->verts.first; eve; eve=eve->next){ - dvert= CustomData_em_get(&em->vdata, eve->data, CD_MDEFORMVERT); - - if(dvert && (eve->f & SELECT)){ - /* See if this vert already has a reference to this group */ - /* If so: Change its weight */ - done=0; - for(i=0; itotweight; i++){ - eg = BLI_findlink(&ob->defbase, dvert->dw[i].def_nr); - /* Find the actual group */ - if(eg==dg){ - dvert->dw[i].weight= weight; - done=1; - break; - } - } - /* If not: Add the group and set its weight */ - if(!done){ - newdw = MEM_callocN(sizeof(MDeformWeight)*(dvert->totweight+1), "deformWeight"); - if(dvert->dw){ - memcpy(newdw, dvert->dw, sizeof(MDeformWeight)*dvert->totweight); - MEM_freeN(dvert->dw); - } - dvert->dw=newdw; - - dvert->dw[dvert->totweight].weight= weight; - dvert->dw[dvert->totweight].def_nr= ob->actdef-1; - - dvert->totweight++; - + for (eve=em->verts.first; eve; eve=eve->next) { + if (eve->f & SELECT) { + MDeformWeight *dw; + dv= CustomData_em_get(&em->vdata, eve->data, CD_MDEFORMVERT); /* can be NULL */ + dw= defvert_verify_index(dv, def_nr); + if (dw) { + dw->weight= weight; } } } @@ -2095,14 +1929,22 @@ static void vgroup_assign_verts(Object *ob, float weight) Lattice *lt= vgroup_edit_lattice(ob); BPoint *bp; int a, tot; - + if(lt->dvert==NULL) ED_vgroup_data_create(<->id); - + + dv= lt->dvert; + tot= lt->pntsu*lt->pntsv*lt->pntsw; - for(a=0, bp= lt->def; af1 & SELECT) - ED_vgroup_nr_vert_add(ob, ob->actdef-1, a, weight, WEIGHT_REPLACE); + for(a=0, bp= lt->def; af1 & SELECT) { + MDeformWeight *dw; + + dw= defvert_verify_index(dv, def_nr); + if (dw) { + dw->weight= weight; + } + } } } } @@ -2624,7 +2466,8 @@ void OBJECT_OT_vertex_group_clean(wmOperatorType *ot) RNA_def_float(ot->srna, "limit", 0.01f, 0.0f, 1.0, "Limit", "Remove weights under this limit", 0.001f, 0.99f); RNA_def_boolean(ot->srna, "all_groups", FALSE, "All Groups", "Clean all vertex groups"); - RNA_def_boolean(ot->srna, "keep_single", FALSE, "Keep Single", "Keep verts assigned to at least one group when cleaning"); + RNA_def_boolean(ot->srna, "keep_single", FALSE, "Keep Single", + "Keep verts assigned to at least one group when cleaning"); } @@ -2835,8 +2678,11 @@ static int vgroup_do_remap(Object *ob, char *name_array, wmOperator *op) MDeformVert *dvert= NULL; bDeformGroup *def; int defbase_tot = BLI_countlist(&ob->defbase); - int *sort_map_update= MEM_mallocN(sizeof(int) * (defbase_tot + 1), "sort vgroups"); /* needs a dummy index at the start*/ + + /* needs a dummy index at the start*/ + int *sort_map_update= MEM_mallocN(sizeof(int) * (defbase_tot + 1), "sort vgroups"); int *sort_map= sort_map_update + 1; + char *name; int i; diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c index 52d1cf0b012..5706633d138 100644 --- a/source/blender/editors/sculpt_paint/paint_vertex.c +++ b/source/blender/editors/sculpt_paint/paint_vertex.c @@ -1432,15 +1432,15 @@ static float get_mp_change(MDeformVert *odv, const int defbase_tot, const char * /* change the weights back to the wv's weights * it assumes you already have the correct pointer index */ -static void reset_to_prev(MDeformVert *wv, MDeformVert *dvert) +static void defvert_reset_to_prev(MDeformVert *dv_prev, MDeformVert *dv) { - MDeformWeight *dw= dvert->dw; - MDeformWeight *w; + MDeformWeight *dw= dv->dw; + MDeformWeight *dw_prev; unsigned int i; - for (i= dvert->totweight; i != 0; i--, dw++) { - w= defvert_find_index(wv, dw->def_nr); + for (i= dv->totweight; i != 0; i--, dw++) { + dw_prev= defvert_find_index(dv_prev, dw->def_nr); /* if there was no w when there is a d, then the old weight was 0 */ - dw->weight = w ? w->weight : 0.0f; + dw->weight = dw_prev ? dw_prev->weight : 0.0f; } } @@ -1652,7 +1652,7 @@ static void do_weight_paint_vertex( /* vars which remain the same for every vert if( testw > tuw->weight ) { if(change > oldChange) { /* reset the weights and use the new change */ - reset_to_prev(wp->wpaint_prev+index, dv); + defvert_reset_to_prev(wp->wpaint_prev+index, dv); } else { /* the old change was more significant, so set @@ -1662,7 +1662,7 @@ static void do_weight_paint_vertex( /* vars which remain the same for every vert } else { if(change < oldChange) { - reset_to_prev(wp->wpaint_prev+index, dv); + defvert_reset_to_prev(wp->wpaint_prev+index, dv); } else { change = 0; @@ -1677,7 +1677,7 @@ static void do_weight_paint_vertex( /* vars which remain the same for every vert } if(apply_mp_locks_normalize(me, wpi, index, dw, tdw, change, oldChange, oldw, neww)) { - reset_to_prev(&dv_copy, dv); + defvert_reset_to_prev(&dv_copy, dv); change = 0; oldChange = 0; } @@ -1918,7 +1918,7 @@ static int wpaint_stroke_test_start(bContext *C, wmOperator *op, wmEvent *UNUSED dg= ED_vgroup_add_name(ob, pchan->name); /* sets actdef */ } else { - ob->actdef= 1 + defgroup_find_index(ob, dg); + ob->actdef= 1 + BLI_findindex(&ob->defbase, dg); BLI_assert(ob->actdef >= 0); } } diff --git a/source/blender/makesrna/intern/rna_object_api.c b/source/blender/makesrna/intern/rna_object_api.c index a87d954046a..e06bc206807 100644 --- a/source/blender/makesrna/intern/rna_object_api.c +++ b/source/blender/makesrna/intern/rna_object_api.c @@ -359,7 +359,7 @@ static void rna_Mesh_assign_verts_to_group(Object *ob, bDeformGroup *group, int } Mesh *me = (Mesh*)ob->data; - int group_index = defgroup_find_index(ob, group); + int group_index = BLI_findlink(&ob->defbase, group); if (group_index == -1) { BKE_report(reports, RPT_ERROR, "No deform groups assigned to mesh"); return; From 40a2c1a2921b50edd8b798e79b6bd2a6d94d7bba Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 14 Dec 2011 22:54:38 +0000 Subject: [PATCH 34/70] more vertex weight edits, * replace inline loops with api calls. * change constraints so verts with 0.0 weight are ignored like they are everywhere else. --- source/blender/blenkernel/intern/armature.c | 9 +-- source/blender/blenkernel/intern/constraint.c | 71 ++++++++----------- source/blender/blenkernel/intern/deform.c | 6 ++ .../editors/space_view3d/view3d_buttons.c | 63 ++++++++-------- source/blender/modifiers/intern/MOD_cast.c | 17 ++--- .../blender/modifiers/intern/MOD_meshdeform.c | 20 ++---- source/blender/modifiers/intern/MOD_smooth.c | 17 ++--- .../gameengine/Converter/BL_SkinDeformer.cpp | 16 ++--- source/gameengine/Rasterizer/CMakeLists.txt | 1 + .../gameengine/Rasterizer/RAS_MeshObject.cpp | 22 +++--- 10 files changed, 109 insertions(+), 133 deletions(-) diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c index e10c4b24458..4035db36a39 100644 --- a/source/blender/blenkernel/intern/armature.c +++ b/source/blender/blenkernel/intern/armature.c @@ -924,7 +924,6 @@ void armature_deform_verts(Object *armOb, Object *target, DerivedMesh *dm, float contrib = 0.0f; float armature_weight = 1.0f; /* default to 1 if no overall def group */ float prevco_weight = 1.0f; /* weight for optional cached vertexcos */ - int j; if(use_quaternion) { memset(&sumdq, 0, sizeof(DualQuat)); @@ -971,12 +970,14 @@ void armature_deform_verts(Object *armOb, Object *target, DerivedMesh *dm, mul_m4_v3(premat, co); if(use_dverts && dvert && dvert->totweight) { // use weight groups ? + MDeformWeight *dw= dvert->dw; int deformed = 0; + unsigned int j; - for(j = 0; j < dvert->totweight; j++){ - int index = dvert->dw[j].def_nr; + for (j= dvert->totweight; j != 0; j--, dw++) { + const int index = dw->def_nr; if(index < defbase_tot && (pchan= defnrToPC[index])) { - float weight = dvert->dw[j].weight; + float weight = dw->weight; Bone *bone= pchan->bone; pdef_info= pdef_info_array + defnrToPCIndex[index]; diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c index 6f29594f811..87a50b89547 100644 --- a/source/blender/blenkernel/intern/constraint.c +++ b/source/blender/blenkernel/intern/constraint.c @@ -436,16 +436,15 @@ static void contarget_get_mesh_mat (Object *ob, const char *substring, float mat float vec[3] = {0.0f, 0.0f, 0.0f}; float normal[3] = {0.0f, 0.0f, 0.0f}, plane[3]; float imat[3][3], tmat[3][3]; - int dgroup; + const int defgroup= defgroup_name_index(ob, substring); short freeDM = 0; /* initialize target matrix using target matrix */ copy_m4_m4(mat, ob->obmat); /* get index of vertex group */ - dgroup = defgroup_name_index(ob, substring); - if (dgroup < 0) return; - + if (defgroup == -1) return; + /* get DerivedMesh */ if (em) { /* target is in editmode, so get a special derived mesh */ @@ -463,28 +462,25 @@ static void contarget_get_mesh_mat (Object *ob, const char *substring, float mat if (dm) { MDeformVert *dvert = dm->getVertDataArray(dm, CD_MDEFORMVERT); int numVerts = dm->getNumVerts(dm); - int i, j, count = 0; + int i, count = 0; float co[3], nor[3]; /* check that dvert is a valid pointers (just in case) */ if (dvert) { + MDeformVert *dv= dvert; /* get the average of all verts with that are in the vertex-group */ - for (i = 0; i < numVerts; i++) { - for (j = 0; j < dvert[i].totweight; j++) { - /* does this vertex belong to nominated vertex group? */ - if (dvert[i].dw[j].def_nr == dgroup) { - dm->getVertCo(dm, i, co); - dm->getVertNo(dm, i, nor); - add_v3_v3(vec, co); - add_v3_v3(normal, nor); - count++; - break; - } + for (i = 0; i < numVerts; i++, dv++) { + MDeformWeight *dw= defvert_find_index(dv, defgroup); + if (dw && dw->weight != 0.0f) { + dm->getVertCo(dm, i, co); + dm->getVertNo(dm, i, nor); + add_v3_v3(vec, co); + add_v3_v3(normal, nor); + count++; } } - - + /* calculate averages of normal and coordinates */ if (count > 0) { mul_v3_fl(vec, 1.0f / count); @@ -535,43 +531,38 @@ static void contarget_get_lattice_mat (Object *ob, const char *substring, float float *co = dl?dl->verts:NULL; BPoint *bp = lt->def; - MDeformVert *dvert = lt->dvert; + MDeformVert *dv = lt->dvert; int tot_verts= lt->pntsu*lt->pntsv*lt->pntsw; float vec[3]= {0.0f, 0.0f, 0.0f}, tvec[3]; - int dgroup=0, grouped=0; + int grouped=0; int i, n; + const int defgroup= defgroup_name_index(ob, substring); /* initialize target matrix using target matrix */ copy_m4_m4(mat, ob->obmat); - + /* get index of vertex group */ - dgroup = defgroup_name_index(ob, substring); - if (dgroup < 0) return; - if (dvert == NULL) return; + if (defgroup == -1) return; + if (dv == NULL) return; /* 1. Loop through control-points checking if in nominated vertex-group. * 2. If it is, add it to vec to find the average point. */ - for (i=0; i < tot_verts; i++, dvert++) { - for (n= 0; n < dvert->totweight; n++) { - /* found match - vert is in vgroup */ - if (dvert->dw[n].def_nr == dgroup) { + for (i=0; i < tot_verts; i++, dv++) { + for (n= 0; n < dv->totweight; n++) { + MDeformWeight *dw= defvert_find_index(dv, defgroup); + if (dw && dw->weight > 0.0f) { /* copy coordinates of point to temporary vector, then add to find average */ - if (co) - memcpy(tvec, co, 3*sizeof(float)); - else - memcpy(tvec, bp->vec, 3*sizeof(float)); - + memcpy(tvec, co ? co : bp->vec, 3 * sizeof(float)); + add_v3_v3(vec, tvec); grouped++; - - break; } } /* advance pointer to coordinate data */ - if (co) co+= 3; - else bp++; + if (co) co += 3; + else bp++; } /* find average location, then multiply by ob->obmat to find world-space location */ @@ -1106,10 +1097,10 @@ static void kinematic_new_data (void *cdata) { bKinematicConstraint *data= (bKinematicConstraint *)cdata; - data->weight= (float)1.0; - data->orientweight= (float)1.0; + data->weight= 1.0f; + data->orientweight= 1.0f; data->iterations = 500; - data->dist= (float)1.0; + data->dist= 1.0f; data->flag= CONSTRAINT_IK_TIP|CONSTRAINT_IK_STRETCH|CONSTRAINT_IK_POS; } diff --git a/source/blender/blenkernel/intern/deform.c b/source/blender/blenkernel/intern/deform.c index 4d3af172b22..e14fd6827af 100644 --- a/source/blender/blenkernel/intern/deform.c +++ b/source/blender/blenkernel/intern/deform.c @@ -539,6 +539,12 @@ float defvert_find_weight(const struct MDeformVert *dvert, const int defgroup) return dw ? dw->weight : 0.0f; } +/* take care with this the rationale is: + * - if the object has no vertex group. act like vertex group isnt set and return 1.0, + * - if the vertex group exists but the 'defgroup' isnt found on this vertex, _still_ return 0.0 + * + * This is a bit confusing, just saves some checks from the caller. + */ float defvert_array_find_weight_safe(const struct MDeformVert *dvert, const int index, const int defgroup) { if (defgroup == -1 || dvert == NULL) diff --git a/source/blender/editors/space_view3d/view3d_buttons.c b/source/blender/editors/space_view3d/view3d_buttons.c index 15494d73ea1..d2689fad8c2 100644 --- a/source/blender/editors/space_view3d/view3d_buttons.c +++ b/source/blender/editors/space_view3d/view3d_buttons.c @@ -688,57 +688,51 @@ static void vgroup_copy_active_to_sel(Object *ob) } } -static void vgroup_copy_active_to_sel_single(Object *ob, int def_nr) +static void vgroup_copy_active_to_sel_single(Object *ob, const int def_nr) { EditVert *eve_act; - MDeformVert *dvert_act; + MDeformVert *dv_act; - act_vert_def(ob, &eve_act, &dvert_act); + act_vert_def(ob, &eve_act, &dv_act); - if(dvert_act==NULL) { + if(dv_act==NULL) { return; } else { Mesh *me= ob->data; EditMesh *em = BKE_mesh_get_editmesh(me); EditVert *eve; - MDeformVert *dvert; + MDeformVert *dv; MDeformWeight *dw; - float act_weight = -1.0f; - int i; + float weight_act; int index= 0; - for(i=0, dw=dvert_act->dw; i < dvert_act->totweight; i++, dw++) { - if(def_nr == dw->def_nr) { - act_weight= dw->weight; - break; - } - } + dw= defvert_find_index(dv_act, def_nr); - if(act_weight < -0.5f) + if(dw == NULL) return; - for(eve= em->verts.first; eve; eve= eve->next, index++) { - if(eve->f & SELECT && eve != eve_act) { - dvert= CustomData_em_get(&em->vdata, eve->data, CD_MDEFORMVERT); - if(dvert) { - for(i=0, dw=dvert->dw; i < dvert->totweight; i++, dw++) { - if(def_nr == dw->def_nr) { - dw->weight= act_weight; + weight_act= dw->weight; - if(me->editflag & ME_EDIT_MIRROR_X) - editvert_mirror_update(ob, eve, -1, index); + for (eve= em->verts.first; eve; eve= eve->next, index++) { + if (eve->f & SELECT && eve != eve_act) { + dv= CustomData_em_get(&em->vdata, eve->data, CD_MDEFORMVERT); + if(dv) { + dw= defvert_find_index(dv, def_nr); + if (dw) { + dw->weight= weight_act; - break; + if (me->editflag & ME_EDIT_MIRROR_X) { + editvert_mirror_update(ob, eve, -1, index); } } } } } - if(me->editflag & ME_EDIT_MIRROR_X) + if (me->editflag & ME_EDIT_MIRROR_X) { editvert_mirror_update(ob, eve_act, -1, -1); - + } } } @@ -808,14 +802,15 @@ static void view3d_panel_vgroup(const bContext *C, Panel *pa) Object *ob= OBACT; EditVert *eve; - MDeformVert *dvert; + MDeformVert *dv; - act_vert_def(ob, &eve, &dvert); + act_vert_def(ob, &eve, &dv); - if(dvert && dvert->totweight) { + if(dv && dv->totweight) { uiLayout *col; bDeformGroup *dg; - int i; + MDeformWeight *dw = dv->dw; + unsigned int i; int yco = 0; uiBlockSetHandleFunc(block, do_view3d_vgroup_buttons, NULL); @@ -825,11 +820,11 @@ static void view3d_panel_vgroup(const bContext *C, Panel *pa) uiBlockBeginAlign(block); - for (i=0; itotweight; i++){ - dg = BLI_findlink (&ob->defbase, dvert->dw[i].def_nr); + for (i= dv->totweight; i != 0; i--, dw++) { + dg = BLI_findlink (&ob->defbase, dw->def_nr); if(dg) { - uiDefButF(block, NUM, B_VGRP_PNL_EDIT_SINGLE + dvert->dw[i].def_nr, dg->name, 0, yco, 180, 20, &dvert->dw[i].weight, 0.0, 1.0, 1, 3, ""); - uiDefBut(block, BUT, B_VGRP_PNL_COPY_SINGLE + dvert->dw[i].def_nr, "C", 180,yco,20,20, NULL, 0, 0, 0, 0, "Copy this groups weight to other selected verts"); + uiDefButF(block, NUM, B_VGRP_PNL_EDIT_SINGLE + dw->def_nr, dg->name, 0, yco, 180, 20, &dw->weight, 0.0, 1.0, 1, 3, ""); + uiDefBut(block, BUT, B_VGRP_PNL_COPY_SINGLE + dw->def_nr, "C", 180,yco,20,20, NULL, 0, 0, 0, 0, "Copy this groups weight to other selected verts"); yco -= 20; } } diff --git a/source/blender/modifiers/intern/MOD_cast.c b/source/blender/modifiers/intern/MOD_cast.c index c91cabd4a37..e481f691a6e 100644 --- a/source/blender/modifiers/intern/MOD_cast.c +++ b/source/blender/modifiers/intern/MOD_cast.c @@ -200,11 +200,11 @@ static void sphere_do( * with or w/o a vgroup. With lots of if's in the code below, * further optimizations are possible, if needed */ if (dvert) { /* with a vgroup */ + MDeformVert *dv= dvert; float fac_orig = fac; - for (i = 0; i < numVerts; i++) { - MDeformWeight *dw = NULL; - int j; + for (i = 0; i < numVerts; i++, dv++) { float tmp_co[3]; + float weight; copy_v3_v3(tmp_co, vertexCos[i]); if(ctrl_ob) { @@ -224,15 +224,10 @@ static void sphere_do( if (len_v3(vec) > cmd->radius) continue; } - for (j = 0; j < dvert[i].totweight; ++j) { - if(dvert[i].dw[j].def_nr == defgrp_index) { - dw = &dvert[i].dw[j]; - break; - } - } - if (!dw) continue; + weight= defvert_find_weight(dv, defgrp_index); + if (weight <= 0.0f) continue; - fac = fac_orig * dw->weight; + fac = fac_orig * weight; facm = 1.0f - fac; normalize_v3(vec); diff --git a/source/blender/modifiers/intern/MOD_meshdeform.c b/source/blender/modifiers/intern/MOD_meshdeform.c index c211efd64b8..bcbb6c630a6 100644 --- a/source/blender/modifiers/intern/MOD_meshdeform.c +++ b/source/blender/modifiers/intern/MOD_meshdeform.c @@ -188,7 +188,6 @@ static void meshdeformModifier_do( struct EditMesh *em = (me)? BKE_mesh_get_editmesh(me): NULL; DerivedMesh *tmpdm, *cagedm; MDeformVert *dvert = NULL; - MDeformWeight *dw; MDefInfluence *influences; int *offsets; float imat[4][4], cagemat[4][4], iobmat[4][4], icagemat[3][3], cmat[4][4]; @@ -293,21 +292,14 @@ static void meshdeformModifier_do( continue; if(dvert) { - for(dw=NULL, a=0; aflag & MOD_MDEF_INVERT_VGROUP) { + fac= 1.0f - fac; } - if(mmd->flag & MOD_MDEF_INVERT_VGROUP) { - if(!dw) fac= 1.0f; - else if(dw->weight == 1.0f) continue; - else fac=1.0f-dw->weight; - } - else { - if(!dw) continue; - else fac= dw->weight; + if (fac <= 0.0) { + continue; } } diff --git a/source/blender/modifiers/intern/MOD_smooth.c b/source/blender/modifiers/intern/MOD_smooth.c index 2eaa142db47..6edd8921c79 100644 --- a/source/blender/modifiers/intern/MOD_smooth.c +++ b/source/blender/modifiers/intern/MOD_smooth.c @@ -154,24 +154,19 @@ static void smoothModifier_do( } if (dvert) { - for (i = 0; i < numVerts; i++) { - MDeformWeight *dw = NULL; + MDeformVert *dv= dvert; + for (i = 0; i < numVerts; i++, dv++) { float f, fm, facw, *fp, *v; - int k; short flag = smd->flag; v = vertexCos[i]; fp = &ftmp[i*3]; - for (k = 0; k < dvert[i].totweight; ++k) { - if(dvert[i].dw[k].def_nr == defgrp_index) { - dw = &dvert[i].dw[k]; - break; - } - } - if (!dw) continue; - f = fac * dw->weight; + f= defvert_find_weight(dv, defgrp_index); + if (f <= 0.0f) continue; + + f *= fac; fm = 1.0f - f; /* fp is the sum of uctmp[i] verts, so must be averaged */ diff --git a/source/gameengine/Converter/BL_SkinDeformer.cpp b/source/gameengine/Converter/BL_SkinDeformer.cpp index 0c4806f4bd8..f320df12078 100644 --- a/source/gameengine/Converter/BL_SkinDeformer.cpp +++ b/source/gameengine/Converter/BL_SkinDeformer.cpp @@ -237,12 +237,12 @@ void BL_SkinDeformer::BGEDeformVerts() } } + MDeformVert *dv= dverts; - for (int i=0; itotvert; ++i) + for (int i=0; itotvert; ++i, dv++) { float contrib = 0.f, weight, max_weight=0.f; bPoseChannel *pchan=NULL; - MDeformVert *dvert; Eigen::Map norm(m_transnors[i]); Eigen::Vector4f vec(0, 0, 0, 1); Eigen::Matrix4f norm_chan_mat; @@ -251,18 +251,18 @@ void BL_SkinDeformer::BGEDeformVerts() m_transverts[i][2], 1.f); - dvert = dverts+i; - - if (!dvert->totweight) + if (!dv->totweight) continue; - for (int j=0; jtotweight; ++j) + MDeformWeight *dw= dv->dw; + + for (unsigned int j= dv->totweight; j != 0; j--, dw++) { - int index = dvert->dw[j].def_nr; + const int index = dw->def_nr; if (index < defbase_tot && (pchan=m_dfnrToPC[index])) { - weight = dvert->dw[j].weight; + weight = dw->weight; if (weight) { diff --git a/source/gameengine/Rasterizer/CMakeLists.txt b/source/gameengine/Rasterizer/CMakeLists.txt index 08264ce8a67..ddc72c08ea1 100644 --- a/source/gameengine/Rasterizer/CMakeLists.txt +++ b/source/gameengine/Rasterizer/CMakeLists.txt @@ -29,6 +29,7 @@ set(INC ../Ketsji ../SceneGraph ../../blender/makesdna + ../../blender/blenkernel ../../../intern/container ../../../intern/guardedalloc ../../../intern/moto/include diff --git a/source/gameengine/Rasterizer/RAS_MeshObject.cpp b/source/gameengine/Rasterizer/RAS_MeshObject.cpp index 48e9e93b80e..afa62a9a8c6 100644 --- a/source/gameengine/Rasterizer/RAS_MeshObject.cpp +++ b/source/gameengine/Rasterizer/RAS_MeshObject.cpp @@ -43,6 +43,10 @@ #include +extern "C" { +# include "BKE_deform.h" +} + /* polygon sorting */ struct RAS_MeshObject::polygonSlot @@ -573,8 +577,8 @@ void RAS_MeshObject::CheckWeightCache(Object* obj) { KeyBlock *kb; int kbindex, defindex; - MDeformVert *dvert= NULL; - int totvert, i, j; + MDeformVert *dv= NULL; + int totvert, i; float *weights; if (!m_mesh->key) @@ -598,19 +602,15 @@ void RAS_MeshObject::CheckWeightCache(Object* obj) kb->weights = NULL; } - dvert= m_mesh->dvert; + dv= m_mesh->dvert; totvert= m_mesh->totvert; - weights= (float*)MEM_callocN(totvert*sizeof(float), "weights"); + weights= (float*)MEM_mallocN(totvert*sizeof(float), "weights"); - for (i=0; i < totvert; i++, dvert++) { - for(j=0; jtotweight; j++) { - if (dvert->dw[j].def_nr == defindex) { - weights[i]= dvert->dw[j].weight; - break; - } - } + for (i=0; i < totvert; i++, dv++) { + weights[i]= defvert_find_weight(dv, defindex); } + kb->weights = weights; m_cacheWeightIndex[kbindex] = defindex; } From 27a56719a81867942a344f53aacc3e6170f5ba54 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 14 Dec 2011 23:53:46 +0000 Subject: [PATCH 35/70] minor vertex group edits * when freeing a deform weight, use one less memcpy call. * vgroup_delete_object_mode(), was looping on the deform verts twice when it didn't need to. --- source/blender/blenkernel/intern/deform.c | 9 ++++++++- source/blender/editors/object/object_vgroup.c | 13 +++++++------ 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/source/blender/blenkernel/intern/deform.c b/source/blender/blenkernel/intern/deform.c index e14fd6827af..f7f10276ee4 100644 --- a/source/blender/blenkernel/intern/deform.c +++ b/source/blender/blenkernel/intern/deform.c @@ -645,9 +645,16 @@ void defvert_remove_group(MDeformVert *dvert, MDeformWeight *dw) if (dvert->totweight) { dw_new = MEM_mallocN(sizeof(MDeformWeight)*(dvert->totweight), __func__); if (dvert->dw) { +#if 1 /* since we dont care about order, swap this with the last, save a memcpy */ + if (i != dvert->totweight) { + dvert->dw[i]= dvert->dw[dvert->totweight]; + } + memcpy(dw_new, dvert->dw, sizeof(MDeformWeight) * dvert->totweight); + MEM_freeN(dvert->dw); +#else memcpy(dw_new, dvert->dw, sizeof(MDeformWeight)*i); memcpy(dw_new+i, dvert->dw+i+1, sizeof(MDeformWeight)*(dvert->totweight-i)); - MEM_freeN(dvert->dw); +#endif } dvert->dw = dw_new; } diff --git a/source/blender/editors/object/object_vgroup.c b/source/blender/editors/object/object_vgroup.c index 7d63d7dc270..50fe9d26cf9 100644 --- a/source/blender/editors/object/object_vgroup.c +++ b/source/blender/editors/object/object_vgroup.c @@ -1697,7 +1697,7 @@ static void vgroup_delete_update_users(Object *ob, int id) static void vgroup_delete_object_mode(Object *ob, bDeformGroup *dg) { MDeformVert *dvert_array=NULL; - int i, e, dvert_tot=0; + int dvert_tot=0; const int def_nr= BLI_findindex(&ob->defbase, dg); assert(def_nr > -1); @@ -1705,20 +1705,21 @@ static void vgroup_delete_object_mode(Object *ob, bDeformGroup *dg) ED_vgroup_give_array(ob->data, &dvert_array, &dvert_tot); if(dvert_array) { + int i, j; MDeformVert *dv; for(i= 0, dv= dvert_array; i < dvert_tot; i++, dv++) { MDeformWeight *dw; dw= defvert_find_index(dv, def_nr); defvert_remove_group(dv, dw); /* dw can be NULL */ - } - for(i= 0, dv= dvert_array; i < dvert_tot; i++, dv++) { - for(e = 0; e < dv->totweight; e++) { - if(dv->dw[e].def_nr > def_nr) { - dv->dw[e].def_nr--; + /* inline, make into a function if anything else needs to do this */ + for(j = 0; j < dv->totweight; j++) { + if(dv->dw[j].def_nr > def_nr) { + dv->dw[j].def_nr--; } } + /* done */ } } From 9e4d9e066ade129c191c8cd6efe7b417f578abce Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 15 Dec 2011 07:54:13 +0000 Subject: [PATCH 36/70] Fix #29577: repeat curve duplication not working in 2.60(as well as 2.61rc1) Issue was caused by direct call of transforn operator from extrude and duplicate, made them macro of duplicate/exturde and transform, so now repeating works nicely. --- source/blender/editors/curve/curve_ops.c | 25 +++++++++++++++-- source/blender/editors/curve/editcurve.c | 27 ------------------- source/blender/editors/include/ED_curve.h | 1 + source/blender/editors/space_api/spacetypes.c | 1 + 4 files changed, 25 insertions(+), 29 deletions(-) diff --git a/source/blender/editors/curve/curve_ops.c b/source/blender/editors/curve/curve_ops.c index 95f3bb55ba5..8df54670bd4 100644 --- a/source/blender/editors/curve/curve_ops.c +++ b/source/blender/editors/curve/curve_ops.c @@ -137,6 +137,27 @@ void ED_operatortypes_curve(void) WM_operatortype_append(CURVE_OT_cyclic_toggle); } +void ED_operatormacros_curve(void) +{ + wmOperatorType *ot; + wmOperatorTypeMacro *otmacro; + + ot= WM_operatortype_append_macro("CURVE_OT_duplicate_move", "Add Duplicate", OPTYPE_UNDO|OPTYPE_REGISTER); + ot->description = "Duplicate curve and move"; + WM_operatortype_macro_define(ot, "CURVE_OT_duplicate"); + otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); + RNA_enum_set(otmacro->ptr, "proportional", 0); + RNA_boolean_set(otmacro->ptr, "mirror", 0); + + ot= WM_operatortype_append_macro("CURVE_OT_extrude_move", "Extrude Curve and Move", OPTYPE_UNDO|OPTYPE_REGISTER); + ot->description = "Extrude curve and move result"; + otmacro= WM_operatortype_macro_define(ot, "CURVE_OT_extrude"); + RNA_enum_set(otmacro->ptr, "type", 1); + otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); + RNA_enum_set(otmacro->ptr, "proportional", 0); + RNA_boolean_set(otmacro->ptr, "mirror", 0); +} + void ED_keymap_curve(wmKeyConfig *keyconf) { wmKeyMap *keymap; @@ -214,8 +235,8 @@ void ED_keymap_curve(wmKeyConfig *keyconf) RNA_boolean_set(WM_keymap_add_item(keymap, "CURVE_OT_select_linked_pick", LKEY, KM_PRESS, KM_SHIFT, 0)->ptr, "deselect", 1); WM_keymap_add_item(keymap, "CURVE_OT_separate", PKEY, KM_PRESS, 0, 0); - WM_keymap_add_item(keymap, "CURVE_OT_extrude", EKEY, KM_PRESS, 0, 0); - WM_keymap_add_item(keymap, "CURVE_OT_duplicate", DKEY, KM_PRESS, KM_SHIFT, 0); + WM_keymap_add_item(keymap, "CURVE_OT_extrude_move", EKEY, KM_PRESS, 0, 0); + WM_keymap_add_item(keymap, "CURVE_OT_duplicate_move", DKEY, KM_PRESS, KM_SHIFT, 0); WM_keymap_add_item(keymap, "CURVE_OT_make_segment", FKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "CURVE_OT_cyclic_toggle", CKEY, KM_PRESS, KM_ALT, 0); WM_keymap_add_item(keymap, "CURVE_OT_delete", XKEY, KM_PRESS, 0, 0); diff --git a/source/blender/editors/curve/editcurve.c b/source/blender/editors/curve/editcurve.c index 1415b8965fe..a679fa3e2bf 100644 --- a/source/blender/editors/curve/editcurve.c +++ b/source/blender/editors/curve/editcurve.c @@ -4716,18 +4716,6 @@ static int extrude_exec(bContext *C, wmOperator *UNUSED(op)) return OPERATOR_FINISHED; } -static int extrude_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(event)) -{ - if(extrude_exec(C, op) == OPERATOR_FINISHED) { - RNA_enum_set(op->ptr, "mode", TFM_TRANSLATION); - WM_operator_name_call(C, "TRANSFORM_OT_transform", WM_OP_INVOKE_REGION_WIN, op->ptr); - - return OPERATOR_FINISHED; - } - - return OPERATOR_CANCELLED; -} - void CURVE_OT_extrude(wmOperatorType *ot) { /* identifiers */ @@ -4737,7 +4725,6 @@ void CURVE_OT_extrude(wmOperatorType *ot) /* api callbacks */ ot->exec= extrude_exec; - ot->invoke= extrude_invoke; ot->poll= ED_operator_editsurfcurve; /* flags */ @@ -5599,16 +5586,6 @@ static int duplicate_exec(bContext *C, wmOperator *UNUSED(op)) return OPERATOR_FINISHED; } -static int duplicate_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(event)) -{ - duplicate_exec(C, op); - - RNA_enum_set(op->ptr, "mode", TFM_TRANSLATION); - WM_operator_name_call(C, "TRANSFORM_OT_transform", WM_OP_INVOKE_REGION_WIN, op->ptr); - - return OPERATOR_FINISHED; -} - void CURVE_OT_duplicate(wmOperatorType *ot) { /* identifiers */ @@ -5618,14 +5595,10 @@ void CURVE_OT_duplicate(wmOperatorType *ot) /* api callbacks */ ot->exec= duplicate_exec; - ot->invoke= duplicate_invoke; ot->poll= ED_operator_editsurfcurve; /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; - - /* to give to transform */ - RNA_def_enum(ot->srna, "mode", transform_mode_types, TFM_TRANSLATION, "Mode", ""); } /********************** delete operator *********************/ diff --git a/source/blender/editors/include/ED_curve.h b/source/blender/editors/include/ED_curve.h index 8f97d1c8602..7e7d60fdea8 100644 --- a/source/blender/editors/include/ED_curve.h +++ b/source/blender/editors/include/ED_curve.h @@ -47,6 +47,7 @@ struct BPoint; /* curve_ops.c */ void ED_operatortypes_curve(void); +void ED_operatormacros_curve(void); void ED_keymap_curve (struct wmKeyConfig *keyconf); /* editcurve.c */ diff --git a/source/blender/editors/space_api/spacetypes.c b/source/blender/editors/space_api/spacetypes.c index fbf8af514b6..7c5361c8af0 100644 --- a/source/blender/editors/space_api/spacetypes.c +++ b/source/blender/editors/space_api/spacetypes.c @@ -132,6 +132,7 @@ void ED_spacetypes_init(void) ED_operatormacros_graph(); ED_operatormacros_action(); ED_operatormacros_clip(); + ED_operatormacros_curve(); /* register dropboxes (can use macros) */ spacetypes = BKE_spacetypes_list(); From ca9ae04220560191c11c3657466cfaa42f7effc6 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 15 Dec 2011 08:01:49 +0000 Subject: [PATCH 37/70] Fix #29615: Crash during undo after toggling "Float buffer" in image paint mode Crash was caused by different types of buffers stored in tile in undo stack and in image itself. Store type of buffer in tile, so byte tile wouldn't be applying on float image anymore. --- source/blender/editors/sculpt_paint/paint_image.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/source/blender/editors/sculpt_paint/paint_image.c b/source/blender/editors/sculpt_paint/paint_image.c index d557a3bd144..060cae48fa0 100644 --- a/source/blender/editors/sculpt_paint/paint_image.c +++ b/source/blender/editors/sculpt_paint/paint_image.c @@ -383,7 +383,7 @@ typedef struct UndoImageTile { void *rect; int x, y; - short source; + short source, use_float; char gen_type; } UndoImageTile; @@ -413,11 +413,13 @@ static void *image_undo_push_tile(Image *ima, ImBuf *ibuf, ImBuf **tmpibuf, int ListBase *lb= undo_paint_push_get_list(UNDO_PAINT_IMAGE); UndoImageTile *tile; int allocsize; + short use_float = ibuf->rect_float ? 1 : 0; for(tile=lb->first; tile; tile=tile->next) if(tile->x == x_tile && tile->y == y_tile && ima->gen_type == tile->gen_type && ima->source == tile->source) - if(strcmp(tile->idname, ima->id.name)==0 && strcmp(tile->ibufname, ibuf->name)==0) - return tile->rect; + if(tile->use_float == use_float) + if(strcmp(tile->idname, ima->id.name)==0 && strcmp(tile->ibufname, ibuf->name)==0) + return tile->rect; if (*tmpibuf==NULL) *tmpibuf = IMB_allocImBuf(IMAPAINT_TILE_SIZE, IMAPAINT_TILE_SIZE, 32, IB_rectfloat|IB_rect); @@ -435,6 +437,7 @@ static void *image_undo_push_tile(Image *ima, ImBuf *ibuf, ImBuf **tmpibuf, int tile->gen_type= ima->gen_type; tile->source= ima->source; + tile->use_float= use_float; undo_copy_tile(tile, *tmpibuf, ibuf, 0); undo_paint_push_count_alloc(UNDO_PAINT_IMAGE, allocsize); @@ -455,6 +458,8 @@ static void image_undo_restore(bContext *C, ListBase *lb) IB_rectfloat|IB_rect); for(tile=lb->first; tile; tile=tile->next) { + short use_float; + /* find image based on name, pointer becomes invalid with global undo */ if(ima && strcmp(tile->idname, ima->id.name)==0) { /* ima is valid */ @@ -464,6 +469,7 @@ static void image_undo_restore(bContext *C, ListBase *lb) } ibuf= BKE_image_get_ibuf(ima, NULL); + use_float = ibuf->rect_float ? 1 : 0; if(ima && ibuf && strcmp(tile->ibufname, ibuf->name)!=0) { /* current ImBuf filename was changed, probably current frame @@ -480,6 +486,9 @@ static void image_undo_restore(bContext *C, ListBase *lb) if (ima->gen_type != tile->gen_type || ima->source != tile->source) continue; + if (use_float != tile->use_float) + continue; + undo_copy_tile(tile, tmpibuf, ibuf, 1); GPU_free_image(ima); /* force OpenGL reload */ From 9996188791f1e18351ad2c115c4bb98aa34f54be Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Thu, 15 Dec 2011 08:57:48 +0000 Subject: [PATCH 38/70] New fix for [#29543] Hook modifier: falloff + vgroup influence broken Don't know why, but creating a dm when there was none broke multi hooks on curves (see #29567)... So as a valid dm is only mandatory for meshes when a vgroup is set, only create it in those cases! --- source/blender/modifiers/intern/MOD_hook.c | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/source/blender/modifiers/intern/MOD_hook.c b/source/blender/modifiers/intern/MOD_hook.c index b5cf289f4ce..9948a1a462d 100644 --- a/source/blender/modifiers/intern/MOD_hook.c +++ b/source/blender/modifiers/intern/MOD_hook.c @@ -249,15 +249,25 @@ static void deformVerts(ModifierData *md, Object *ob, DerivedMesh *derivedData, int UNUSED(useRenderParams), int UNUSED(isFinalCalc)) { HookModifierData *hmd = (HookModifierData*) md; - - deformVerts_do(hmd, ob, derivedData, vertexCos, numVerts); + DerivedMesh *dm = derivedData; + /* We need a valid dm for meshes when a vgroup is set... */ + if(!dm && ob->type == OB_MESH && hmd->name[0] != '\0') + dm = get_dm(ob, NULL, dm, NULL, 0); + + deformVerts_do(hmd, ob, dm, vertexCos, numVerts); + + if(derivedData != dm) + dm->release(dm); } static void deformVertsEM(ModifierData *md, Object *ob, struct EditMesh *editData, DerivedMesh *derivedData, float (*vertexCos)[3], int numVerts) { HookModifierData *hmd = (HookModifierData*) md; - DerivedMesh *dm = get_dm(ob, editData, derivedData, NULL, 0); + DerivedMesh *dm = derivedData; + /* We need a valid dm for meshes when a vgroup is set... */ + if(!dm && ob->type == OB_MESH && hmd->name[0] != '\0') + dm = get_dm(ob, editData, dm, NULL, 0); deformVerts_do(hmd, ob, dm, vertexCos, numVerts); From 3f81d010e3382bd3e12bf0a3edb3bd14c86e4b42 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 15 Dec 2011 12:18:09 +0000 Subject: [PATCH 39/70] Free run no gaps time code implementation This commit adds new timecode type which counts frames in gapless mode (counting actually decoded frames instead of using pts to find frame number) which might resolve issues with files which have got broken or incorrect base time value stored in the header. This timecode allows to deal with movies from #29388: Abnormal frame length on MP4 files --- source/blender/imbuf/IMB_imbuf.h | 3 +- source/blender/imbuf/intern/indexer.c | 29 ++++++++++++++----- source/blender/makesdna/DNA_sequence_types.h | 3 +- .../blender/makesrna/intern/rna_sequencer.c | 3 ++ 4 files changed, 29 insertions(+), 9 deletions(-) diff --git a/source/blender/imbuf/IMB_imbuf.h b/source/blender/imbuf/IMB_imbuf.h index 3586e8f1b5e..39282335f46 100644 --- a/source/blender/imbuf/IMB_imbuf.h +++ b/source/blender/imbuf/IMB_imbuf.h @@ -198,7 +198,8 @@ typedef enum IMB_Timecode_Type { record date and time written by recording device (*every* consumer camcorder can do that :) )*/ - IMB_TC_MAX_SLOT = 3 + IMB_TC_RECORD_RUN_NO_GAPS = 8, + IMB_TC_MAX_SLOT = 8 } IMB_Timecode_Type; typedef enum IMB_Proxy_Size { diff --git a/source/blender/imbuf/intern/indexer.c b/source/blender/imbuf/intern/indexer.c index 4088cf861e7..ce14951b5fb 100644 --- a/source/blender/imbuf/intern/indexer.c +++ b/source/blender/imbuf/intern/indexer.c @@ -52,8 +52,11 @@ static int proxy_sizes[] = { IMB_PROXY_25, IMB_PROXY_50, IMB_PROXY_75, static float proxy_fac[] = { 0.25, 0.50, 0.75, 1.00 }; #ifdef WITH_FFMPEG -static int tc_types[] = { IMB_TC_RECORD_RUN, IMB_TC_FREE_RUN, - IMB_TC_INTERPOLATED_REC_DATE_FREE_RUN }; +static int tc_types[] = { IMB_TC_RECORD_RUN, + IMB_TC_FREE_RUN, + IMB_TC_INTERPOLATED_REC_DATE_FREE_RUN, + IMB_TC_RECORD_RUN_NO_GAPS, + }; #endif #define INDEX_FILE_VERSION 1 @@ -102,7 +105,7 @@ anim_index_builder * IMB_index_builder_create(const char * name) } void IMB_index_builder_add_entry(anim_index_builder * fp, - int frameno,unsigned long long seek_pos, + int frameno, unsigned long long seek_pos, unsigned long long seek_pos_dts, unsigned long long pts) { @@ -344,6 +347,8 @@ int IMB_timecode_to_array_index(IMB_Timecode_Type tc) return 1; case IMB_TC_INTERPOLATED_REC_DATE_FREE_RUN: return 2; + case IMB_TC_RECORD_RUN_NO_GAPS: + return 3; default: return 0; }; @@ -401,8 +406,10 @@ static void get_tc_filename(struct anim * anim, IMB_Timecode_Type tc, char index_dir[FILE_MAXDIR]; int i = IMB_timecode_to_array_index(tc); const char * index_names[] = { - "record_run%s.blen_tc", "free_run%s.blen_tc", - "interp_free_run%s.blen_tc" }; + "record_run%s.blen_tc", + "free_run%s.blen_tc", + "interp_free_run%s.blen_tc", + "record_run_no_gaps%s.blen_tc"}; char stream_suffix[20]; char index_name[256]; @@ -696,7 +703,7 @@ static int index_rebuild_ffmpeg(struct anim * anim, unsigned long long start_pts = 0; double frame_rate; double pts_time_base; - int frameno = 0; + int frameno = 0, frameno_gapless = 0; int start_pts_set = FALSE; AVFormatContext *iFormatCtx; @@ -858,13 +865,21 @@ static int index_rebuild_ffmpeg(struct anim * anim, for (i = 0; i < num_indexers; i++) { if (tcs_in_use & tc_types[i]) { + int tc_frameno = frameno; + + if(tc_types[i] == IMB_TC_RECORD_RUN_NO_GAPS) + tc_frameno = frameno_gapless; + IMB_index_builder_proc_frame( indexer[i], next_packet.data, next_packet.size, - frameno, s_pos, s_dts, pts); + tc_frameno, + s_pos, s_dts, pts); } } + + frameno_gapless++; } av_free_packet(&next_packet); } diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h index ce01f100239..ca2b7e0b2a9 100644 --- a/source/blender/makesdna/DNA_sequence_types.h +++ b/source/blender/makesdna/DNA_sequence_types.h @@ -309,7 +309,8 @@ typedef struct SpeedControlVars { #define SEQ_PROXY_TC_RECORD_RUN 1 #define SEQ_PROXY_TC_FREE_RUN 2 #define SEQ_PROXY_TC_INTERP_REC_DATE_FREE_RUN 4 -#define SEQ_PROXY_TC_ALL 7 +#define SEQ_PROXY_TC_RECORD_RUN_NO_GAPS 8 +#define SEQ_PROXY_TC_ALL 15 /* seq->type WATCH IT: SEQ_EFFECT BIT is used to determine if this is an effect strip!!! */ #define SEQ_IMAGE 0 diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c index 64adac7dd5e..4da4e6573f7 100644 --- a/source/blender/makesrna/intern/rna_sequencer.c +++ b/source/blender/makesrna/intern/rna_sequencer.c @@ -822,6 +822,9 @@ static void rna_def_strip_proxy(BlenderRNA *brna) {SEQ_PROXY_TC_INTERP_REC_DATE_FREE_RUN, "FREE_RUN_REC_DATE", 0, "Free Run (rec date)", "Interpolate a global timestamp using the " "record date and time written by recording device"}, + {SEQ_PROXY_TC_RECORD_RUN_NO_GAPS, "FREE_RUN_NO_GAPS", 0, "Free Run No Gaps", + "Record run, but ignore timecode, " + "changes in framerate or dropouts"}, {0, NULL, 0, NULL, NULL}}; srna = RNA_def_struct(brna, "SequenceProxy", NULL); From 42ae315aef305f22f8523a9ca5ea5a58f1586e27 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 15 Dec 2011 12:44:05 +0000 Subject: [PATCH 40/70] Added note that cmake/scons rules are automatically generated for extern/libmv Also updated generation scripts and templates --- extern/libmv/CMakeLists.txt | 4 + extern/libmv/SConscript | 5 + extern/libmv/bundle.sh | 73 ++++++----- extern/libmv/files.txt | 252 +++++++++++++++++++----------------- extern/libmv/mkfiles.sh | 4 +- 5 files changed, 181 insertions(+), 157 deletions(-) diff --git a/extern/libmv/CMakeLists.txt b/extern/libmv/CMakeLists.txt index 76fb36709cb..671520a76f8 100644 --- a/extern/libmv/CMakeLists.txt +++ b/extern/libmv/CMakeLists.txt @@ -22,6 +22,10 @@ # # ***** END GPL LICENSE BLOCK ***** +# NOTEL This file is automatically generated by bundle.sh script +# If you're doing changes in this file, please update template +# in that script too + set(INC . ../Eigen3 diff --git a/extern/libmv/SConscript b/extern/libmv/SConscript index 9c134934fa0..a2132e73f03 100644 --- a/extern/libmv/SConscript +++ b/extern/libmv/SConscript @@ -1,4 +1,9 @@ #!/usr/bin/python + +# NOTEL This file is automatically generated by bundle.sh script +# If you're doing changes in this file, please update template +# in that script too + import sys import os diff --git a/extern/libmv/bundle.sh b/extern/libmv/bundle.sh index fb336c66d61..ca808e12d7e 100755 --- a/extern/libmv/bundle.sh +++ b/extern/libmv/bundle.sh @@ -33,14 +33,14 @@ rm -rf $tmp chmod 664 ./third_party/glog/src/windows/*.cc ./third_party/glog/src/windows/*.h ./third_party/glog/src/windows/glog/*.h -sources=`find ./libmv -type f -iname '*.cc' -or -iname '*.cpp' -or -iname '*.c' | sed -r 's/^\.\//\t/'` -headers=`find ./libmv -type f -iname '*.h' | sed -r 's/^\.\//\t/'` +sources=`find ./libmv -type f -iname '*.cc' -or -iname '*.cpp' -or -iname '*.c' | sed -r 's/^\.\//\t/' | sort -d` +headers=`find ./libmv -type f -iname '*.h' | sed -r 's/^\.\//\t/' | sort -d` -third_sources=`find ./third_party -type f -iname '*.cc' -or -iname '*.cpp' -or -iname '*.c' | grep -v glog | sed -r 's/^\.\//\t/'` -third_headers=`find ./third_party -type f -iname '*.h' | grep -v glog | sed -r 's/^\.\//\t/'` +third_sources=`find ./third_party -type f -iname '*.cc' -or -iname '*.cpp' -or -iname '*.c' | grep -v glog | sed -r 's/^\.\//\t/' | sort` +third_headers=`find ./third_party -type f -iname '*.h' | grep -v glog | sed -r 's/^\.\//\t/' | sort` -third_glog_sources=`find ./third_party -type f -iname '*.cc' -or -iname '*.cpp' -or -iname '*.c' | grep glog | grep -v windows | sed -r 's/^\.\//\t\t/'` -third_glog_headers=`find ./third_party -type f -iname '*.h' | grep glog | grep -v windows | sed -r 's/^\.\//\t\t/'` +third_glog_sources=`find ./third_party -type f -iname '*.cc' -or -iname '*.cpp' -or -iname '*.c' | grep glog | grep -v windows | sed -r 's/^\.\//\t\t/' | sort` +third_glog_headers=`find ./third_party -type f -iname '*.h' | grep glog | grep -v windows | sed -r 's/^\.\//\t\t/' | sort` src_dir=`find ./libmv -type f -iname '*.cc' -exec dirname {} \; -or -iname '*.cpp' -exec dirname {} \; -or -iname '*.c' -exec dirname {} \; | sed -r 's/^\.\//\t/' | sort | uniq` src_third_dir=`find ./third_party -type f -iname '*.cc' -exec dirname {} \; -or -iname '*.cpp' -exec dirname {} \; -or -iname '*.c' -exec dirname {} \; | sed -r 's/^\.\//\t/' | sort | uniq` @@ -89,7 +89,6 @@ for x in $src_dir $src_third_dir; do done cat > CMakeLists.txt << EOF -# \$Id\$ # ***** BEGIN GPL LICENSE BLOCK ***** # # This program is free software; you can redistribute it and/or @@ -114,17 +113,21 @@ cat > CMakeLists.txt << EOF # # ***** END GPL LICENSE BLOCK ***** +# NOTEL This file is automatically generated by bundle.sh script +# If you're doing changes in this file, please update template +# in that script too + set(INC . ../Eigen3 - ./third_party/ssba - ./third_party/ldl/Include + third_party/ssba + third_party/ldl/Include ../colamd/Include ) set(INC_SYS - ${PNG_INCLUDE_DIR} - ${ZLIB_INCLUDE_DIRS} + \${PNG_INCLUDE_DIR} + \${ZLIB_INCLUDE_DIRS} ) set(SRC @@ -139,7 +142,7 @@ ${headers} ${third_headers} ) -IF(WIN32) +if(WIN32) list(APPEND SRC third_party/glog/src/logging.cc third_party/glog/src/raw_logging.cc @@ -167,28 +170,23 @@ IF(WIN32) ) list(APPEND INC - ./third_party/glog/src/windows + third_party/glog/src/windows ) - IF(NOT MINGW) + if(NOT MINGW) list(APPEND INC - ./third_party/msinttypes + third_party/msinttypes ) - ENDIF(MINGW) + endif() - list(APPEND INC - ./third_party/glog/src/windows - ./third_party/msinttypes - ) - - IF(MSVC) + if(MSVC) set(MSVC_OFLAGS O1 O2 Ox) foreach(FLAG \${MSVC_OFLAGS}) string(REPLACE "\${FLAG}" "Od" CMAKE_CXX_FLAGS_RELEASE "\${CMAKE_CXX_FLAGS_RELEASE}") string(REPLACE "\${FLAG}" "Od" CMAKE_C_FLAGS_RELWITHDEBINFO "\${CMAKE_C_FLAGS_RELWITHDEBINFO}") endforeach() - ENDIF(MSVC) -ELSE(WIN32) + endif() +else() list(APPEND SRC ${third_glog_sources} @@ -196,17 +194,25 @@ ${third_glog_headers} ) list(APPEND INC - ./third_party/glog/src + third_party/glog/src ) -ENDIF(WIN32) +endif() -add_definitions(-DV3DLIB_ENABLE_SUITESPARSE -DGOOGLE_GLOG_DLL_DECL=) +add_definitions( + -DV3DLIB_ENABLE_SUITESPARSE + -DGOOGLE_GLOG_DLL_DECL= +) blender_add_lib(extern_libmv "\${SRC}" "\${INC}" "\${INC_SYS}") EOF cat > SConscript << EOF #!/usr/bin/python + +# NOTEL This file is automatically generated by bundle.sh script +# If you're doing changes in this file, please update template +# in that script too + import sys import os @@ -229,7 +235,6 @@ incs += ' ' + env['BF_PNG_INC'] incs += ' ' + env['BF_ZLIB_INC'] if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'): - incs += ' ./third_party/glog/src/windows ./third_party/glog/src/windows/glog' incs += ' ./third_party/glog/src/windows ./third_party/glog/src/windows/glog' if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'): incs += ' ./third_party/msinttypes' @@ -246,16 +251,16 @@ ${win_src} defs.append('NDEBUG') else: if not env['BF_DEBUG']: - cflags_libmv = Split(env['REL_CFLAGS']) - ccflags_libmv = Split(env['REL_CCFLAGS']) - cxxflags_libmv = Split(env['REL_CXXFLAGS']) + cflags_libmv += Split(env['REL_CFLAGS']) + ccflags_libmv += Split(env['REL_CCFLAGS']) + cxxflags_libmv += Split(env['REL_CXXFLAGS']) else: src += env.Glob("third_party/glog/src/*.cc") incs += ' ./third_party/glog/src' if not env['BF_DEBUG']: - cflags_libmv = Split(env['REL_CFLAGS']) - ccflags_libmv = Split(env['REL_CCFLAGS']) - cxxflags_libmv = Split(env['REL_CXXFLAGS']) + cflags_libmv += Split(env['REL_CFLAGS']) + ccflags_libmv += Split(env['REL_CCFLAGS']) + cxxflags_libmv += Split(env['REL_CXXFLAGS']) incs += ' ./third_party/ssba ./third_party/ldl/Include ../colamd/Include' diff --git a/extern/libmv/files.txt b/extern/libmv/files.txt index fe6be5d0b20..96dfd89828e 100644 --- a/extern/libmv/files.txt +++ b/extern/libmv/files.txt @@ -1,141 +1,151 @@ -libmv/logging/logging.h -libmv/numeric/dogleg.h -libmv/numeric/levenberg_marquardt.h -libmv/numeric/poly.h -libmv/numeric/numeric.cc -libmv/numeric/function_derivative.h -libmv/numeric/poly.cc -libmv/numeric/tinyvector.cc -libmv/numeric/numeric.h -libmv/simple_pipeline/reconstruction.cc -libmv/simple_pipeline/resect.h -libmv/simple_pipeline/resect.cc -libmv/simple_pipeline/reconstruction.h -libmv/simple_pipeline/camera_intrinsics.h -libmv/simple_pipeline/intersect.cc -libmv/simple_pipeline/initialize_reconstruction.cc -libmv/simple_pipeline/camera_intrinsics.cc -libmv/simple_pipeline/pipeline.cc -libmv/simple_pipeline/tracks.h -libmv/simple_pipeline/detect.h -libmv/simple_pipeline/detect.cc -libmv/simple_pipeline/pipeline.h -libmv/simple_pipeline/tracks.cc -libmv/simple_pipeline/bundle.cc -libmv/simple_pipeline/intersect.h -libmv/simple_pipeline/bundle.h -libmv/simple_pipeline/initialize_reconstruction.h -libmv/image/convolve.h -libmv/image/tuple.h +libmv/base/id_generator.h +libmv/base/scoped_ptr.h +libmv/base/vector.h +libmv/base/vector_utils.h +libmv/image/array_nd.cc libmv/image/array_nd.h libmv/image/convolve.cc -libmv/image/array_nd.cc -libmv/image/sample.h +libmv/image/convolve.h libmv/image/image.h -libmv/tracking/pyramid_region_tracker.cc -libmv/tracking/region_tracker.h -libmv/tracking/sad.cc -libmv/tracking/trklt_region_tracker.cc -libmv/tracking/klt_region_tracker.cc -libmv/tracking/retrack_region_tracker.h -libmv/tracking/sad.h -libmv/tracking/pyramid_region_tracker.h -libmv/tracking/trklt_region_tracker.h -libmv/tracking/retrack_region_tracker.cc -libmv/tracking/klt_region_tracker.h -libmv/base/id_generator.h -libmv/base/vector.h -libmv/base/scoped_ptr.h -libmv/base/vector_utils.h -libmv/multiview/projection.cc +libmv/image/sample.h +libmv/image/tuple.h +libmv/logging/logging.h libmv/multiview/conditioning.cc -libmv/multiview/nviewtriangulation.h -libmv/multiview/resection.h -libmv/multiview/fundamental.cc +libmv/multiview/conditioning.h libmv/multiview/euclidean_resection.cc libmv/multiview/euclidean_resection.h -libmv/multiview/triangulation.h -libmv/multiview/projection.h -libmv/multiview/triangulation.cc +libmv/multiview/fundamental.cc libmv/multiview/fundamental.h -libmv/multiview/conditioning.h -third_party/ssba/README.TXT -third_party/ssba/COPYING.TXT -third_party/ssba/Geometry/v3d_metricbundle.h -third_party/ssba/Geometry/v3d_metricbundle.cpp -third_party/ssba/Geometry/v3d_cameramatrix.h -third_party/ssba/Geometry/v3d_distortion.h -third_party/ssba/README.libmv -third_party/ssba/Math/v3d_linear_utils.h -third_party/ssba/Math/v3d_optimization.h -third_party/ssba/Math/v3d_mathutilities.h -third_party/ssba/Math/v3d_linear.h -third_party/ssba/Math/v3d_optimization.cpp -third_party/gflags/gflags_completions.h -third_party/gflags/mutex.h -third_party/gflags/gflags.cc -third_party/gflags/gflags_reporting.cc -third_party/gflags/README.libmv -third_party/gflags/config.h -third_party/gflags/gflags_completions.cc -third_party/gflags/gflags.h -third_party/fast/fast_9.c +libmv/multiview/nviewtriangulation.h +libmv/multiview/projection.cc +libmv/multiview/projection.h +libmv/multiview/resection.h +libmv/multiview/triangulation.cc +libmv/multiview/triangulation.h +libmv/numeric/dogleg.h +libmv/numeric/function_derivative.h +libmv/numeric/levenberg_marquardt.h +libmv/numeric/numeric.cc +libmv/numeric/numeric.h +libmv/numeric/poly.cc +libmv/numeric/poly.h +libmv/simple_pipeline/bundle.cc +libmv/simple_pipeline/bundle.h +libmv/simple_pipeline/callbacks.cc +libmv/simple_pipeline/callbacks.h +libmv/simple_pipeline/camera_intrinsics.cc +libmv/simple_pipeline/camera_intrinsics.h +libmv/simple_pipeline/detect.cc +libmv/simple_pipeline/detect.h +libmv/simple_pipeline/initialize_reconstruction.cc +libmv/simple_pipeline/initialize_reconstruction.h +libmv/simple_pipeline/intersect.cc +libmv/simple_pipeline/intersect.h +libmv/simple_pipeline/pipeline.cc +libmv/simple_pipeline/pipeline.h +libmv/simple_pipeline/reconstruction.cc +libmv/simple_pipeline/reconstruction.h +libmv/simple_pipeline/resect.cc +libmv/simple_pipeline/resect.h +libmv/simple_pipeline/tracks.cc +libmv/simple_pipeline/tracks.h +libmv/tracking/brute_region_tracker.cc +libmv/tracking/brute_region_tracker.h +libmv/tracking/esm_region_tracker.cc +libmv/tracking/esm_region_tracker.h +libmv/tracking/hybrid_region_tracker.cc +libmv/tracking/hybrid_region_tracker.h +libmv/tracking/klt_region_tracker.cc +libmv/tracking/klt_region_tracker.h +libmv/tracking/lmicklt_region_tracker.cc +libmv/tracking/lmicklt_region_tracker.h +libmv/tracking/pyramid_region_tracker.cc +libmv/tracking/pyramid_region_tracker.h +libmv/tracking/region_tracker.h +libmv/tracking/retrack_region_tracker.cc +libmv/tracking/retrack_region_tracker.h +libmv/tracking/sad.cc +libmv/tracking/sad.h +libmv/tracking/trklt_region_tracker.cc +libmv/tracking/trklt_region_tracker.h third_party/fast/fast_10.c third_party/fast/fast_11.c +third_party/fast/fast_12.c +third_party/fast/fast_9.c +third_party/fast/fast.c third_party/fast/fast.h third_party/fast/LICENSE -third_party/fast/fast_12.c -third_party/fast/fast.c +third_party/fast/nonmax.c third_party/fast/README third_party/fast/README.libmv -third_party/fast/nonmax.c -third_party/ldl/Include/ldl.h -third_party/ldl/CMakeLists.txt -third_party/ldl/README.libmv -third_party/ldl/Doc/ChangeLog -third_party/ldl/Doc/lesser.txt -third_party/ldl/README.txt -third_party/ldl/Source/ldl.c +third_party/gflags/config.h +third_party/gflags/gflags.cc +third_party/gflags/gflags_completions.cc +third_party/gflags/gflags_completions.h +third_party/gflags/gflags.h +third_party/gflags/gflags_reporting.cc +third_party/gflags/mutex.h +third_party/gflags/README.libmv +third_party/glog/AUTHORS third_party/glog/ChangeLog third_party/glog/COPYING -third_party/glog/src/utilities.cc -third_party/glog/src/utilities.h -third_party/glog/src/symbolize.cc -third_party/glog/src/stacktrace_generic-inl.h -third_party/glog/src/config_mac.h -third_party/glog/src/vlog_is_on.cc -third_party/glog/src/signalhandler.cc -third_party/glog/src/stacktrace.h -third_party/glog/src/stacktrace_x86_64-inl.h -third_party/glog/src/symbolize.h -third_party/glog/src/base/googleinit.h -third_party/glog/src/base/mutex.h -third_party/glog/src/base/commandlineflags.h -third_party/glog/src/windows/preprocess.sh -third_party/glog/src/windows/port.h -third_party/glog/src/windows/config.h -third_party/glog/src/windows/glog/raw_logging.h -third_party/glog/src/windows/glog/vlog_is_on.h -third_party/glog/src/windows/glog/logging.h -third_party/glog/src/windows/glog/log_severity.h -third_party/glog/src/windows/port.cc -third_party/glog/src/logging.cc -third_party/glog/src/stacktrace_powerpc-inl.h -third_party/glog/src/stacktrace_x86-inl.h -third_party/glog/src/demangle.cc -third_party/glog/src/config.h -third_party/glog/src/demangle.h -third_party/glog/src/stacktrace_libunwind-inl.h -third_party/glog/src/glog/raw_logging.h -third_party/glog/src/glog/vlog_is_on.h -third_party/glog/src/glog/logging.h -third_party/glog/src/glog/log_severity.h -third_party/glog/src/raw_logging.cc -third_party/glog/src/config_linux.h third_party/glog/NEWS third_party/glog/README third_party/glog/README.libmv -third_party/glog/AUTHORS -third_party/msinttypes/stdint.h +third_party/glog/src/base/commandlineflags.h +third_party/glog/src/base/googleinit.h +third_party/glog/src/base/mutex.h +third_party/glog/src/config_freebsd.h +third_party/glog/src/config.h +third_party/glog/src/config_linux.h +third_party/glog/src/config_mac.h +third_party/glog/src/demangle.cc +third_party/glog/src/demangle.h +third_party/glog/src/glog/logging.h +third_party/glog/src/glog/log_severity.h +third_party/glog/src/glog/raw_logging.h +third_party/glog/src/glog/vlog_is_on.h +third_party/glog/src/logging.cc +third_party/glog/src/raw_logging.cc +third_party/glog/src/signalhandler.cc +third_party/glog/src/stacktrace_generic-inl.h +third_party/glog/src/stacktrace.h +third_party/glog/src/stacktrace_libunwind-inl.h +third_party/glog/src/stacktrace_powerpc-inl.h +third_party/glog/src/stacktrace_x86_64-inl.h +third_party/glog/src/stacktrace_x86-inl.h +third_party/glog/src/symbolize.cc +third_party/glog/src/symbolize.h +third_party/glog/src/utilities.cc +third_party/glog/src/utilities.h +third_party/glog/src/vlog_is_on.cc +third_party/glog/src/windows/config.h +third_party/glog/src/windows/glog/logging.h +third_party/glog/src/windows/glog/log_severity.h +third_party/glog/src/windows/glog/raw_logging.h +third_party/glog/src/windows/glog/vlog_is_on.h +third_party/glog/src/windows/port.cc +third_party/glog/src/windows/port.h +third_party/glog/src/windows/preprocess.sh +third_party/ldl/CMakeLists.txt +third_party/ldl/Doc/ChangeLog +third_party/ldl/Doc/lesser.txt +third_party/ldl/Include/ldl.h +third_party/ldl/README.libmv +third_party/ldl/README.txt +third_party/ldl/Source/ldl.c third_party/msinttypes/inttypes.h third_party/msinttypes/README.libmv +third_party/msinttypes/stdint.h +third_party/ssba/COPYING.TXT +third_party/ssba/Geometry/v3d_cameramatrix.h +third_party/ssba/Geometry/v3d_distortion.h +third_party/ssba/Geometry/v3d_metricbundle.cpp +third_party/ssba/Geometry/v3d_metricbundle.h +third_party/ssba/Math/v3d_linear.h +third_party/ssba/Math/v3d_linear_utils.h +third_party/ssba/Math/v3d_mathutilities.h +third_party/ssba/Math/v3d_optimization.cpp +third_party/ssba/Math/v3d_optimization.h +third_party/ssba/README.libmv +third_party/ssba/README.TXT diff --git a/extern/libmv/mkfiles.sh b/extern/libmv/mkfiles.sh index 6618f2849ea..fe84c357de4 100755 --- a/extern/libmv/mkfiles.sh +++ b/extern/libmv/mkfiles.sh @@ -1,4 +1,4 @@ #!/bin/sh -find ./libmv/ -type f | sed -r 's/^\.\///' > files.txt -find ./third_party/ -type f | sed -r 's/^\.\///' >> files.txt +find ./libmv/ -type f | sed -r 's/^\.\///' | sort > files.txt +find ./third_party/ -type f | sed -r 's/^\.\///' | sort >> files.txt From e9be94b82dd6bc00fc9ef4edad08c8854f2499ab Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 15 Dec 2011 13:01:01 +0000 Subject: [PATCH 41/70] Fix #29233: Windows accessibility feature "sticky keys" for disabled people not working. --- intern/ghost/intern/GHOST_SystemWin32.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/intern/ghost/intern/GHOST_SystemWin32.cpp b/intern/ghost/intern/GHOST_SystemWin32.cpp index 78afe0bd680..4ae87da4efe 100644 --- a/intern/ghost/intern/GHOST_SystemWin32.cpp +++ b/intern/ghost/intern/GHOST_SystemWin32.cpp @@ -438,8 +438,12 @@ GHOST_TKey GHOST_SystemWin32::hardKey(GHOST_IWindow *window, RAWINPUT const& raw GHOST_ModifierKeys modifiers; system->retrieveModifierKeys(modifiers); - - *keyDown = !(raw.data.keyboard.Flags & RI_KEY_BREAK); + + // RI_KEY_BREAK doesn't work for sticky keys release, so we also + // check for the up message + unsigned int msg = raw.data.keyboard.Message; + *keyDown = !(raw.data.keyboard.Flags & RI_KEY_BREAK) && msg != WM_KEYUP && msg != WM_SYSKEYUP; + key = this->convertKey(window, raw.data.keyboard.VKey, raw.data.keyboard.MakeCode, (raw.data.keyboard.Flags&(RI_KEY_E1|RI_KEY_E0))); // extra handling of modifier keys: don't send repeats out from GHOST From 030694b26041d793ca53aa4282e3e4e2d98f559f Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Thu, 15 Dec 2011 13:41:29 +0000 Subject: [PATCH 42/70] BCon 1: Alpha, new features, fun and fixes again! :) --- source/blender/blenkernel/BKE_blender.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenkernel/BKE_blender.h b/source/blender/blenkernel/BKE_blender.h index 3662a30e8ec..cb4fba43f8d 100644 --- a/source/blender/blenkernel/BKE_blender.h +++ b/source/blender/blenkernel/BKE_blender.h @@ -51,7 +51,7 @@ extern "C" { /* can be left blank, otherwise a,b,c... etc with no quotes */ #define BLENDER_VERSION_CHAR /* alpha/beta/rc/release, docs use this */ -#define BLENDER_VERSION_CYCLE release +#define BLENDER_VERSION_CYCLE alpha extern char versionstr[]; /* from blender.c */ From 6ccc605660ea0b45b723016e82b3635f8d5cc707 Mon Sep 17 00:00:00 2001 From: Antony Riakiotakis Date: Thu, 15 Dec 2011 13:58:09 +0000 Subject: [PATCH 43/70] Bicubic bump map filtering. This commit introduces bicubic bump map capabilities for the viewport for OpenGL 3.0+ capable GPUs. To use the functionality change the bump mapping method to "best quality" Previous "best quality" setting becomes "medium quality" now. For non OpenGL 3.0 GPUs this becomes the same as "medium quality" Also: * added tooltip descriptions to the bump method settings. * modified the shader to ommit extraneous matrix multiplications for matrices already provided by OpenGL. Bicubic shader by Morten Mikkelsen. Thanks a lot! Oh...and FIRST! --- .../startup/bl_ui/properties_texture.py | 2 +- source/blender/blenkernel/intern/material.c | 2 +- source/blender/gpu/GPU_extensions.h | 2 + source/blender/gpu/intern/gpu_codegen.c | 42 +- source/blender/gpu/intern/gpu_material.c | 17 +- .../gpu/intern/gpu_shader_material.glsl | 82 +- .../gpu/intern/gpu_shader_material.glsl.c | 3044 +++++++++-------- source/blender/makesdna/DNA_texture_types.h | 1 + source/blender/makesrna/intern/rna_material.c | 6 +- .../render/intern/source/render_texture.c | 2 +- .../windowmanager/intern/wm_init_exit.c | 1 + 11 files changed, 1745 insertions(+), 1456 deletions(-) diff --git a/release/scripts/startup/bl_ui/properties_texture.py b/release/scripts/startup/bl_ui/properties_texture.py index 358f1e12239..c7f94bb4a3d 100644 --- a/release/scripts/startup/bl_ui/properties_texture.py +++ b/release/scripts/startup/bl_ui/properties_texture.py @@ -1056,7 +1056,7 @@ class TEXTURE_PT_influence(TextureSlotPanel, Panel): # the space setting is supported for: derivative-maps + bump-maps (DEFAULT,BEST_QUALITY), not for normal-maps sub = row.row() - sub.active = (tex.use_map_normal or tex.use_map_warp) and not (tex.texture.type == 'IMAGE' and tex.texture.use_normal_map) and ((tex.bump_method in {'BUMP_DEFAULT', 'BUMP_BEST_QUALITY'}) or (tex.texture.type == 'IMAGE' and tex.texture.use_derivative_map)) + sub.active = (tex.use_map_normal or tex.use_map_warp) and not (tex.texture.type == 'IMAGE' and tex.texture.use_normal_map) and ((tex.bump_method in {'BUMP_LOW_QUALITY', 'BUMP_MEDIUM_QUALITY', 'BUMP_BEST_QUALITY'}) or (tex.texture.type == 'IMAGE' and tex.texture.use_derivative_map)) sub.prop(tex, "bump_objectspace", text="Space") diff --git a/source/blender/blenkernel/intern/material.c b/source/blender/blenkernel/intern/material.c index 60ae86063e8..4fda85a3247 100644 --- a/source/blender/blenkernel/intern/material.c +++ b/source/blender/blenkernel/intern/material.c @@ -903,7 +903,7 @@ static void do_init_render_material(Material *ma, int r_mode, float *amb) /* always get derivatives for these textures */ if ELEM3(mtex->tex->type, TEX_IMAGE, TEX_PLUGIN, TEX_ENVMAP) ma->texco |= TEXCO_OSA; - else if(mtex->texflag & (MTEX_COMPAT_BUMP|MTEX_3TAP_BUMP|MTEX_5TAP_BUMP)) ma->texco |= TEXCO_OSA; + else if(mtex->texflag & (MTEX_COMPAT_BUMP|MTEX_3TAP_BUMP|MTEX_5TAP_BUMP|MTEX_BICUBIC_BUMP)) ma->texco |= TEXCO_OSA; if(ma->texco & (TEXCO_ORCO|TEXCO_REFL|TEXCO_NORM|TEXCO_STRAND|TEXCO_STRESS)) needuv= 1; else if(ma->texco & (TEXCO_GLOB|TEXCO_UV|TEXCO_OBJECT|TEXCO_SPEED)) needuv= 1; diff --git a/source/blender/gpu/GPU_extensions.h b/source/blender/gpu/GPU_extensions.h index d827fda0844..1dbe9ed7371 100644 --- a/source/blender/gpu/GPU_extensions.h +++ b/source/blender/gpu/GPU_extensions.h @@ -61,6 +61,8 @@ int GPU_print_error(const char *str); int GPU_glsl_support(void); int GPU_non_power_of_two_support(void); int GPU_color_depth(void); +void GPU_code_generate_glsl_lib(void); +int GPU_bicubic_bump_support(void); /* GPU Types */ diff --git a/source/blender/gpu/intern/gpu_codegen.c b/source/blender/gpu/intern/gpu_codegen.c index 05c459b703d..cc4b092a071 100644 --- a/source/blender/gpu/intern/gpu_codegen.c +++ b/source/blender/gpu/intern/gpu_codegen.c @@ -59,6 +59,10 @@ extern char datatoc_gpu_shader_material_glsl[]; extern char datatoc_gpu_shader_vertex_glsl[]; + +static char *glsl_material_library = NULL; + + /* structs and defines */ static const char* GPU_DATATYPE_STR[17] = {"", "float", "vec2", "vec3", "vec4", @@ -229,7 +233,7 @@ GPUFunction *GPU_lookup_function(const char *name) { if(!FUNCTION_HASH) { FUNCTION_HASH = BLI_ghash_new(BLI_ghashutil_strhash, BLI_ghashutil_strcmp, "GPU_lookup_function gh"); - gpu_parse_functions_string(FUNCTION_HASH, datatoc_gpu_shader_material_glsl); + gpu_parse_functions_string(FUNCTION_HASH, glsl_material_library); /*FUNCTION_PROTOTYPES = gpu_generate_function_prototyps(FUNCTION_HASH); FUNCTION_LIB = GPU_shader_create_lib(datatoc_gpu_shader_material_glsl);*/ } @@ -248,6 +252,9 @@ void GPU_extensions_exit(void) BLI_ghash_free(FUNCTION_HASH, NULL, (GHashValFreeFP)MEM_freeN); FUNCTION_HASH = NULL; } + + if(glsl_material_library) + MEM_freeN(glsl_material_library); /*if(FUNCTION_PROTOTYPES) { MEM_freeN(FUNCTION_PROTOTYPES); FUNCTION_PROTOTYPES = NULL; @@ -640,6 +647,35 @@ static char *code_generate_vertex(ListBase *nodes) return code; } +int GPU_bicubic_bump_support(void){ + return GLEW_ARB_texture_gather && GLEW_ARB_texture_query_lod && GLEW_VERSION_3_0; +} + +void GPU_code_generate_glsl_lib(void){ + DynStr *ds; + + /* only initialize the library once */ + if(glsl_material_library) + return; + + ds = BLI_dynstr_new(); + + if(GPU_bicubic_bump_support()){ + BLI_dynstr_append(ds, "/* These are needed for high quality bump mapping */\n" + "#version 130\n" + "#extension GL_ARB_texture_gather: enable\n" + "#extension GL_ARB_texture_query_lod: enable\n" + "#define BUMP_BICUBIC\n"); + } + BLI_dynstr_append(ds, datatoc_gpu_shader_material_glsl); + + + glsl_material_library = BLI_dynstr_get_cstring(ds); + + BLI_dynstr_free(ds); +} + + /* GPU pass binding/unbinding */ GPUShader *GPU_pass_shader(GPUPass *pass) @@ -1318,7 +1354,7 @@ GPUPass *GPU_generate_pass(ListBase *nodes, GPUNodeLink *outlink, GPUVertexAttri /* generate code and compile with opengl */ fragmentcode = code_generate_fragment(nodes, outlink->output, name); vertexcode = code_generate_vertex(nodes); - shader = GPU_shader_create(vertexcode, fragmentcode, datatoc_gpu_shader_material_glsl); /*FUNCTION_LIB);*/ + shader = GPU_shader_create(vertexcode, fragmentcode, glsl_material_library); /*FUNCTION_LIB);*/ /* failed? */ if (!shader) { @@ -1335,7 +1371,7 @@ GPUPass *GPU_generate_pass(ListBase *nodes, GPUNodeLink *outlink, GPUVertexAttri pass->shader = shader; pass->fragmentcode = fragmentcode; pass->vertexcode = vertexcode; - pass->libcode = datatoc_gpu_shader_material_glsl; + pass->libcode = glsl_material_library; /* extract dynamic inputs and throw away nodes */ GPU_nodes_extract_dynamic_inputs(pass, nodes); diff --git a/source/blender/gpu/intern/gpu_material.c b/source/blender/gpu/intern/gpu_material.c index 2d8487deb71..4b991a36626 100644 --- a/source/blender/gpu/intern/gpu_material.c +++ b/source/blender/gpu/intern/gpu_material.c @@ -1086,7 +1086,7 @@ static void do_material_tex(GPUShadeInput *shi) GPU_link(mat, "mtex_blend_normal", tnorfac, shi->vn, newnor, &shi->vn); } - } else if( (mtex->texflag & (MTEX_3TAP_BUMP|MTEX_5TAP_BUMP)) || found_deriv_map) { + } else if( (mtex->texflag & (MTEX_3TAP_BUMP|MTEX_5TAP_BUMP|MTEX_BICUBIC_BUMP)) || found_deriv_map) { /* ntap bumpmap image */ int iBumpSpace; float ima_x, ima_y; @@ -1184,10 +1184,21 @@ static void do_material_tex(GPUShadeInput *shi) GPU_link( mat, "mtex_bump_tap3", texco, GPU_image(tex->ima, &tex->iuser), tnorfac, &dBs, &dBt ); - else - GPU_link( mat, "mtex_bump_tap5", + else if( mtex->texflag & MTEX_5TAP_BUMP ) + GPU_link( mat, "mtex_bump_tap5", texco, GPU_image(tex->ima, &tex->iuser), tnorfac, &dBs, &dBt ); + else if( mtex->texflag & MTEX_BICUBIC_BUMP ){ + if(GPU_bicubic_bump_support()){ + GPU_link( mat, "mtex_bump_bicubic", + texco, GPU_image(tex->ima, &tex->iuser), tnorfac, + &dBs, &dBt ); + }else{ + GPU_link( mat, "mtex_bump_tap5", + texco, GPU_image(tex->ima, &tex->iuser), tnorfac, + &dBs, &dBt ); + } + } if( mtex->texflag & MTEX_BUMP_TEXTURESPACE ) { diff --git a/source/blender/gpu/intern/gpu_shader_material.glsl b/source/blender/gpu/intern/gpu_shader_material.glsl index 4e5ee71431a..7429355f528 100644 --- a/source/blender/gpu/intern/gpu_shader_material.glsl +++ b/source/blender/gpu/intern/gpu_shader_material.glsl @@ -1152,8 +1152,8 @@ void mtex_bump_init_objspace( vec3 surf_pos, vec3 surf_norm, out float fPrevMagnitude_out, out vec3 vNacc_out, out vec3 vR1, out vec3 vR2, out float fDet ) { - mat3 obj2view = to_mat3(mView * mObj); - mat3 view2obj = to_mat3(mObjInv * mViewInv); + mat3 obj2view = to_mat3(gl_ModelViewMatrix); + mat3 view2obj = to_mat3(gl_ModelViewMatrixInverse); vec3 vSigmaS = view2obj * dFdx( surf_pos ); vec3 vSigmaT = view2obj * dFdy( surf_pos ); @@ -1225,6 +1225,84 @@ void mtex_bump_tap3( vec3 texco, sampler2D ima, float hScale, dBt = hScale * (Hul - Hll); } +#ifdef BUMP_BICUBIC + +void mtex_bump_bicubic( vec3 texco, sampler2D ima, float hScale, + out float dBs, out float dBt ) +{ + vec2 TexDx = dFdx(texco.xy); + vec2 TexDy = dFdy(texco.xy); + + vec2 STl = texco.xy - 0.5 * TexDx ; + vec2 STr = texco.xy + 0.5 * TexDx ; + vec2 STd = texco.xy - 0.5 * TexDy ; + vec2 STu = texco.xy + 0.5 * TexDy ; + + float Hl = texture2D(ima, STl).x; + float Hr = texture2D(ima, STr).x; + float Hd = texture2D(ima, STd).x; + float Hu = texture2D(ima, STu).x; + + vec2 dHdxy = vec2(Hr - Hl, Hu - Hd); + float fBlend = clamp(1.0-textureQueryLOD(ima, texco.xy).x, 0.0, 1.0); + if(fBlend!=0.0) + { + // the derivative of the bicubic sampling of level 0 + ivec2 vDim; + vDim = textureSize(ima, 0); + + vec2 fTexLoc = vDim*texco.xy-vec2(0.5,0.5); + ivec2 iTexLoc = ivec2(floor(fTexLoc)); + vec2 t = clamp(fTexLoc - iTexLoc, 0.0, 1.0); // sat just to be pedantic + + ivec2 iTexLocMod = iTexLoc + ivec2(-1, -1); + +/******************************************************************************************* + * This block will replace the one below when one channel textures are properly supported. * + ******************************************************************************************* + vec4 vSamplesUL = textureGather(ima, (iTexLoc+ivec2(-1,-1) + vec2(0.5,0.5))/vDim ); + vec4 vSamplesUR = textureGather(ima, (iTexLoc+ivec2(1,-1) + vec2(0.5,0.5))/vDim ); + vec4 vSamplesLL = textureGather(ima, (iTexLoc+ivec2(-1,1) + vec2(0.5,0.5))/vDim ); + vec4 vSamplesLR = textureGather(ima, (iTexLoc+ivec2(1,1) + vec2(0.5,0.5))/vDim ); + + mat4 H = mat4(vSamplesUL.w, vSamplesUL.x, vSamplesLL.w, vSamplesLL.x, + vSamplesUL.z, vSamplesUL.y, vSamplesLL.z, vSamplesLL.y, + vSamplesUR.w, vSamplesUR.x, vSamplesLR.w, vSamplesLR.x, + vSamplesUR.z, vSamplesUR.y, vSamplesLR.z, vSamplesLR.y); +*/ + mat4 H; + + for(int i = 0; i < 4; i++){ + for(int j = 0; j < 4; j++){ + mtex_rgbtoint(texelFetch(ima, (iTexLocMod + ivec2(i,j)), 0), H[i][j]); + } + } + + float x = t.x, y = t.y; + float x2 = x * x, x3 = x2 * x, y2 = y * y, y3 = y2 * y; + + vec4 X = vec4(-0.5*(x3+x)+x2, 1.5*x3-2.5*x2+1, -1.5*x3+2*x2+0.5*x, 0.5*(x3-x2)); + vec4 Y = vec4(-0.5*(y3+y)+y2, 1.5*y3-2.5*y2+1, -1.5*y3+2*y2+0.5*y, 0.5*(y3-y2)); + vec4 dX = vec4(-1.5*x2+2*x-0.5, 4.5*x2-5*x, -4.5*x2+4*x+0.5, 1.5*x2-x); + vec4 dY = vec4(-1.5*y2+2*y-0.5, 4.5*y2-5*y, -4.5*y2+4*y+0.5, 1.5*y2-y); + + // complete derivative in normalized coordinates (mul by vDim) + vec2 dHdST = vDim * vec2(dot(Y, H * dX), dot(dY, H * X)); + + // transform derivative to screen-space + vec2 dHdxy_bicubic = vec2( dHdST.x * TexDx.x + dHdST.y * TexDx.y, + dHdST.x * TexDy.x + dHdST.y * TexDy.y ); + + // blend between the two + dHdxy = dHdxy*(1-fBlend) + dHdxy_bicubic*fBlend; + } + + dBs = hScale * dHdxy.x; + dBt = hScale * dHdxy.y; +} + +#endif + void mtex_bump_tap5( vec3 texco, sampler2D ima, float hScale, out float dBs, out float dBt ) { diff --git a/source/blender/gpu/intern/gpu_shader_material.glsl.c b/source/blender/gpu/intern/gpu_shader_material.glsl.c index 1d7e5f94d5f..5d95e2fc1eb 100644 --- a/source/blender/gpu/intern/gpu_shader_material.glsl.c +++ b/source/blender/gpu/intern/gpu_shader_material.glsl.c @@ -1,1473 +1,1631 @@ /* DataToC output of file */ -int datatoc_gpu_shader_material_glsl_size= 46917; +int datatoc_gpu_shader_material_glsl_size= 51980; char datatoc_gpu_shader_material_glsl[]= { - 10,102,108,111, 97, -116, 32,101,120,112, 95, 98,108,101,110,100,101,114, 40,102,108,111, 97,116, 32,102, 41, 10,123, 10, 9,114,101,116,117,114,110, - 32,112,111,119, 40, 50, 46, 55, 49, 56, 50, 56, 49, 56, 50, 56, 52, 54, 44, 32,102, 41, 59, 10,125, 10, 10,118,111,105,100, 32, -114,103, 98, 95,116,111, 95,104,115,118, 40,118,101, 99, 52, 32,114,103, 98, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117, -116, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32, 99,109, 97,120, 44, 32, 99,109,105,110, 44, 32,104, 44, 32,115, 44, - 32,118, 44, 32, 99,100,101,108,116, 97, 59, 10, 9,118,101, 99, 51, 32, 99, 59, 10, 10, 9, 99,109, 97,120, 32, 61, 32,109, 97, -120, 40,114,103, 98, 91, 48, 93, 44, 32,109, 97,120, 40,114,103, 98, 91, 49, 93, 44, 32,114,103, 98, 91, 50, 93, 41, 41, 59, 10, - 9, 99,109,105,110, 32, 61, 32,109,105,110, 40,114,103, 98, 91, 48, 93, 44, 32,109,105,110, 40,114,103, 98, 91, 49, 93, 44, 32, -114,103, 98, 91, 50, 93, 41, 41, 59, 10, 9, 99,100,101,108,116, 97, 32, 61, 32, 99,109, 97,120, 45, 99,109,105,110, 59, 10, 10, - 9,118, 32, 61, 32, 99,109, 97,120, 59, 10, 9,105,102, 32, 40, 99,109, 97,120, 33, 61, 48, 46, 48, 41, 10, 9, 9,115, 32, 61, - 32, 99,100,101,108,116, 97, 47, 99,109, 97,120, 59, 10, 9,101,108,115,101, 32,123, 10, 9, 9,115, 32, 61, 32, 48, 46, 48, 59, - 10, 9, 9,104, 32, 61, 32, 48, 46, 48, 59, 10, 9,125, 10, 10, 9,105,102, 32, 40,115, 32, 61, 61, 32, 48, 46, 48, 41, 32,123, - 10, 9, 9,104, 32, 61, 32, 48, 46, 48, 59, 10, 9,125, 10, 9,101,108,115,101, 32,123, 10, 9, 9, 99, 32, 61, 32, 40,118,101, - 99, 51, 40, 99,109, 97,120, 44, 32, 99,109, 97,120, 44, 32, 99,109, 97,120, 41, 32, 45, 32,114,103, 98, 46,120,121,122, 41, 47, - 99,100,101,108,116, 97, 59, 10, 10, 9, 9,105,102, 32, 40,114,103, 98, 46,120, 61, 61, 99,109, 97,120, 41, 32,104, 32, 61, 32, - 99, 91, 50, 93, 32, 45, 32, 99, 91, 49, 93, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,114,103, 98, 46,121, 61, 61, 99, -109, 97,120, 41, 32,104, 32, 61, 32, 50, 46, 48, 32, 43, 32, 99, 91, 48, 93, 32, 45, 32, 32, 99, 91, 50, 93, 59, 10, 9, 9,101, -108,115,101, 32,104, 32, 61, 32, 52, 46, 48, 32, 43, 32, 99, 91, 49, 93, 32, 45, 32, 99, 91, 48, 93, 59, 10, 10, 9, 9,104, 32, - 47, 61, 32, 54, 46, 48, 59, 10, 10, 9, 9,105,102, 32, 40,104, 60, 48, 46, 48, 41, 10, 9, 9, 9,104, 32, 43, 61, 32, 49, 46, - 48, 59, 10, 9,125, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40,104, 44, 32,115, 44, 32,118, 44, 32,114, -103, 98, 46,119, 41, 59, 10,125, 10, 10,118,111,105,100, 32,104,115,118, 95,116,111, 95,114,103, 98, 40,118,101, 99, 52, 32,104, -115,118, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,105, 44, - 32,102, 44, 32,112, 44, 32,113, 44, 32,116, 44, 32,104, 44, 32,115, 44, 32,118, 59, 10, 9,118,101, 99, 51, 32,114,103, 98, 59, - 10, 10, 9,104, 32, 61, 32,104,115,118, 91, 48, 93, 59, 10, 9,115, 32, 61, 32,104,115,118, 91, 49, 93, 59, 10, 9,118, 32, 61, - 32,104,115,118, 91, 50, 93, 59, 10, 10, 9,105,102, 40,115, 61, 61, 48, 46, 48, 41, 32,123, 10, 9, 9,114,103, 98, 32, 61, 32, -118,101, 99, 51, 40,118, 44, 32,118, 44, 32,118, 41, 59, 10, 9,125, 10, 9,101,108,115,101, 32,123, 10, 9, 9,105,102, 40,104, - 61, 61, 49, 46, 48, 41, 10, 9, 9, 9,104, 32, 61, 32, 48, 46, 48, 59, 10, 9, 9, 10, 9, 9,104, 32, 42, 61, 32, 54, 46, 48, - 59, 10, 9, 9,105, 32, 61, 32,102,108,111,111,114, 40,104, 41, 59, 10, 9, 9,102, 32, 61, 32,104, 32, 45, 32,105, 59, 10, 9, - 9,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,102, 44, 32,102, 44, 32,102, 41, 59, 10, 9, 9,112, 32, 61, 32,118, 42, 40, 49, - 46, 48, 45,115, 41, 59, 10, 9, 9,113, 32, 61, 32,118, 42, 40, 49, 46, 48, 45, 40,115, 42,102, 41, 41, 59, 10, 9, 9,116, 32, - 61, 32,118, 42, 40, 49, 46, 48, 45, 40,115, 42, 40, 49, 46, 48, 45,102, 41, 41, 41, 59, 10, 9, 9, 10, 9, 9,105,102, 32, 40, -105, 32, 61, 61, 32, 48, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,116, 44, 32,112, 41, 59, 10, 9, - 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 49, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,113, - 44, 32,118, 44, 32,112, 41, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 50, 46, 48, 41, 32,114,103, - 98, 32, 61, 32,118,101, 99, 51, 40,112, 44, 32,118, 44, 32,116, 41, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, - 61, 61, 32, 51, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,112, 44, 32,113, 44, 32,118, 41, 59, 10, 9, 9,101, -108,115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 52, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,116, 44, 32, -112, 44, 32,118, 41, 59, 10, 9, 9,101,108,115,101, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,112, 44, 32,113, - 41, 59, 10, 9,125, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40,114,103, 98, 44, 32,104,115,118, 46,119, - 41, 59, 10,125, 10, 10,102,108,111, 97,116, 32,115,114,103, 98, 95,116,111, 95,108,105,110,101, 97,114,114,103, 98, 40,102,108, -111, 97,116, 32, 99, 41, 10,123, 10, 9,105,102, 40, 99, 32, 60, 32, 48, 46, 48, 52, 48, 52, 53, 41, 10, 9, 9,114,101,116,117, -114,110, 32, 40, 99, 32, 60, 32, 48, 46, 48, 41, 63, 32, 48, 46, 48, 58, 32, 99, 32, 42, 32, 40, 49, 46, 48, 47, 49, 50, 46, 57, - 50, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,114,101,116,117,114,110, 32,112,111,119, 40, 40, 99, 32, 43, 32, 48, 46, 48, 53, - 53, 41, 42, 40, 49, 46, 48, 47, 49, 46, 48, 53, 53, 41, 44, 32, 50, 46, 52, 41, 59, 10,125, 10, 10,102,108,111, 97,116, 32,108, -105,110,101, 97,114,114,103, 98, 95,116,111, 95,115,114,103, 98, 40,102,108,111, 97,116, 32, 99, 41, 10,123, 10, 9,105,102, 40, - 99, 32, 60, 32, 48, 46, 48, 48, 51, 49, 51, 48, 56, 41, 10, 9, 9,114,101,116,117,114,110, 32, 40, 99, 32, 60, 32, 48, 46, 48, - 41, 63, 32, 48, 46, 48, 58, 32, 99, 32, 42, 32, 49, 50, 46, 57, 50, 59, 10, 9,101,108,115,101, 10, 9, 9,114,101,116,117,114, -110, 32, 49, 46, 48, 53, 53, 32, 42, 32,112,111,119, 40, 99, 44, 32, 49, 46, 48, 47, 50, 46, 52, 41, 32, 45, 32, 48, 46, 48, 53, - 53, 59, 10,125, 10, 10,118,111,105,100, 32,115,114,103, 98, 95,116,111, 95,108,105,110,101, 97,114,114,103, 98, 40,118,101, 99, - 52, 32, 99,111,108, 95,102,114,111,109, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108, 95,116,111, 41, 10,123, 10, 9, - 99,111,108, 95,116,111, 46,114, 32, 61, 32,115,114,103, 98, 95,116,111, 95,108,105,110,101, 97,114,114,103, 98, 40, 99,111,108, - 95,102,114,111,109, 46,114, 41, 59, 10, 9, 99,111,108, 95,116,111, 46,103, 32, 61, 32,115,114,103, 98, 95,116,111, 95,108,105, -110,101, 97,114,114,103, 98, 40, 99,111,108, 95,102,114,111,109, 46,103, 41, 59, 10, 9, 99,111,108, 95,116,111, 46, 98, 32, 61, - 32,115,114,103, 98, 95,116,111, 95,108,105,110,101, 97,114,114,103, 98, 40, 99,111,108, 95,102,114,111,109, 46, 98, 41, 59, 10, - 9, 99,111,108, 95,116,111, 46, 97, 32, 61, 32, 99,111,108, 95,102,114,111,109, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32, -108,105,110,101, 97,114,114,103, 98, 95,116,111, 95,115,114,103, 98, 40,118,101, 99, 52, 32, 99,111,108, 95,102,114,111,109, 44, - 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108, 95,116,111, 41, 10,123, 10, 9, 99,111,108, 95,116,111, 46,114, 32, 61, 32, -108,105,110,101, 97,114,114,103, 98, 95,116,111, 95,115,114,103, 98, 40, 99,111,108, 95,102,114,111,109, 46,114, 41, 59, 10, 9, - 99,111,108, 95,116,111, 46,103, 32, 61, 32,108,105,110,101, 97,114,114,103, 98, 95,116,111, 95,115,114,103, 98, 40, 99,111,108, - 95,102,114,111,109, 46,103, 41, 59, 10, 9, 99,111,108, 95,116,111, 46, 98, 32, 61, 32,108,105,110,101, 97,114,114,103, 98, 95, -116,111, 95,115,114,103, 98, 40, 99,111,108, 95,102,114,111,109, 46, 98, 41, 59, 10, 9, 99,111,108, 95,116,111, 46, 97, 32, 61, - 32, 99,111,108, 95,102,114,111,109, 46, 97, 59, 10,125, 10, 10, 35,100,101,102,105,110,101, 32, 77, 95, 80, 73, 32, 51, 46, 49, - 52, 49, 53, 57, 50, 54, 53, 51, 53, 56, 57, 55, 57, 51, 50, 51, 56, 52, 54, 10, 35,100,101,102,105,110,101, 32, 77, 95, 49, 95, - 80, 73, 32, 48, 46, 51, 49, 56, 51, 48, 57, 56, 56, 54, 49, 56, 51, 55, 57, 48, 54, 57, 10, 10, 47, 42, 42, 42, 42, 42, 42, 42, - 42, 42, 42, 42, 32, 83, 72, 65, 68, 69, 82, 32, 78, 79, 68, 69, 83, 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, - 42, 47, 10, 10,118,111,105,100, 32,118, 99,111,108, 95, 97,116,116,114,105, 98,117,116,101, 40,118,101, 99, 52, 32, 97,116,116, -118, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,118, 99,111,108, 41, 10,123, 10, 9,118, 99,111,108, 32, 61, 32,118, -101, 99, 52, 40, 97,116,116,118, 99,111,108, 46,120, 47, 50, 53, 53, 46, 48, 44, 32, 97,116,116,118, 99,111,108, 46,121, 47, 50, - 53, 53, 46, 48, 44, 32, 97,116,116,118, 99,111,108, 46,122, 47, 50, 53, 53, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10,125, 10, 10, -118,111,105,100, 32,117,118, 95, 97,116,116,114,105, 98,117,116,101, 40,118,101, 99, 50, 32, 97,116,116,117,118, 44, 32,111,117, -116, 32,118,101, 99, 51, 32,117,118, 41, 10,123, 10, 9,117,118, 32, 61, 32,118,101, 99, 51, 40, 97,116,116,117,118, 42, 50, 46, - 48, 32, 45, 32,118,101, 99, 50, 40, 49, 46, 48, 44, 32, 49, 46, 48, 41, 44, 32, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105, -100, 32,103,101,111,109, 40,118,101, 99, 51, 32, 99,111, 44, 32,118,101, 99, 51, 32,110,111,114, 44, 32,109, 97,116, 52, 32,118, -105,101,119,105,110,118,109, 97,116, 44, 32,118,101, 99, 51, 32, 97,116,116,111,114, 99,111, 44, 32,118,101, 99, 50, 32, 97,116, -116,117,118, 44, 32,118,101, 99, 52, 32, 97,116,116,118, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,103,108,111, 98, - 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,108,111, 99, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118,105,101, -119, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,114, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,117,118, 44, 32,111, -117,116, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,118, 99,111,108, 44, 32,111, -117,116, 32,102,108,111, 97,116, 32,118, 99,111,108, 95, 97,108,112,104, 97, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, -114,111,110,116, 98, 97, 99,107, 41, 10,123, 10, 9,108,111, 99, 97,108, 32, 61, 32, 99,111, 59, 10, 9,118,105,101,119, 32, 61, - 32,110,111,114,109, 97,108,105,122,101, 40,108,111, 99, 97,108, 41, 59, 10, 9,103,108,111, 98, 97,108, 32, 61, 32, 40,118,105, -101,119,105,110,118,109, 97,116, 42,118,101, 99, 52, 40,108,111, 99, 97,108, 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 10, - 9,111,114, 99,111, 32, 61, 32, 97,116,116,111,114, 99,111, 59, 10, 9,117,118, 95, 97,116,116,114,105, 98,117,116,101, 40, 97, -116,116,117,118, 44, 32,117,118, 41, 59, 10, 9,110,111,114,109, 97,108, 32, 61, 32, 45,110,111,114,109, 97,108,105,122,101, 40, -110,111,114, 41, 59, 9, 47, 42, 32, 98,108,101,110,100,101,114, 32,114,101,110,100,101,114, 32,110,111,114,109, 97,108, 32,105, -115, 32,110,101,103, 97,116,101,100, 32, 42, 47, 10, 9,118, 99,111,108, 95, 97,116,116,114,105, 98,117,116,101, 40, 97,116,116, -118, 99,111,108, 44, 32,118, 99,111,108, 41, 59, 10, 9,118, 99,111,108, 95, 97,108,112,104, 97, 32, 61, 32, 97,116,116,118, 99, -111,108, 46, 97, 59, 10, 9,102,114,111,110,116, 98, 97, 99,107, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32, -109, 97,112,112,105,110,103, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,109, 97,116, 52, 32,109, 97,116, 44, 32,118,101, 99, 51, - 32,109,105,110,118,101, 99, 44, 32,118,101, 99, 51, 32,109, 97,120,118,101, 99, 44, 32,102,108,111, 97,116, 32,100,111,109,105, -110, 44, 32,102,108,111, 97,116, 32,100,111,109, 97,120, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 41, - 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32, 40,109, 97,116, 32, 42, 32,118,101, 99, 52, 40,118,101, 99, 44, 32, 49, 46, - 48, 41, 41, 46,120,121,122, 59, 10, 9,105,102, 40,100,111,109,105,110, 32, 61, 61, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116, -118,101, 99, 32, 61, 32,109, 97,120, 40,111,117,116,118,101, 99, 44, 32,109,105,110,118,101, 99, 41, 59, 10, 9,105,102, 40,100, -111,109, 97,120, 32, 61, 61, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116,118,101, 99, 32, 61, 32,109,105,110, 40,111,117,116,118, -101, 99, 44, 32,109, 97,120,118,101, 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32, 99, 97,109,101,114, 97, 40,118,101, 99, 51, - 32, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,105,101,119, 44, 32,111,117,116, 32,102,108,111, 97,116, - 32,111,117,116,100,101,112,116,104, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,100,105,115,116, 41, 10,123, 10, - 9,111,117,116,100,101,112,116,104, 32, 61, 32, 97, 98,115, 40, 99,111, 46,122, 41, 59, 10, 9,111,117,116,100,105,115,116, 32, - 61, 32,108,101,110,103,116,104, 40, 99,111, 41, 59, 10, 9,111,117,116,118,105,101,119, 32, 61, 32,110,111,114,109, 97,108,105, -122,101, 40, 99,111, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 97,100,100, 40,102,108,111, 97,116, 32,118, - 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97, -108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 43, 32,118, 97,108, 50, 59, 10,125, 10, 10,118, -111,105,100, 32,109, 97,116,104, 95,115,117, 98,116,114, 97, 99,116, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108, -111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111, -117,116,118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 45, 32,118, 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116, -104, 95,109,117,108,116,105,112,108,121, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, - 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, - 32,118, 97,108, 49, 32, 42, 32,118, 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,100,105,118,105,100, -101, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108, -111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 50, 32, 61, 61, 32, 48, 46, 48, 41, 10, - 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, - 32,118, 97,108, 49, 32, 47, 32,118, 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,115,105,110,101, 40, -102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9, -111,117,116,118, 97,108, 32, 61, 32,115,105,110, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, - 99,111,115,105,110,101, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, - 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 99,111,115, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105, -100, 32,109, 97,116,104, 95,116, 97,110,103,101,110,116, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108, -111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,116, 97,110, 40,118, 97,108, 41, - 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 97,115,105,110, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111, -117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 32, 60, 61, 32, 49, - 46, 48, 32, 38, 38, 32,118, 97,108, 32, 62, 61, 32, 45, 49, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 97,115, -105,110, 40,118, 97,108, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, - 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 97, 99,111,115, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32, -102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 32, 60, 61, 32, 49, 46, 48, 32, - 38, 38, 32,118, 97,108, 32, 62, 61, 32, 45, 49, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 97, 99,111,115, 40, -118, 97,108, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118, -111,105,100, 32,109, 97,116,104, 95, 97,116, 97,110, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, - 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 97,116, 97,110, 40,118, 97,108, 41, - 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,112,111,119, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102, -108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9, -105,102, 32, 40,118, 97,108, 49, 32, 62, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32,112,111,119, 40, -118, 97,108, 49, 44, 32,118, 97,108, 50, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, - 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,108,111,103, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32, -102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, - 9,105,102, 40,118, 97,108, 49, 32, 62, 32, 48, 46, 48, 32, 32, 38, 38, 32,118, 97,108, 50, 32, 62, 32, 48, 46, 48, 41, 10, 9, - 9,111,117,116,118, 97,108, 61, 32,108,111,103, 50, 40,118, 97,108, 49, 41, 32, 47, 32,108,111,103, 50, 40,118, 97,108, 50, 41, - 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, - 97,116,104, 95,109, 97,120, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32, -111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,109, 97, -120, 40,118, 97,108, 49, 44, 32,118, 97,108, 50, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,109,105,110, 40, + 13, 10,102,108,111, 97,116, 32,101,120,112, 95, + 98,108,101,110,100,101,114, 40,102,108,111, 97,116, 32,102, 41, 13, 10,123, 13, 10, 9,114,101,116,117,114,110, 32,112,111,119, + 40, 50, 46, 55, 49, 56, 50, 56, 49, 56, 50, 56, 52, 54, 44, 32,102, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,114, +103, 98, 95,116,111, 95,104,115,118, 40,118,101, 99, 52, 32,114,103, 98, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, + 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32, 99,109, 97,120, 44, 32, 99,109,105,110, 44, 32,104, 44, 32,115, + 44, 32,118, 44, 32, 99,100,101,108,116, 97, 59, 13, 10, 9,118,101, 99, 51, 32, 99, 59, 13, 10, 13, 10, 9, 99,109, 97,120, 32, + 61, 32,109, 97,120, 40,114,103, 98, 91, 48, 93, 44, 32,109, 97,120, 40,114,103, 98, 91, 49, 93, 44, 32,114,103, 98, 91, 50, 93, + 41, 41, 59, 13, 10, 9, 99,109,105,110, 32, 61, 32,109,105,110, 40,114,103, 98, 91, 48, 93, 44, 32,109,105,110, 40,114,103, 98, + 91, 49, 93, 44, 32,114,103, 98, 91, 50, 93, 41, 41, 59, 13, 10, 9, 99,100,101,108,116, 97, 32, 61, 32, 99,109, 97,120, 45, 99, +109,105,110, 59, 13, 10, 13, 10, 9,118, 32, 61, 32, 99,109, 97,120, 59, 13, 10, 9,105,102, 32, 40, 99,109, 97,120, 33, 61, 48, + 46, 48, 41, 13, 10, 9, 9,115, 32, 61, 32, 99,100,101,108,116, 97, 47, 99,109, 97,120, 59, 13, 10, 9,101,108,115,101, 32,123, + 13, 10, 9, 9,115, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9, 9,104, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,125, 13, 10, 13, 10, + 9,105,102, 32, 40,115, 32, 61, 61, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9,104, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,125, + 13, 10, 9,101,108,115,101, 32,123, 13, 10, 9, 9, 99, 32, 61, 32, 40,118,101, 99, 51, 40, 99,109, 97,120, 44, 32, 99,109, 97, +120, 44, 32, 99,109, 97,120, 41, 32, 45, 32,114,103, 98, 46,120,121,122, 41, 47, 99,100,101,108,116, 97, 59, 13, 10, 13, 10, 9, + 9,105,102, 32, 40,114,103, 98, 46,120, 61, 61, 99,109, 97,120, 41, 32,104, 32, 61, 32, 99, 91, 50, 93, 32, 45, 32, 99, 91, 49, + 93, 59, 13, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,114,103, 98, 46,121, 61, 61, 99,109, 97,120, 41, 32,104, 32, 61, 32, + 50, 46, 48, 32, 43, 32, 99, 91, 48, 93, 32, 45, 32, 32, 99, 91, 50, 93, 59, 13, 10, 9, 9,101,108,115,101, 32,104, 32, 61, 32, + 52, 46, 48, 32, 43, 32, 99, 91, 49, 93, 32, 45, 32, 99, 91, 48, 93, 59, 13, 10, 13, 10, 9, 9,104, 32, 47, 61, 32, 54, 46, 48, + 59, 13, 10, 13, 10, 9, 9,105,102, 32, 40,104, 60, 48, 46, 48, 41, 13, 10, 9, 9, 9,104, 32, 43, 61, 32, 49, 46, 48, 59, 13, + 10, 9,125, 13, 10, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40,104, 44, 32,115, 44, 32,118, 44, 32,114, +103, 98, 46,119, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,104,115,118, 95,116,111, 95,114,103, 98, 40,118,101, 99, + 52, 32,104,115,118, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, + 97,116, 32,105, 44, 32,102, 44, 32,112, 44, 32,113, 44, 32,116, 44, 32,104, 44, 32,115, 44, 32,118, 59, 13, 10, 9,118,101, 99, + 51, 32,114,103, 98, 59, 13, 10, 13, 10, 9,104, 32, 61, 32,104,115,118, 91, 48, 93, 59, 13, 10, 9,115, 32, 61, 32,104,115,118, + 91, 49, 93, 59, 13, 10, 9,118, 32, 61, 32,104,115,118, 91, 50, 93, 59, 13, 10, 13, 10, 9,105,102, 40,115, 61, 61, 48, 46, 48, + 41, 32,123, 13, 10, 9, 9,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,118, 44, 32,118, 41, 59, 13, 10, 9,125, 13, + 10, 9,101,108,115,101, 32,123, 13, 10, 9, 9,105,102, 40,104, 61, 61, 49, 46, 48, 41, 13, 10, 9, 9, 9,104, 32, 61, 32, 48, + 46, 48, 59, 13, 10, 9, 9, 13, 10, 9, 9,104, 32, 42, 61, 32, 54, 46, 48, 59, 13, 10, 9, 9,105, 32, 61, 32,102,108,111,111, +114, 40,104, 41, 59, 13, 10, 9, 9,102, 32, 61, 32,104, 32, 45, 32,105, 59, 13, 10, 9, 9,114,103, 98, 32, 61, 32,118,101, 99, + 51, 40,102, 44, 32,102, 44, 32,102, 41, 59, 13, 10, 9, 9,112, 32, 61, 32,118, 42, 40, 49, 46, 48, 45,115, 41, 59, 13, 10, 9, + 9,113, 32, 61, 32,118, 42, 40, 49, 46, 48, 45, 40,115, 42,102, 41, 41, 59, 13, 10, 9, 9,116, 32, 61, 32,118, 42, 40, 49, 46, + 48, 45, 40,115, 42, 40, 49, 46, 48, 45,102, 41, 41, 41, 59, 13, 10, 9, 9, 13, 10, 9, 9,105,102, 32, 40,105, 32, 61, 61, 32, + 48, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,116, 44, 32,112, 41, 59, 13, 10, 9, 9,101,108,115, +101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 49, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,113, 44, 32,118, 44, + 32,112, 41, 59, 13, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 50, 46, 48, 41, 32,114,103, 98, 32, 61, + 32,118,101, 99, 51, 40,112, 44, 32,118, 44, 32,116, 41, 59, 13, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, 61, + 32, 51, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,112, 44, 32,113, 44, 32,118, 41, 59, 13, 10, 9, 9,101,108, +115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 52, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,116, 44, 32,112, + 44, 32,118, 41, 59, 13, 10, 9, 9,101,108,115,101, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,112, 44, 32,113, + 41, 59, 13, 10, 9,125, 13, 10, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40,114,103, 98, 44, 32,104,115, +118, 46,119, 41, 59, 13, 10,125, 13, 10, 13, 10,102,108,111, 97,116, 32,115,114,103, 98, 95,116,111, 95,108,105,110,101, 97,114, +114,103, 98, 40,102,108,111, 97,116, 32, 99, 41, 13, 10,123, 13, 10, 9,105,102, 40, 99, 32, 60, 32, 48, 46, 48, 52, 48, 52, 53, + 41, 13, 10, 9, 9,114,101,116,117,114,110, 32, 40, 99, 32, 60, 32, 48, 46, 48, 41, 63, 32, 48, 46, 48, 58, 32, 99, 32, 42, 32, + 40, 49, 46, 48, 47, 49, 50, 46, 57, 50, 41, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,114,101,116,117,114,110, 32,112,111, +119, 40, 40, 99, 32, 43, 32, 48, 46, 48, 53, 53, 41, 42, 40, 49, 46, 48, 47, 49, 46, 48, 53, 53, 41, 44, 32, 50, 46, 52, 41, 59, + 13, 10,125, 13, 10, 13, 10,102,108,111, 97,116, 32,108,105,110,101, 97,114,114,103, 98, 95,116,111, 95,115,114,103, 98, 40,102, +108,111, 97,116, 32, 99, 41, 13, 10,123, 13, 10, 9,105,102, 40, 99, 32, 60, 32, 48, 46, 48, 48, 51, 49, 51, 48, 56, 41, 13, 10, + 9, 9,114,101,116,117,114,110, 32, 40, 99, 32, 60, 32, 48, 46, 48, 41, 63, 32, 48, 46, 48, 58, 32, 99, 32, 42, 32, 49, 50, 46, + 57, 50, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,114,101,116,117,114,110, 32, 49, 46, 48, 53, 53, 32, 42, 32,112,111,119, + 40, 99, 44, 32, 49, 46, 48, 47, 50, 46, 52, 41, 32, 45, 32, 48, 46, 48, 53, 53, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, + 32,115,114,103, 98, 95,116,111, 95,108,105,110,101, 97,114,114,103, 98, 40,118,101, 99, 52, 32, 99,111,108, 95,102,114,111,109, + 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108, 95,116,111, 41, 13, 10,123, 13, 10, 9, 99,111,108, 95,116,111, 46,114, + 32, 61, 32,115,114,103, 98, 95,116,111, 95,108,105,110,101, 97,114,114,103, 98, 40, 99,111,108, 95,102,114,111,109, 46,114, 41, + 59, 13, 10, 9, 99,111,108, 95,116,111, 46,103, 32, 61, 32,115,114,103, 98, 95,116,111, 95,108,105,110,101, 97,114,114,103, 98, + 40, 99,111,108, 95,102,114,111,109, 46,103, 41, 59, 13, 10, 9, 99,111,108, 95,116,111, 46, 98, 32, 61, 32,115,114,103, 98, 95, +116,111, 95,108,105,110,101, 97,114,114,103, 98, 40, 99,111,108, 95,102,114,111,109, 46, 98, 41, 59, 13, 10, 9, 99,111,108, 95, +116,111, 46, 97, 32, 61, 32, 99,111,108, 95,102,114,111,109, 46, 97, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,108,105, +110,101, 97,114,114,103, 98, 95,116,111, 95,115,114,103, 98, 40,118,101, 99, 52, 32, 99,111,108, 95,102,114,111,109, 44, 32,111, +117,116, 32,118,101, 99, 52, 32, 99,111,108, 95,116,111, 41, 13, 10,123, 13, 10, 9, 99,111,108, 95,116,111, 46,114, 32, 61, 32, +108,105,110,101, 97,114,114,103, 98, 95,116,111, 95,115,114,103, 98, 40, 99,111,108, 95,102,114,111,109, 46,114, 41, 59, 13, 10, + 9, 99,111,108, 95,116,111, 46,103, 32, 61, 32,108,105,110,101, 97,114,114,103, 98, 95,116,111, 95,115,114,103, 98, 40, 99,111, +108, 95,102,114,111,109, 46,103, 41, 59, 13, 10, 9, 99,111,108, 95,116,111, 46, 98, 32, 61, 32,108,105,110,101, 97,114,114,103, + 98, 95,116,111, 95,115,114,103, 98, 40, 99,111,108, 95,102,114,111,109, 46, 98, 41, 59, 13, 10, 9, 99,111,108, 95,116,111, 46, + 97, 32, 61, 32, 99,111,108, 95,102,114,111,109, 46, 97, 59, 13, 10,125, 13, 10, 13, 10, 35,100,101,102,105,110,101, 32, 77, 95, + 80, 73, 32, 51, 46, 49, 52, 49, 53, 57, 50, 54, 53, 51, 53, 56, 57, 55, 57, 51, 50, 51, 56, 52, 54, 13, 10, 35,100,101,102,105, +110,101, 32, 77, 95, 49, 95, 80, 73, 32, 48, 46, 51, 49, 56, 51, 48, 57, 56, 56, 54, 49, 56, 51, 55, 57, 48, 54, 57, 13, 10, 13, + 10, 47, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, 83, 72, 65, 68, 69, 82, 32, 78, 79, 68, 69, 83, 32, 42, 42, 42, 42, 42, + 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 13, 10, 13, 10,118,111,105,100, 32,118, 99,111,108, 95, 97,116,116,114,105, 98,117, +116,101, 40,118,101, 99, 52, 32, 97,116,116,118, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,118, 99,111,108, 41, 13, + 10,123, 13, 10, 9,118, 99,111,108, 32, 61, 32,118,101, 99, 52, 40, 97,116,116,118, 99,111,108, 46,120, 47, 50, 53, 53, 46, 48, + 44, 32, 97,116,116,118, 99,111,108, 46,121, 47, 50, 53, 53, 46, 48, 44, 32, 97,116,116,118, 99,111,108, 46,122, 47, 50, 53, 53, + 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,117,118, 95, 97,116,116,114,105, 98,117,116, +101, 40,118,101, 99, 50, 32, 97,116,116,117,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,117,118, 41, 13, 10,123, 13, 10, 9, +117,118, 32, 61, 32,118,101, 99, 51, 40, 97,116,116,117,118, 42, 50, 46, 48, 32, 45, 32,118,101, 99, 50, 40, 49, 46, 48, 44, 32, + 49, 46, 48, 41, 44, 32, 48, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,103,101,111,109, 40,118,101, 99, 51, + 32, 99,111, 44, 32,118,101, 99, 51, 32,110,111,114, 44, 32,109, 97,116, 52, 32,118,105,101,119,105,110,118,109, 97,116, 44, 32, +118,101, 99, 51, 32, 97,116,116,111,114, 99,111, 44, 32,118,101, 99, 50, 32, 97,116,116,117,118, 44, 32,118,101, 99, 52, 32, 97, +116,116,118, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,103,108,111, 98, 97,108, 44, 32,111,117,116, 32,118,101, 99, + 51, 32,108,111, 99, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118,105,101,119, 44, 32,111,117,116, 32,118,101, 99, 51, + 32,111,114, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,117,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,110,111,114, +109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,118, 99,111,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118, 99, +111,108, 95, 97,108,112,104, 97, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102,114,111,110,116, 98, 97, 99,107, 41, 13, 10, +123, 13, 10, 9,108,111, 99, 97,108, 32, 61, 32, 99,111, 59, 13, 10, 9,118,105,101,119, 32, 61, 32,110,111,114,109, 97,108,105, +122,101, 40,108,111, 99, 97,108, 41, 59, 13, 10, 9,103,108,111, 98, 97,108, 32, 61, 32, 40,118,105,101,119,105,110,118,109, 97, +116, 42,118,101, 99, 52, 40,108,111, 99, 97,108, 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 13, 10, 9,111,114, 99,111, 32, + 61, 32, 97,116,116,111,114, 99,111, 59, 13, 10, 9,117,118, 95, 97,116,116,114,105, 98,117,116,101, 40, 97,116,116,117,118, 44, + 32,117,118, 41, 59, 13, 10, 9,110,111,114,109, 97,108, 32, 61, 32, 45,110,111,114,109, 97,108,105,122,101, 40,110,111,114, 41, + 59, 9, 47, 42, 32, 98,108,101,110,100,101,114, 32,114,101,110,100,101,114, 32,110,111,114,109, 97,108, 32,105,115, 32,110,101, +103, 97,116,101,100, 32, 42, 47, 13, 10, 9,118, 99,111,108, 95, 97,116,116,114,105, 98,117,116,101, 40, 97,116,116,118, 99,111, +108, 44, 32,118, 99,111,108, 41, 59, 13, 10, 9,118, 99,111,108, 95, 97,108,112,104, 97, 32, 61, 32, 97,116,116,118, 99,111,108, + 46, 97, 59, 13, 10, 9,102,114,111,110,116, 98, 97, 99,107, 32, 61, 32, 49, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105, +100, 32,109, 97,112,112,105,110,103, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,109, 97,116, 52, 32,109, 97,116, 44, 32,118,101, + 99, 51, 32,109,105,110,118,101, 99, 44, 32,118,101, 99, 51, 32,109, 97,120,118,101, 99, 44, 32,102,108,111, 97,116, 32,100,111, +109,105,110, 44, 32,102,108,111, 97,116, 32,100,111,109, 97,120, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, + 99, 41, 13, 10,123, 13, 10, 9,111,117,116,118,101, 99, 32, 61, 32, 40,109, 97,116, 32, 42, 32,118,101, 99, 52, 40,118,101, 99, + 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 13, 10, 9,105,102, 40,100,111,109,105,110, 32, 61, 61, 32, 49, 46, 48, 41, 13, + 10, 9, 9,111,117,116,118,101, 99, 32, 61, 32,109, 97,120, 40,111,117,116,118,101, 99, 44, 32,109,105,110,118,101, 99, 41, 59, + 13, 10, 9,105,102, 40,100,111,109, 97,120, 32, 61, 61, 32, 49, 46, 48, 41, 13, 10, 9, 9,111,117,116,118,101, 99, 32, 61, 32, +109,105,110, 40,111,117,116,118,101, 99, 44, 32,109, 97,120,118,101, 99, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32, + 99, 97,109,101,114, 97, 40,118,101, 99, 51, 32, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,105,101,119, + 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,100,101,112,116,104, 44, 32,111,117,116, 32,102,108,111, 97,116, 32, +111,117,116,100,105,115,116, 41, 13, 10,123, 13, 10, 9,111,117,116,100,101,112,116,104, 32, 61, 32, 97, 98,115, 40, 99,111, 46, +122, 41, 59, 13, 10, 9,111,117,116,100,105,115,116, 32, 61, 32,108,101,110,103,116,104, 40, 99,111, 41, 59, 13, 10, 9,111,117, +116,118,105,101,119, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99,111, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105, +100, 32,109, 97,116,104, 95, 97,100,100, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, + 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, + 32, 61, 32,118, 97,108, 49, 32, 43, 32,118, 97,108, 50, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109, 97,116,104, 95, +115,117, 98,116,114, 97, 99,116, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, + 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, + 32,118, 97,108, 49, 32, 45, 32,118, 97,108, 50, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109, 97,116,104, 95,109,117, +108,116,105,112,108,121, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111, +117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, + 97,108, 49, 32, 42, 32,118, 97,108, 50, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109, 97,116,104, 95,100,105,118,105, +100,101, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102, +108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,105,102, 32, 40,118, 97,108, 50, 32, 61, 61, 32, 48, 46, + 48, 41, 13, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117, +116,118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 47, 32,118, 97,108, 50, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109, + 97,116,104, 95,115,105,110,101, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117, +116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32,115,105,110, 40,118, 97,108, 41, 59, 13, 10,125, + 13, 10, 13, 10,118,111,105,100, 32,109, 97,116,104, 95, 99,111,115,105,110,101, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32, +111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32, + 99,111,115, 40,118, 97,108, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109, 97,116,104, 95,116, 97,110,103,101,110, +116, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10, +123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32,116, 97,110, 40,118, 97,108, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105, +100, 32,109, 97,116,104, 95, 97,115,105,110, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, + 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,105,102, 32, 40,118, 97,108, 32, 60, 61, 32, 49, 46, 48, 32, 38, 38, 32, +118, 97,108, 32, 62, 61, 32, 45, 49, 46, 48, 41, 13, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 97,115,105,110, 40,118, 97, +108, 41, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 13, 10,125, 13, 10, + 13, 10,118,111,105,100, 32,109, 97,116,104, 95, 97, 99,111,115, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32, +102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,105,102, 32, 40,118, 97,108, 32, 60, 61, 32, 49, 46, + 48, 32, 38, 38, 32,118, 97,108, 32, 62, 61, 32, 45, 49, 46, 48, 41, 13, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 97, 99, +111,115, 40,118, 97,108, 41, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, + 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109, 97,116,104, 95, 97,116, 97,110, 40,102,108,111, 97,116, 32,118, 97,108, 44, + 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, + 32, 97,116, 97,110, 40,118, 97,108, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109, 97,116,104, 95,112,111,119, 40, 102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97, -116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,109,105,110, 40,118, 97,108, 49, 44, 32, -118, 97,108, 50, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,114,111,117,110,100, 40,102,108,111, 97,116, 32, -118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, - 61, 32,102,108,111,111,114, 40,118, 97,108, 32, 43, 32, 48, 46, 53, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, - 95,108,101,115,115, 95,116,104, 97,110, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, - 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 40,118, 97,108, 49, 32, - 60, 32,118, 97,108, 50, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9, -111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,103,114,101, 97,116, -101,114, 95,116,104, 97,110, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32, -111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 40,118, 97,108, 49, 32, 62, 32,118, - 97,108, 50, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, -118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,115,113,117,101,101,122,101, 40,102,108,111, 97,116, - 32,118, 97,108, 44, 32,102,108,111, 97,116, 32,119,105,100,116,104, 44, 32,102,108,111, 97,116, 32, 99,101,110,116,101,114, 44, - 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 49, - 46, 48, 47, 40, 49, 46, 48, 32, 43, 32,112,111,119, 40, 50, 46, 55, 49, 56, 50, 56, 49, 56, 51, 44, 32, 45, 40, 40,118, 97,108, - 45, 99,101,110,116,101,114, 41, 42,119,105,100,116,104, 41, 41, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, - 97,116,104, 95, 97,100,100, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, - 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9, -111,117,116,118,101, 99, 32, 61, 32,118, 49, 32, 43, 32,118, 50, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 40, 97, 98,115, - 40,111,117,116,118,101, 99, 91, 48, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, 91, 49, 93, 41, 32, 43, 32, 97, - 98,115, 40,111,117,116,118,101, 99, 91, 50, 93, 41, 41, 47, 51, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95, -109, 97,116,104, 95,115,117, 98, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118, -101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, - 9,111,117,116,118,101, 99, 32, 61, 32,118, 49, 32, 45, 32,118, 50, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 40, 97, 98, -115, 40,111,117,116,118,101, 99, 91, 48, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, 91, 49, 93, 41, 32, 43, 32, - 97, 98,115, 40,111,117,116,118,101, 99, 91, 50, 93, 41, 41, 47, 51, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, - 95,109, 97,116,104, 95, 97,118,101,114, 97,103,101, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32, -111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97, -108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118, 49, 32, 43, 32,118, 50, 59, 10, 9,111,117,116,118, 97,108, 32, - 61, 32,108,101,110,103,116,104, 40,111,117,116,118,101, 99, 41, 59, 10, 9,111,117,116,118,101, 99, 32, 61, 32,110,111,114,109, - 97,108,105,122,101, 40,111,117,116,118,101, 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, -100,111,116, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111, -117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, -101, 99, 32, 61, 32,118,101, 99, 51, 40, 48, 44, 32, 48, 44, 32, 48, 41, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32,100,111, -116, 40,118, 49, 44, 32,118, 50, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, 99,114,111,115, -115, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116, -118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, - 32, 61, 32, 99,114,111,115,115, 40,118, 49, 44, 32,118, 50, 41, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101,110,103, -116,104, 40,111,117,116,118,101, 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,110,111,114, +116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,105,102, 32, 40,118, 97,108, 49, 32, 62, 61, 32, 48, 46, 48, 41, 13, + 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32,112,111,119, 40,118, 97,108, 49, 44, 32,118, 97,108, 50, 41, 59, 13, 10, 9,101, +108,115,101, 13, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32, +109, 97,116,104, 95,108,111,103, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, + 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,105,102, 40,118, 97,108, 49, 32, + 62, 32, 48, 46, 48, 32, 32, 38, 38, 32,118, 97,108, 50, 32, 62, 32, 48, 46, 48, 41, 13, 10, 9, 9,111,117,116,118, 97,108, 61, + 32,108,111,103, 50, 40,118, 97,108, 49, 41, 32, 47, 32,108,111,103, 50, 40,118, 97,108, 50, 41, 59, 13, 10, 9,101,108,115,101, + 13, 10, 9, 9,111,117,116,118, 97,108, 61, 32, 48, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109, 97,116,104, + 95,109, 97,120, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, + 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32,109, 97,120, + 40,118, 97,108, 49, 44, 32,118, 97,108, 50, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109, 97,116,104, 95,109,105, +110, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108, +111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32,109,105,110, 40,118, 97, +108, 49, 44, 32,118, 97,108, 50, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109, 97,116,104, 95,114,111,117,110,100, + 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, + 13, 10, 9,111,117,116,118, 97,108, 61, 32,102,108,111,111,114, 40,118, 97,108, 32, 43, 32, 48, 46, 53, 41, 59, 13, 10,125, 13, + 10, 13, 10,118,111,105,100, 32,109, 97,116,104, 95,108,101,115,115, 95,116,104, 97,110, 40,102,108,111, 97,116, 32,118, 97,108, + 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, + 13, 10,123, 13, 10, 9,105,102, 40,118, 97,108, 49, 32, 60, 32,118, 97,108, 50, 41, 13, 10, 9, 9,111,117,116,118, 97,108, 32, + 61, 32, 49, 46, 48, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 13, 10, +125, 13, 10, 13, 10,118,111,105,100, 32,109, 97,116,104, 95,103,114,101, 97,116,101,114, 95,116,104, 97,110, 40,102,108,111, 97, +116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117, +116,118, 97,108, 41, 13, 10,123, 13, 10, 9,105,102, 40,118, 97,108, 49, 32, 62, 32,118, 97,108, 50, 41, 13, 10, 9, 9,111,117, +116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, + 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,113,117,101,101,122,101, 40,102,108,111, 97,116, 32,118, 97,108, + 44, 32,102,108,111, 97,116, 32,119,105,100,116,104, 44, 32,102,108,111, 97,116, 32, 99,101,110,116,101,114, 44, 32,111,117,116, + 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, + 47, 40, 49, 46, 48, 32, 43, 32,112,111,119, 40, 50, 46, 55, 49, 56, 50, 56, 49, 56, 51, 44, 32, 45, 40, 40,118, 97,108, 45, 99, +101,110,116,101,114, 41, 42,119,105,100,116,104, 41, 41, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,118,101, 99, 95, +109, 97,116,104, 95, 97,100,100, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118, +101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, + 13, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118, 49, 32, 43, 32,118, 50, 59, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32, + 40, 97, 98,115, 40,111,117,116,118,101, 99, 91, 48, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, 91, 49, 93, 41, + 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, 91, 50, 93, 41, 41, 47, 51, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111, +105,100, 32,118,101, 99, 95,109, 97,116,104, 95,115,117, 98, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, + 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116, +118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118, 49, 32, 45, 32,118, 50, 59, 13, 10, 9,111,117, +116,118, 97,108, 32, 61, 32, 40, 97, 98,115, 40,111,117,116,118,101, 99, 91, 48, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116, +118,101, 99, 91, 49, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, 91, 50, 93, 41, 41, 47, 51, 46, 48, 59, 13, 10, +125, 13, 10, 13, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, 97,118,101,114, 97,103,101, 40,118,101, 99, 51, 32, +118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117, +116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118, 49, + 32, 43, 32,118, 50, 59, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101,110,103,116,104, 40,111,117,116,118,101, 99, 41, + 59, 13, 10, 9,111,117,116,118,101, 99, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,111,117,116,118,101, 99, 41, 59, 13, + 10,125, 13, 10, 13, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,100,111,116, 40,118,101, 99, 51, 32,118, 49, 44, + 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102, +108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118,101, 99, 51, 40, + 48, 44, 32, 48, 44, 32, 48, 41, 59, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32,100,111,116, 40,118, 49, 44, 32,118, 50, 41, + 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, 99,114,111,115,115, 40,118,101, 99, 51, + 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111, +117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118,101, 99, 32, 61, 32, 99, +114,111,115,115, 40,118, 49, 44, 32,118, 50, 41, 59, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101,110,103,116,104, 40, +111,117,116,118,101, 99, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,110,111,114, 109, 97,108,105,122,101, 40,118,101, 99, 51, 32,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32, -111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101, -110,103,116,104, 40,118, 41, 59, 10, 9,111,117,116,118,101, 99, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,118, 41, 59, - 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,110,101,103, 97,116,101, 40,118,101, 99, 51, 32,118, 44, - 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118, 41, 10,123, 10, 9,111,117,116,118, 32, 61, 32, 45,118, 59, 10,125, 10, - 10,118,111,105,100, 32,110,111,114,109, 97,108, 40,118,101, 99, 51, 32,100,105,114, 44, 32,118,101, 99, 51, 32,110,111,114, 44, - 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,110,111,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,100, -111,116, 41, 10,123, 10, 9,111,117,116,110,111,114, 32, 61, 32,100,105,114, 59, 10, 9,111,117,116,100,111,116, 32, 61, 32, 45, -100,111,116, 40,100,105,114, 44, 32,110,111,114, 41, 59, 10,125, 10, 10,118,111,105,100, 32, 99,117,114,118,101,115, 95,118,101, - 99, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 51, 32,118,101, 99, 44, 32,115, 97,109,112,108,101,114, 50, 68, - 32, 99,117,114,118,101,109, 97,112, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 41, 10,123, 10, 9,111, -117,116,118,101, 99, 46,120, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,118,101, - 99, 50, 40, 40,118,101, 99, 46,120, 32, 43, 32, 49, 46, 48, 41, 42, 48, 46, 53, 44, 32, 48, 46, 48, 41, 41, 46,120, 59, 10, 9, -111,117,116,118,101, 99, 46,121, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,118, -101, 99, 50, 40, 40,118,101, 99, 46,121, 32, 43, 32, 49, 46, 48, 41, 42, 48, 46, 53, 44, 32, 48, 46, 48, 41, 41, 46,121, 59, 10, - 9,111,117,116,118,101, 99, 46,122, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, -118,101, 99, 50, 40, 40,118,101, 99, 46,122, 32, 43, 32, 49, 46, 48, 41, 42, 48, 46, 53, 44, 32, 48, 46, 48, 41, 41, 46,122, 59, - 10, 10, 9,105,102, 32, 40,102, 97, 99, 32, 33, 61, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116,118,101, 99, 32, 61, 32, 40,111, -117,116,118,101, 99, 42,102, 97, 99, 41, 32, 43, 32, 40,118,101, 99, 42, 40, 49, 46, 48, 45,102, 97, 99, 41, 41, 59, 10, 10,125, - 10, 10,118,111,105,100, 32, 99,117,114,118,101,115, 95,114,103, 98, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, - 52, 32, 99,111,108, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32, 99,117,114,118,101,109, 97,112, 44, 32,111,117,116, 32,118, -101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32,116,101,120,116,117,114, -101, 50, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,118,101, 99, 50, 40,116,101,120,116,117,114,101, 50, 68, 40, 99,117,114, -118,101,109, 97,112, 44, 32,118,101, 99, 50, 40, 99,111,108, 46,114, 44, 32, 48, 46, 48, 41, 41, 46, 97, 44, 32, 48, 46, 48, 41, - 41, 46,114, 59, 10, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40, 99,117,114,118,101, -109, 97,112, 44, 32,118,101, 99, 50, 40,116,101,120,116,117,114,101, 50, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,118,101, - 99, 50, 40, 99,111,108, 46,103, 44, 32, 48, 46, 48, 41, 41, 46, 97, 44, 32, 48, 46, 48, 41, 41, 46,103, 59, 10, 9,111,117,116, +111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32, +108,101,110,103,116,104, 40,118, 41, 59, 13, 10, 9,111,117,116,118,101, 99, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, +118, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,110,101,103, 97,116,101, 40,118, +101, 99, 51, 32,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 32, + 61, 32, 45,118, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,110,111,114,109, 97,108, 40,118,101, 99, 51, 32,100,105,114, + 44, 32,118,101, 99, 51, 32,110,111,114, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,110,111,114, 44, 32,111,117,116, + 32,102,108,111, 97,116, 32,111,117,116,100,111,116, 41, 13, 10,123, 13, 10, 9,111,117,116,110,111,114, 32, 61, 32,100,105,114, + 59, 13, 10, 9,111,117,116,100,111,116, 32, 61, 32, 45,100,111,116, 40,100,105,114, 44, 32,110,111,114, 41, 59, 13, 10,125, 13, + 10, 13, 10,118,111,105,100, 32, 99,117,114,118,101,115, 95,118,101, 99, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, + 99, 51, 32,118,101, 99, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32, 99,117,114,118,101,109, 97,112, 44, 32,111,117,116, 32, +118,101, 99, 51, 32,111,117,116,118,101, 99, 41, 13, 10,123, 13, 10, 9,111,117,116,118,101, 99, 46,120, 32, 61, 32,116,101,120, +116,117,114,101, 50, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,118,101, 99, 50, 40, 40,118,101, 99, 46,120, 32, 43, 32, 49, + 46, 48, 41, 42, 48, 46, 53, 44, 32, 48, 46, 48, 41, 41, 46,120, 59, 13, 10, 9,111,117,116,118,101, 99, 46,121, 32, 61, 32,116, +101,120,116,117,114,101, 50, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,118,101, 99, 50, 40, 40,118,101, 99, 46,121, 32, 43, + 32, 49, 46, 48, 41, 42, 48, 46, 53, 44, 32, 48, 46, 48, 41, 41, 46,121, 59, 13, 10, 9,111,117,116,118,101, 99, 46,122, 32, 61, + 32,116,101,120,116,117,114,101, 50, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,118,101, 99, 50, 40, 40,118,101, 99, 46,122, + 32, 43, 32, 49, 46, 48, 41, 42, 48, 46, 53, 44, 32, 48, 46, 48, 41, 41, 46,122, 59, 13, 10, 13, 10, 9,105,102, 32, 40,102, 97, + 99, 32, 33, 61, 32, 49, 46, 48, 41, 13, 10, 9, 9,111,117,116,118,101, 99, 32, 61, 32, 40,111,117,116,118,101, 99, 42,102, 97, + 99, 41, 32, 43, 32, 40,118,101, 99, 42, 40, 49, 46, 48, 45,102, 97, 99, 41, 41, 59, 13, 10, 13, 10,125, 13, 10, 13, 10,118,111, +105,100, 32, 99,117,114,118,101,115, 95,114,103, 98, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111, +108, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32, 99,117,114,118,101,109, 97,112, 44, 32,111,117,116, 32,118,101, 99, 52, 32, +111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32,116,101,120,116,117,114,101, 50, + 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,118,101, 99, 50, 40,116,101,120,116,117,114,101, 50, 68, 40, 99,117,114,118,101, +109, 97,112, 44, 32,118,101, 99, 50, 40, 99,111,108, 46,114, 44, 32, 48, 46, 48, 41, 41, 46, 97, 44, 32, 48, 46, 48, 41, 41, 46, +114, 59, 13, 10, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40, 99,117,114,118,101,109, + 97,112, 44, 32,118,101, 99, 50, 40,116,101,120,116,117,114,101, 50, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,118,101, 99, + 50, 40, 99,111,108, 46,103, 44, 32, 48, 46, 48, 41, 41, 46, 97, 44, 32, 48, 46, 48, 41, 41, 46,103, 59, 13, 10, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,118,101, 99, 50, 40,116,101,120,116,117,114,101, 50, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,118,101, 99, 50, 40, 99,111,108, 46, 98, 44, - 32, 48, 46, 48, 41, 41, 46, 97, 44, 32, 48, 46, 48, 41, 41, 46, 98, 59, 10, 10, 9,105,102, 32, 40,102, 97, 99, 32, 33, 61, 32, - 49, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 32, 61, 32, 40,111,117,116, 99,111,108, 42,102, 97, 99, 41, 32, 43, 32, 40, - 99,111,108, 42, 40, 49, 46, 48, 45,102, 97, 99, 41, 41, 59, 10, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, - 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,118, 97,108,117,101, 40,102,108,111, 97,116, 32,118, 97,108, 44, - 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, - 97,108, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 40,118,101, 99, 51, 32, 99,111,108, 44, 32,111,117, -116, 32,118,101, 99, 51, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 59, 10, -125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 97, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,118, -101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 59, 10,125, 10, 10, -118,111,105,100, 32,115,101,116, 95,118, 97,108,117,101, 95,122,101,114,111, 40,111,117,116, 32,102,108,111, 97,116, 32,111,117, -116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,115, -101,116, 95,118, 97,108,117,101, 95,111,110,101, 40,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, - 10, 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 95, -122,101,114,111, 40,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, - 61, 32,118,101, 99, 51, 40, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 97, 95,122,101, -114,111, 40,111,117,116, 32,118,101, 99, 52, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, -118,101, 99, 52, 40, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32, 99,111,112,121, 95,114, 97,119, 40,118,101, 99, 52, - 32,118, 97,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, - 32, 61, 32,118, 97,108, 59, 10,125, 10, 10,118,111,105,100, 32, 99,111,112,121, 95,114, 97,119, 40,118,101, 99, 51, 32,118, 97, -108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, -118, 97,108, 59, 10,125, 10, 10,118,111,105,100, 32, 99,111,112,121, 95,114, 97,119, 40,118,101, 99, 50, 32,118, 97,108, 44, 32, -111,117,116, 32,118,101, 99, 50, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, - 59, 10,125, 10, 10,118,111,105,100, 32, 99,111,112,121, 95,114, 97,119, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117, -116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 59, - 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, 98,108,101,110,100, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, - 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, - 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, - 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 50, 44, 32,102, 97, - 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32, -109,105,120, 95, 97,100,100, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, - 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, - 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, - 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 43, 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 10, - 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, -109,117,108,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, - 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, - 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32, -109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 42, 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117, -116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,115, 99,114, -101,101,110, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99, -111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99, -108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, - 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40, 49, 46, - 48, 41, 32, 45, 32, 40,118,101, 99, 52, 40,102, 97, 99,109, 41, 32, 43, 32,102, 97, 99, 42, 40,118,101, 99, 52, 40, 49, 46, 48, - 41, 32, 45, 32, 99,111,108, 50, 41, 41, 42, 40,118,101, 99, 52, 40, 49, 46, 48, 41, 32, 45, 32, 99,111,108, 49, 41, 59, 10, 9, -111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,111, -118,101,114,108, 97,121, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, - 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, - 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, - 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, - 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,114, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46, -114, 32, 42, 61, 32,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 99,111,108, 50, 46,114, 59, 10, 9,101,108,115, -101, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, - 42,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32, 99,111,108, 50, 46,114, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99, -111,108, 46,114, 41, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,103, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,111,117, -116, 99,111,108, 46,103, 32, 42, 61, 32,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 99,111,108, 50, 46,103, 59, - 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, - 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32, 99,111,108, 50, 46,103, 41, 41, 42, 40, 49, 46, 48, 32, 45, - 32,111,117,116, 99,111,108, 46,103, 41, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46, 98, 32, 60, 32, 48, 46, 53, 41, - 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 42, 61, 32,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 99,111, -108, 50, 46, 98, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40, -102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32, 99,111,108, 50, 46, 98, 41, 41, 42, 40, - 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46, 98, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,115,117, 98, - 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, - 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109, -112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, - 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 45, 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, - 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100,105,118, 40,102,108,111, + 32, 48, 46, 48, 41, 41, 46, 97, 44, 32, 48, 46, 48, 41, 41, 46, 98, 59, 13, 10, 13, 10, 9,105,102, 32, 40,102, 97, 99, 32, 33, + 61, 32, 49, 46, 48, 41, 13, 10, 9, 9,111,117,116, 99,111,108, 32, 61, 32, 40,111,117,116, 99,111,108, 42,102, 97, 99, 41, 32, + 43, 32, 40, 99,111,108, 42, 40, 49, 46, 48, 45,102, 97, 99, 41, 41, 59, 13, 10, 13, 10, 9,111,117,116, 99,111,108, 46, 97, 32, + 61, 32, 99,111,108, 46, 97, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,101,116, 95,118, 97,108,117,101, 40,102,108, +111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9, +111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, + 40,118,101, 99, 51, 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, + 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,101,116, 95,114,103, + 98, 97, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, + 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,101,116, 95, +118, 97,108,117,101, 95,122,101,114,111, 40,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, + 10, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,101,116, 95,118, + 97,108,117,101, 95,111,110,101, 40,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9, +111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, + 95,122,101,114,111, 40,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, + 97,108, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,101,116, 95,114, +103, 98, 97, 95,122,101,114,111, 40,111,117,116, 32,118,101, 99, 52, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111, +117,116,118, 97,108, 32, 61, 32,118,101, 99, 52, 40, 48, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32, 99,111, +112,121, 95,114, 97,119, 40,118,101, 99, 52, 32,118, 97,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116,118, 97,108, + 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32, + 99,111,112,121, 95,114, 97,119, 40,118,101, 99, 51, 32,118, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118, + 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 59, 13, 10,125, 13, 10, 13, 10,118,111,105, +100, 32, 99,111,112,121, 95,114, 97,119, 40,118,101, 99, 50, 32,118, 97,108, 44, 32,111,117,116, 32,118,101, 99, 50, 32,111,117, +116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 59, 13, 10,125, 13, 10, 13, 10,118, +111,105,100, 32, 99,111,112,121, 95,114, 97,119, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97, +116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 59, 13, 10,125, 13, + 10, 13, 10,118,111,105,100, 32,109,105,120, 95, 98,108,101,110,100, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, + 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99, +111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, + 46, 48, 41, 59, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 50, 44, 32, +102, 97, 99, 41, 59, 13, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 13, 10,125, 13, 10, 13, + 10,118,111,105,100, 32,109,105,120, 95, 97,100,100, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111, +108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, + 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, + 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 43, 32, 99,111,108, + 50, 44, 32,102, 97, 99, 41, 59, 13, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 13, 10,125, + 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95,109,117,108,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, + 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99, +111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, + 46, 48, 41, 59, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 42, + 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 13, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, + 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95,115, 99,114,101,101,110, 40,102,108,111, 97,116, 32,102, 97, + 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, + 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, + 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32, +102, 97, 99, 59, 13, 10, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40, 49, 46, 48, 41, 32, 45, 32, 40,118, +101, 99, 52, 40,102, 97, 99,109, 41, 32, 43, 32,102, 97, 99, 42, 40,118,101, 99, 52, 40, 49, 46, 48, 41, 32, 45, 32, 99,111,108, + 50, 41, 41, 42, 40,118,101, 99, 52, 40, 49, 46, 48, 41, 32, 45, 32, 99,111,108, 49, 41, 59, 13, 10, 9,111,117,116, 99,111,108, + 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95,111,118,101,114, +108, 97,121, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99, +111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, + 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,102, + 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 13, 10, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111, +108, 49, 59, 13, 10, 13, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,114, 32, 60, 32, 48, 46, 53, 41, 13, 10, 9, 9,111,117, +116, 99,111,108, 46,114, 32, 42, 61, 32,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 99,111,108, 50, 46,114, 59, + 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99, +109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32, 99,111,108, 50, 46,114, 41, 41, 42, 40, 49, 46, 48, + 32, 45, 32,111,117,116, 99,111,108, 46,114, 41, 59, 13, 10, 13, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,103, 32, 60, 32, + 48, 46, 53, 41, 13, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 42, 61, 32,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, + 97, 99, 42, 99,111,108, 50, 46,103, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, + 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32, 99,111,108, + 50, 46,103, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,103, 41, 59, 13, 10, 13, 10, 9,105,102, 40,111, +117,116, 99,111,108, 46, 98, 32, 60, 32, 48, 46, 53, 41, 13, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 42, 61, 32,102, 97, + 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 99,111,108, 50, 46, 98, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111, +117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, + 40, 49, 46, 48, 32, 45, 32, 99,111,108, 50, 46, 98, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46, 98, 41, + 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95,115,117, 98, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32, +118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111, +117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, + 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, + 49, 32, 45, 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 13, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, + 49, 46, 97, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95,100,105,118, 40,102,108,111, 97,116, 32,102, 97, + 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, + 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, + 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32, +102, 97, 99, 59, 13, 10, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 13, 10, 13, 10, 9,105,102, 40, 99, +111,108, 50, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111,108, 46,114, 32, 61, 32,102, 97, 99,109, 42,111,117, +116, 99,111,108, 46,114, 32, 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, 46,114, 47, 99,111,108, 50, 46,114, 59, 13, 10, 9, +105,102, 40, 99,111,108, 50, 46,103, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111,108, 46,103, 32, 61, 32,102, 97, 99, +109, 42,111,117,116, 99,111,108, 46,103, 32, 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, 46,103, 47, 99,111,108, 50, 46,103, + 59, 13, 10, 9,105,102, 40, 99,111,108, 50, 46, 98, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111,108, 46, 98, 32, 61, + 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46, 98, 32, 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, 46, 98, 47, 99,111, +108, 50, 46, 98, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95,100,105,102,102, 40,102,108,111, 97,116, 32, +102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118, +101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, + 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, + 44, 32, 97, 98,115, 40, 99,111,108, 49, 32, 45, 32, 99,111,108, 50, 41, 44, 32,102, 97, 99, 41, 59, 13, 10, 9,111,117,116, 99, +111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95,100, 97, +114,107, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111, +108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, + 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,111,117,116, 99,111,108, 46,114, +103, 98, 32, 61, 32,109,105,110, 40, 99,111,108, 49, 46,114,103, 98, 44, 32, 99,111,108, 50, 46,114,103, 98, 42,102, 97, 99, 41, + 59, 13, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 13, 10,125, 13, 10, 13, 10,118,111,105, +100, 32,109,105,120, 95,108,105,103,104,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, + 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, + 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, + 9,111,117,116, 99,111,108, 46,114,103, 98, 32, 61, 32,109, 97,120, 40, 99,111,108, 49, 46,114,103, 98, 44, 32, 99,111,108, 50, + 46,114,103, 98, 42,102, 97, 99, 41, 59, 13, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 13, + 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95,100,111,100,103,101, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32, +118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111, +117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, + 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 13, 10, 13, 10, 9,105,102, 40, +111,117,116, 99,111,108, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9,102,108,111, 97,116, 32,116,109,112, 32, + 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 42, 99,111,108, 50, 46,114, 59, 13, 10, 9, 9,105,102, 40,116,109,112, 32, 60, 61, + 32, 48, 46, 48, 41, 13, 10, 9, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9, 9,101,108,115, +101, 32,105,102, 40, 40,116,109,112, 32, 61, 32,111,117,116, 99,111,108, 46,114, 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, 41, + 13, 10, 9, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9, 9,101,108,115,101, 13, 10, 9, 9, + 9,111,117,116, 99,111,108, 46,114, 32, 61, 32,116,109,112, 59, 13, 10, 9,125, 13, 10, 9,105,102, 40,111,117,116, 99,111,108, + 46,103, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9,102,108,111, 97,116, 32,116,109,112, 32, 61, 32, 49, 46, 48, 32, + 45, 32,102, 97, 99, 42, 99,111,108, 50, 46,103, 59, 13, 10, 9, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 13, + 10, 9, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9, 9,101,108,115,101, 32,105,102, 40, 40, +116,109,112, 32, 61, 32,111,117,116, 99,111,108, 46,103, 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, 41, 13, 10, 9, 9, 9,111, +117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9, 9,101,108,115,101, 13, 10, 9, 9, 9,111,117,116, 99,111, +108, 46,103, 32, 61, 32,116,109,112, 59, 13, 10, 9,125, 13, 10, 9,105,102, 40,111,117,116, 99,111,108, 46, 98, 32, 33, 61, 32, + 48, 46, 48, 41, 32,123, 13, 10, 9, 9,102,108,111, 97,116, 32,116,109,112, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 42, + 99,111,108, 50, 46, 98, 59, 13, 10, 9, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 13, 10, 9, 9, 9,111,117, +116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, +111,117,116, 99,111,108, 46, 98, 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, 41, 13, 10, 9, 9, 9,111,117,116, 99,111,108, 46, + 98, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9, 9,101,108,115,101, 13, 10, 9, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, +116,109,112, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95, 98,117,114,110, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117, -116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, - 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, - 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,105,102, 40, 99,111,108, - 50, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111,108, 46,114, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99, -111,108, 46,114, 32, 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, 46,114, 47, 99,111,108, 50, 46,114, 59, 10, 9,105,102, 40, - 99,111,108, 50, 46,103, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111,108, 46,103, 32, 61, 32,102, 97, 99,109, 42,111, -117,116, 99,111,108, 46,103, 32, 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, 46,103, 47, 99,111,108, 50, 46,103, 59, 10, 9, -105,102, 40, 99,111,108, 50, 46, 98, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111,108, 46, 98, 32, 61, 32,102, 97, 99, -109, 42,111,117,116, 99,111,108, 46, 98, 32, 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, 46, 98, 47, 99,111,108, 50, 46, 98, - 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100,105,102,102, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, - 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, - 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, - 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 97, 98,115, 40, 99,111,108, 49, - 32, 45, 32, 99,111,108, 50, 41, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, - 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100, 97,114,107, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32, -118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111, -117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, - 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 46,114,103, 98, 32, 61, 32,109,105,110, 40, 99,111,108, 49, 46,114,103, 98, - 44, 32, 99,111,108, 50, 46,114,103, 98, 42,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, - 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,108,105,103,104,116, 40,102,108,111, 97,116, 32,102, 97, 99, - 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, - 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, - 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 46,114,103, 98, 32, 61, 32,109, 97,120, 40, 99,111,108, 49, 46,114, -103, 98, 44, 32, 99,111,108, 50, 46,114,103, 98, 42,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99, -111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100,111,100,103,101, 40,102,108,111, 97,116, 32,102, - 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, - 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, - 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,105,102, 40,111, -117,116, 99,111,108, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,102,108,111, 97,116, 32,116,109,112, 32, 61, 32, - 49, 46, 48, 32, 45, 32,102, 97, 99, 42, 99,111,108, 50, 46,114, 59, 10, 9, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, - 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 32,105,102, 40, - 40,116,109,112, 32, 61, 32,111,117,116, 99,111,108, 46,114, 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9, 9,111, -117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 10, 9, 9, 9,111,117,116, 99,111,108, 46, -114, 32, 61, 32,116,109,112, 59, 10, 9,125, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,103, 32, 33, 61, 32, 48, 46, 48, 41, - 32,123, 10, 9, 9,102,108,111, 97,116, 32,116,109,112, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 42, 99,111,108, 50, 46, -103, 59, 10, 9, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46,103, 32, - 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32,111,117,116, 99,111,108, 46,103, - 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 10, - 9, 9,101,108,115,101, 10, 9, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32,116,109,112, 59, 10, 9,125, 10, 9,105,102, - 40,111,117,116, 99,111,108, 46, 98, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,102,108,111, 97,116, 32,116,109,112, 32, - 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 42, 99,111,108, 50, 46, 98, 59, 10, 9, 9,105,102, 40,116,109,112, 32, 60, 61, 32, - 48, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 32,105, -102, 40, 40,116,109,112, 32, 61, 32,111,117,116, 99,111,108, 46, 98, 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9, - 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 10, 9, 9, 9,111,117,116, 99,111, -108, 46, 98, 32, 61, 32,116,109,112, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, 98,117,114,110, 40,102, -108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32, -111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40, -102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,116,109,112, 44, 32,102, 97, 99,109, - 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, - 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, 99, 42, 99,111,108, 50, 46,114, 59, 10, 9,105,102, 40,116,109, -112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115, +116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40, +102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,116,109,112, 44, 32,102, 97, 99, +109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 13, 10, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, + 59, 13, 10, 13, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, 99, 42, 99,111,108, 50, 46,114, 59, 13, 10, + 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 13, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 48, 46, + 48, 59, 13, 10, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, 40, 49, 46, 48, 32, 45, 32, 40, 49, 46, 48, 32, + 45, 32,111,117,116, 99,111,108, 46,114, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, 13, 10, 9, 9,111,117,116, 99, +111,108, 46,114, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, 62, 32, 49, 46, 48, 41, + 13, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117, +116, 99,111,108, 46,114, 32, 61, 32,116,109,112, 59, 13, 10, 13, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, + 97, 99, 42, 99,111,108, 50, 46,103, 59, 13, 10, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 13, 10, 9, 9,111, +117,116, 99,111,108, 46,103, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, + 40, 49, 46, 48, 32, 45, 32, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,103, 41, 47,116,109,112, 41, 41, 32, 60, 32, + 48, 46, 48, 41, 13, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,101,108,115,101, 32,105, +102, 40,116,109,112, 32, 62, 32, 49, 46, 48, 41, 13, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 13, + 10, 9,101,108,115,101, 13, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32,116,109,112, 59, 13, 10, 13, 10, 9,116,109, +112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, 99, 42, 99,111,108, 50, 46, 98, 59, 13, 10, 9,105,102, 40,116,109,112, 32, + 60, 61, 32, 48, 46, 48, 41, 13, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,101,108,115, 101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, 40, 49, 46, 48, 32, 45, 32, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, - 46,114, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 48, 46, - 48, 59, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46, -114, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32,116,109,112, 59, - 10, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, 99, 42, 99,111,108, 50, 46,103, 59, 10, 9,105,102, 40, -116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 48, 46, 48, 59, 10, 9,101, -108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, 40, 49, 46, 48, 32, 45, 32, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99, -111,108, 46,103, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, - 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116, 99,111, -108, 46,103, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32,116,109, -112, 59, 10, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, 99, 42, 99,111,108, 50, 46, 98, 59, 10, 9,105, -102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 48, 46, 48, 59, 10, - 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, 40, 49, 46, 48, 32, 45, 32, 40, 49, 46, 48, 32, 45, 32,111,117, -116, 99,111,108, 46, 98, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, - 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116, - 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, -116,109,112, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,104,117,101, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32, -118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111, -117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, - 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, - 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, - 44, 32,116,109,112, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 10, - 10, 9,105,102, 40,104,115,118, 50, 46,121, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,114,103, 98, 95,116,111, 95,104, -115,118, 40,111,117,116, 99,111,108, 44, 32,104,115,118, 41, 59, 10, 9, 9,104,115,118, 46,120, 32, 61, 32,104,115,118, 50, 46, -120, 59, 10, 9, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,116,109,112, 41, 59, 32, 10, 10, 9, 9,111, -117,116, 99,111,108, 32, 61, 32,109,105,120, 40,111,117,116, 99,111,108, 44, 32,116,109,112, 44, 32,102, 97, 99, 41, 59, 10, 9, - 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,109, -105,120, 95,115, 97,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, - 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, - 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, - 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, - 59, 10, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, -111,117,116, 99,111,108, 44, 32,104,115,118, 41, 59, 10, 10, 9,105,102, 40,104,115,118, 46,121, 32, 33, 61, 32, 48, 46, 48, 41, - 32,123, 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 10, 10, 9, 9, -104,115,118, 46,121, 32, 61, 32,102, 97, 99,109, 42,104,115,118, 46,121, 32, 43, 32,102, 97, 99, 42,104,115,118, 50, 46,121, 59, - 10, 9, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,111,117,116, 99,111,108, 41, 59, 10, 9,125, 10,125, - 10, 10,118,111,105,100, 32,109,105,120, 95,118, 97,108, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99, -111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, - 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, - 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,118,101, 99, 52, 32, -104,115,118, 44, 32,104,115,118, 50, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 49, 44, 32,104,115,118, - 41, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 10, 10, 9,104,115, -118, 46,122, 32, 61, 32,102, 97, 99,109, 42,104,115,118, 46,122, 32, 43, 32,102, 97, 99, 42,104,115,118, 50, 46,122, 59, 10, 9, -104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,111,117,116, 99,111,108, 41, 59, 10,125, 10, 10,118,111,105,100, - 32,109,105,120, 95, 99,111,108,111,114, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, - 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9, -102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, - 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, - 99,111,108, 49, 59, 10, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 44, 32,116,109,112, 59, 10, 9,114,103, - 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 10, 10, 9,105,102, 40,104,115,118, 50, 46, -121, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40,111,117,116, 99,111,108, 44, - 32,104,115,118, 41, 59, 10, 9, 9,104,115,118, 46,120, 32, 61, 32,104,115,118, 50, 46,120, 59, 10, 9, 9,104,115,118, 46,121, - 32, 61, 32,104,115,118, 50, 46,121, 59, 10, 9, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,116,109,112, - 41, 59, 32, 10, 10, 9, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40,111,117,116, 99,111,108, 44, 32,116,109,112, 44, - 32,102, 97, 99, 41, 59, 10, 9, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10, 9,125, 10,125, - 10, 10,118,111,105,100, 32,109,105,120, 95,115,111,102,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, - 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, - 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, - 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,118,101, 99, 52, - 32,111,110,101, 61, 32,118,101, 99, 52, 40, 49, 46, 48, 41, 59, 10, 9,118,101, 99, 52, 32,115, 99,114, 61, 32,111,110,101, 32, - 45, 32, 40,111,110,101, 32, 45, 32, 99,111,108, 50, 41, 42, 40,111,110,101, 32, 45, 32, 99,111,108, 49, 41, 59, 10, 9,111,117, -116, 99,111,108, 32, 61, 32,102, 97, 99,109, 42, 99,111,108, 49, 32, 43, 32,102, 97, 99, 42, 40, 40,111,110,101, 32, 45, 32, 99, -111,108, 49, 41, 42, 99,111,108, 50, 42, 99,111,108, 49, 32, 43, 32, 99,111,108, 49, 42,115, 99,114, 41, 59, 10,125, 10, 10,118, -111,105,100, 32,109,105,120, 95,108,105,110,101, 97,114, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99, -111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, - 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, - 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,105,102, 40, 99,111,108, 50, 46,114, 32, 62, 32, 48, - 46, 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, 61, 32, 99,111,108, 49, 46,114, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, - 48, 42, 40, 99,111,108, 50, 46,114, 32, 45, 32, 48, 46, 53, 41, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111, -108, 46,114, 61, 32, 99,111,108, 49, 46,114, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46,114, 41, 32, - 45, 32, 49, 46, 48, 41, 59, 10, 10, 9,105,102, 40, 99,111,108, 50, 46,103, 32, 62, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, - 99,111,108, 46,103, 61, 32, 99,111,108, 49, 46,103, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46,103, - 32, 45, 32, 48, 46, 53, 41, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,103, 61, 32, 99,111,108, 49, - 46,103, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46,103, 41, 32, 45, 32, 49, 46, 48, 41, 59, 10, 10, - 9,105,102, 40, 99,111,108, 50, 46, 98, 32, 62, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 61, 32, 99,111, -108, 49, 46, 98, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46, 98, 32, 45, 32, 48, 46, 53, 41, 41, 59, - 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 61, 32, 99,111,108, 49, 46, 98, 32, 43, 32,102, 97, 99, 42, - 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46, 98, 41, 32, 45, 32, 49, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118, 97, -108,116,111,114,103, 98, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32, 99,111,108,111, -114,109, 97,112, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 44, 32,111,117,116, 32,102,108,111, 97,116, - 32,111,117,116, 97,108,112,104, 97, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, - 40, 99,111,108,111,114,109, 97,112, 44, 32,118,101, 99, 50, 40,102, 97, 99, 44, 32, 48, 46, 48, 41, 41, 59, 10, 9,111,117,116, - 97,108,112,104, 97, 32, 61, 32,111,117,116, 99,111,108, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,114,103, 98,116,111, 98, -119, 40,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 32, - 32, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 99,111,108,111,114, 46,114, 42, 48, 46, 51, 53, 32, 43, 32, 99,111,108, -111,114, 46,103, 42, 48, 46, 52, 53, 32, 43, 32, 99,111,108,111,114, 46, 98, 42, 48, 46, 50, 59, 32, 47, 42, 32,107,101,101,112, - 32,116,104,101,115,101, 32,102, 97, 99,116,111,114,115, 32,105,110, 32,115,121,110, 99, 32,119,105,116,104, 32,116,101,120,116, -117,114,101, 46,104, 58, 82, 71, 66, 84, 79, 66, 87, 32, 42, 47, 10,125, 10, 10,118,111,105,100, 32,105,110,118,101,114,116, 40, -102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117, -116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 46,120,121,122, 32, 61, 32,109,105,120, 40, 99,111,108, 46,120,121, -122, 44, 32,118,101, 99, 51, 40, 49, 46, 48, 44, 32, 49, 46, 48, 44, 32, 49, 46, 48, 41, 32, 45, 32, 99,111,108, 46,120,121,122, - 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46,119, 32, 61, 32, 99,111,108, 46,119, 59, 10,125, 10, 10,118,111, -105,100, 32,104,117,101, 95,115, 97,116, 40,102,108,111, 97,116, 32,104,117,101, 44, 32,102,108,111, 97,116, 32,115, 97,116, 44, - 32,102,108,111, 97,116, 32,118, 97,108,117,101, 44, 32,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111, -108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,118,101, 99, 52, 32,104,115,118, 59, - 10, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 44, 32,104,115,118, 41, 59, 10, 10, 9,104,115,118, 91, 48, - 93, 32, 43, 61, 32, 40,104,117,101, 32, 45, 32, 48, 46, 53, 41, 59, 10, 9,105,102, 40,104,115,118, 91, 48, 93, 62, 49, 46, 48, - 41, 32,104,115,118, 91, 48, 93, 45, 61, 49, 46, 48, 59, 32,101,108,115,101, 32,105,102, 40,104,115,118, 91, 48, 93, 60, 48, 46, - 48, 41, 32,104,115,118, 91, 48, 93, 43, 61, 32, 49, 46, 48, 59, 10, 9,104,115,118, 91, 49, 93, 32, 42, 61, 32,115, 97,116, 59, - 10, 9,105,102, 40,104,115,118, 91, 49, 93, 62, 49, 46, 48, 41, 32,104,115,118, 91, 49, 93, 61, 32, 49, 46, 48, 59, 32,101,108, -115,101, 32,105,102, 40,104,115,118, 91, 49, 93, 60, 48, 46, 48, 41, 32,104,115,118, 91, 49, 93, 61, 32, 48, 46, 48, 59, 10, 9, -104,115,118, 91, 50, 93, 32, 42, 61, 32,118, 97,108,117,101, 59, 10, 9,105,102, 40,104,115,118, 91, 50, 93, 62, 49, 46, 48, 41, - 32,104,115,118, 91, 50, 93, 61, 32, 49, 46, 48, 59, 32,101,108,115,101, 32,105,102, 40,104,115,118, 91, 50, 93, 60, 48, 46, 48, - 41, 32,104,115,118, 91, 50, 93, 61, 32, 48, 46, 48, 59, 10, 10, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, - 32,111,117,116, 99,111,108, 41, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 44, 32,111,117, -116, 99,111,108, 44, 32,102, 97, 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,112, 97,114, 97,116,101, 95,114,103, 98, - 40,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,114, 44, 32,111,117,116, 32,102,108,111, 97, -116, 32,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32, 98, 41, 10,123, 10, 9,114, 32, 61, 32, 99,111,108, 46,114, 59, 10, - 9,103, 32, 61, 32, 99,111,108, 46,103, 59, 10, 9, 98, 32, 61, 32, 99,111,108, 46, 98, 59, 10,125, 10, 10,118,111,105,100, 32, - 99,111,109, 98,105,110,101, 95,114,103, 98, 40,102,108,111, 97,116, 32,114, 44, 32,102,108,111, 97,116, 32,103, 44, 32,102,108, -111, 97,116, 32, 98, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108, 41, 10,123, 10, 9, 99,111,108, 32, 61, 32,118,101, - 99, 52, 40,114, 44, 32,103, 44, 32, 98, 44, 32, 49, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,111,117,116,112,117,116, - 95,110,111,100,101, 40,118,101, 99, 52, 32,114,103, 98, 44, 32,102,108,111, 97,116, 32, 97,108,112,104, 97, 44, 32,111,117,116, - 32,118,101, 99, 52, 32,111,117,116,114,103, 98, 41, 10,123, 10, 9,111,117,116,114,103, 98, 32, 61, 32,118,101, 99, 52, 40,114, -103, 98, 46,114,103, 98, 44, 32, 97,108,112,104, 97, 41, 59, 10,125, 10, 10, 47, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, - 84, 69, 88, 84, 85, 82, 69, 83, 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 10, 10,118,111,105,100, 32, -116,101,120,116,117,114,101, 95,102,108,105,112, 95, 98,108,101,110,100, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,111,117,116, - 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118,101, 99, 46,121,120, -122, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120,116,117,114,101, 95, 98,108,101,110,100, 95,108,105,110, 40,118,101, 99, - 51, 32,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, - 97,108, 32, 61, 32, 40, 49, 46, 48, 43,118,101, 99, 46,120, 41, 47, 50, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,116,101, -120,116,117,114,101, 95, 98,108,101,110,100, 95,113,117, 97,100, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,111,117,116, 32,102, -108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,109, 97,120, 40, 40, 49, 46, - 48, 43,118,101, 99, 46,120, 41, 47, 50, 46, 48, 44, 32, 48, 46, 48, 41, 59, 10, 9,111,117,116,118, 97,108, 32, 42, 61, 32,111, -117,116,118, 97,108, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120,116,117,114,101, 95,119,111,111,100, 95,115,105,110, 40, -118,101, 99, 51, 32,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118, 97,108,117,101, 44, 32,111,117,116, 32,118, -101, 99, 52, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 41, 10,123, 10, 9,102, -108,111, 97,116, 32, 97, 32, 61, 32,115,113,114,116, 40,118,101, 99, 46,120, 42,118,101, 99, 46,120, 32, 43, 32,118,101, 99, 46, -121, 42,118,101, 99, 46,121, 32, 43, 32,118,101, 99, 46,122, 42,118,101, 99, 46,122, 41, 42, 50, 48, 46, 48, 59, 10, 9,102,108, -111, 97,116, 32,119,105, 32, 61, 32, 48, 46, 53, 32, 43, 32, 48, 46, 53, 42,115,105,110, 40, 97, 41, 59, 10, 10, 9,118, 97,108, -117,101, 32, 61, 32,119,105, 59, 10, 9, 99,111,108,111,114, 32, 61, 32,118,101, 99, 52, 40,119,105, 44, 32,119,105, 44, 32,119, -105, 44, 32, 49, 46, 48, 41, 59, 10, 9,110,111,114,109, 97,108, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 44, 32, 48, 46, 48, - 44, 32, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120,116,117,114,101, 95,105,109, 97,103,101, 40,118,101, - 99, 51, 32,118,101, 99, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,111,117,116, 32,102,108,111, 97,116, - 32,118, 97,108,117,101, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,118,101, 99, 51, - 32,110,111,114,109, 97,108, 41, 10,123, 10, 9, 99,111,108,111,114, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, - 97, 44, 32, 40,118,101, 99, 46,120,121, 32, 43, 32,118,101, 99, 50, 40, 49, 46, 48, 44, 32, 49, 46, 48, 41, 41, 42, 48, 46, 53, - 41, 59, 10, 9,118, 97,108,117,101, 32, 61, 32, 49, 46, 48, 59, 10, 10, 9,110,111,114,109, 97,108, 46,120, 32, 61, 32, 50, 46, - 48, 42, 40, 99,111,108,111,114, 46,114, 32, 45, 32, 48, 46, 53, 41, 59, 10, 9,110,111,114,109, 97,108, 46,121, 32, 61, 32, 50, - 46, 48, 42, 40, 48, 46, 53, 32, 45, 32, 99,111,108,111,114, 46,103, 41, 59, 10, 9,110,111,114,109, 97,108, 46,122, 32, 61, 32, - 50, 46, 48, 42, 40, 99,111,108,111,114, 46, 98, 32, 45, 32, 48, 46, 53, 41, 59, 10,125, 10, 10, 47, 42, 42, 42, 42, 42, 42, 42, - 42, 42, 42, 42, 42, 42, 32, 77, 84, 69, 88, 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 10, 10, -118,111,105,100, 32,116,101,120, 99,111, 95,111,114, 99,111, 40,118,101, 99, 51, 32, 97,116,116,111,114, 99,111, 44, 32,111,117, -116, 32,118,101, 99, 51, 32,111,114, 99,111, 41, 10,123, 10, 9,111,114, 99,111, 32, 61, 32, 97,116,116,111,114, 99,111, 59, 10, -125, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,117,118, 40,118,101, 99, 50, 32, 97,116,116,117,118, 44, 32,111,117,116, - 32,118,101, 99, 51, 32,117,118, 41, 10,123, 10, 9, 47, 42, 32,100,105,115, 97, 98,108,101,100, 32,102,111,114, 32,110,111,119, - 44, 32,119,111,114,107,115, 32,116,111,103,101,116,104,101,114, 32,119,105,116,104, 32,108,101, 97,118,105,110,103, 32,111,117, -116, 32,109,116,101,120, 95, 50,100, 95,109, 97,112,112,105,110,103, 10, 9, 32, 32, 32,117,118, 32, 61, 32,118,101, 99, 51, 40, - 97,116,116,117,118, 42, 50, 46, 48, 32, 45, 32,118,101, 99, 50, 40, 49, 46, 48, 44, 32, 49, 46, 48, 41, 44, 32, 48, 46, 48, 41, - 59, 32, 42, 47, 10, 9,117,118, 32, 61, 32,118,101, 99, 51, 40, 97,116,116,117,118, 44, 32, 48, 46, 48, 41, 59, 10,125, 10, 10, -118,111,105,100, 32,116,101,120, 99,111, 95,110,111,114,109, 40,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111,117,116, - 32,118,101, 99, 51, 32,111,117,116,110,111,114,109, 97,108, 41, 10,123, 10, 9, 47, 42, 32, 99,111,114,114,101,115,112,111,110, -100,115, 32,116,111, 32,115,104,105, 45, 62,111,114,110, 44, 32,119,104,105, 99,104, 32,105,115, 32,110,101,103, 97,116,101,100, - 32,115,111, 32, 99, 97,110, 99,101,108,115, 10, 9, 32, 32, 32,111,117,116, 32, 98,108,101,110,100,101,114, 32,110,111,114,109, - 97,108, 32,110,101,103, 97,116,105,111,110, 32, 42, 47, 10, 9,111,117,116,110,111,114,109, 97,108, 32, 61, 32,110,111,114,109, - 97,108,105,122,101, 40,110,111,114,109, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,116, 97,110, -103,101,110,116, 40,118,101, 99, 52, 32,116, 97,110,103,101,110,116, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,116, - 97,110,103,101,110,116, 41, 10,123, 10, 9,111,117,116,116, 97,110,103,101,110,116, 32, 61, 32,110,111,114,109, 97,108,105,122, -101, 40,116, 97,110,103,101,110,116, 46,120,121,122, 41, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,103,108, + 46, 98, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, 13, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 48, + 46, 48, 59, 13, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, 62, 32, 49, 46, 48, 41, 13, 10, 9, 9,111,117,116, 99, +111,108, 46, 98, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, + 32,116,109,112, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95,104,117,101, 40,102,108,111, 97,116, 32,102, + 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, + 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, + 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, + 32,102, 97, 99, 59, 13, 10, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 13, 10, 13, 10, 9,118,101, 99, + 52, 32,104,115,118, 44, 32,104,115,118, 50, 44, 32,116,109,112, 59, 13, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99, +111,108, 50, 44, 32,104,115,118, 50, 41, 59, 13, 10, 13, 10, 9,105,102, 40,104,115,118, 50, 46,121, 32, 33, 61, 32, 48, 46, 48, + 41, 32,123, 13, 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40,111,117,116, 99,111,108, 44, 32,104,115,118, 41, 59, 13, + 10, 9, 9,104,115,118, 46,120, 32, 61, 32,104,115,118, 50, 46,120, 59, 13, 10, 9, 9,104,115,118, 95,116,111, 95,114,103, 98, + 40,104,115,118, 44, 32,116,109,112, 41, 59, 32, 13, 10, 13, 10, 9, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40,111, +117,116, 99,111,108, 44, 32,116,109,112, 44, 32,102, 97, 99, 41, 59, 13, 10, 9, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, + 99,111,108, 49, 46, 97, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95,115, 97,116, 40,102, +108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32, +111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109, +112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, + 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 13, 10, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 13, 10, + 13, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 59, 13, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, +111,117,116, 99,111,108, 44, 32,104,115,118, 41, 59, 13, 10, 13, 10, 9,105,102, 40,104,115,118, 46,121, 32, 33, 61, 32, 48, 46, + 48, 41, 32,123, 13, 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 13, + 10, 13, 10, 9, 9,104,115,118, 46,121, 32, 61, 32,102, 97, 99,109, 42,104,115,118, 46,121, 32, 43, 32,102, 97, 99, 42,104,115, +118, 50, 46,121, 59, 13, 10, 9, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,111,117,116, 99,111,108, 41, + 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95,118, 97,108, 40,102,108,111, 97,116, 32,102, + 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, + 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, + 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, + 32,102, 97, 99, 59, 13, 10, 13, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 59, 13, 10, 9,114,103, 98, 95, +116,111, 95,104,115,118, 40, 99,111,108, 49, 44, 32,104,115,118, 41, 59, 13, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, + 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 13, 10, 13, 10, 9,104,115,118, 46,122, 32, 61, 32,102, 97, 99,109, 42,104,115, +118, 46,122, 32, 43, 32,102, 97, 99, 42,104,115,118, 50, 46,122, 59, 13, 10, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104, +115,118, 44, 32,111,117,116, 99,111,108, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95, 99,111,108,111, +114, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, + 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99, +108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99, +109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 13, 10, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, + 59, 13, 10, 13, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 44, 32,116,109,112, 59, 13, 10, 9,114,103, 98, + 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 13, 10, 13, 10, 9,105,102, 40,104,115,118, 50, + 46,121, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40,111,117,116, 99,111, +108, 44, 32,104,115,118, 41, 59, 13, 10, 9, 9,104,115,118, 46,120, 32, 61, 32,104,115,118, 50, 46,120, 59, 13, 10, 9, 9,104, +115,118, 46,121, 32, 61, 32,104,115,118, 50, 46,121, 59, 13, 10, 9, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, + 44, 32,116,109,112, 41, 59, 32, 13, 10, 13, 10, 9, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40,111,117,116, 99,111, +108, 44, 32,116,109,112, 44, 32,102, 97, 99, 41, 59, 13, 10, 9, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, + 46, 97, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95,115,111,102,116, 40,102,108,111, 97, +116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, + 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, + 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, + 48, 32, 45, 32,102, 97, 99, 59, 13, 10, 13, 10, 9,118,101, 99, 52, 32,111,110,101, 61, 32,118,101, 99, 52, 40, 49, 46, 48, 41, + 59, 13, 10, 9,118,101, 99, 52, 32,115, 99,114, 61, 32,111,110,101, 32, 45, 32, 40,111,110,101, 32, 45, 32, 99,111,108, 50, 41, + 42, 40,111,110,101, 32, 45, 32, 99,111,108, 49, 41, 59, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32,102, 97, 99,109, 42, 99, +111,108, 49, 32, 43, 32,102, 97, 99, 42, 40, 40,111,110,101, 32, 45, 32, 99,111,108, 49, 41, 42, 99,111,108, 50, 42, 99,111,108, + 49, 32, 43, 32, 99,111,108, 49, 42,115, 99,114, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,105,120, 95,108,105, +110,101, 97,114, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, + 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, + 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 13, 10, 9,111,117,116, 99, +111,108, 32, 61, 32, 99,111,108, 49, 59, 13, 10, 13, 10, 9,105,102, 40, 99,111,108, 50, 46,114, 32, 62, 32, 48, 46, 53, 41, 13, + 10, 9, 9,111,117,116, 99,111,108, 46,114, 61, 32, 99,111,108, 49, 46,114, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, + 99,111,108, 50, 46,114, 32, 45, 32, 48, 46, 53, 41, 41, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117,116, 99,111,108, + 46,114, 61, 32, 99,111,108, 49, 46,114, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46,114, 41, 32, 45, + 32, 49, 46, 48, 41, 59, 13, 10, 13, 10, 9,105,102, 40, 99,111,108, 50, 46,103, 32, 62, 32, 48, 46, 53, 41, 13, 10, 9, 9,111, +117,116, 99,111,108, 46,103, 61, 32, 99,111,108, 49, 46,103, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, 99,111,108, 50, + 46,103, 32, 45, 32, 48, 46, 53, 41, 41, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117,116, 99,111,108, 46,103, 61, 32, + 99,111,108, 49, 46,103, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46,103, 41, 32, 45, 32, 49, 46, 48, + 41, 59, 13, 10, 13, 10, 9,105,102, 40, 99,111,108, 50, 46, 98, 32, 62, 32, 48, 46, 53, 41, 13, 10, 9, 9,111,117,116, 99,111, +108, 46, 98, 61, 32, 99,111,108, 49, 46, 98, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46, 98, 32, 45, + 32, 48, 46, 53, 41, 41, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 61, 32, 99,111,108, 49, + 46, 98, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46, 98, 41, 32, 45, 32, 49, 46, 48, 41, 59, 13, 10, +125, 13, 10, 13, 10,118,111,105,100, 32,118, 97,108,116,111,114,103, 98, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,115, 97, +109,112,108,101,114, 50, 68, 32, 99,111,108,111,114,109, 97,112, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111, +108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116, 97,108,112,104, 97, 41, 13, 10,123, 13, 10, 9,111,117,116, 99, +111,108, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40, 99,111,108,111,114,109, 97,112, 44, 32,118,101, 99, 50, 40,102, 97, + 99, 44, 32, 48, 46, 48, 41, 41, 59, 13, 10, 9,111,117,116, 97,108,112,104, 97, 32, 61, 32,111,117,116, 99,111,108, 46, 97, 59, + 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,114,103, 98,116,111, 98,119, 40,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32, +111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 32, 32, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, + 61, 32, 99,111,108,111,114, 46,114, 42, 48, 46, 51, 53, 32, 43, 32, 99,111,108,111,114, 46,103, 42, 48, 46, 52, 53, 32, 43, 32, + 99,111,108,111,114, 46, 98, 42, 48, 46, 50, 59, 32, 47, 42, 32,107,101,101,112, 32,116,104,101,115,101, 32,102, 97, 99,116,111, +114,115, 32,105,110, 32,115,121,110, 99, 32,119,105,116,104, 32,116,101,120,116,117,114,101, 46,104, 58, 82, 71, 66, 84, 79, 66, + 87, 32, 42, 47, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,105,110,118,101,114,116, 40,102,108,111, 97,116, 32,102, 97, 99, + 44, 32,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, + 10, 9,111,117,116, 99,111,108, 46,120,121,122, 32, 61, 32,109,105,120, 40, 99,111,108, 46,120,121,122, 44, 32,118,101, 99, 51, + 40, 49, 46, 48, 44, 32, 49, 46, 48, 44, 32, 49, 46, 48, 41, 32, 45, 32, 99,111,108, 46,120,121,122, 44, 32,102, 97, 99, 41, 59, + 13, 10, 9,111,117,116, 99,111,108, 46,119, 32, 61, 32, 99,111,108, 46,119, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32, +104,117,101, 95,115, 97,116, 40,102,108,111, 97,116, 32,104,117,101, 44, 32,102,108,111, 97,116, 32,115, 97,116, 44, 32,102,108, +111, 97,116, 32,118, 97,108,117,101, 44, 32,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 44, 32, +111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,118,101, 99, 52, 32,104,115,118, 59, 13, + 10, 13, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 44, 32,104,115,118, 41, 59, 13, 10, 13, 10, 9,104,115, +118, 91, 48, 93, 32, 43, 61, 32, 40,104,117,101, 32, 45, 32, 48, 46, 53, 41, 59, 13, 10, 9,105,102, 40,104,115,118, 91, 48, 93, + 62, 49, 46, 48, 41, 32,104,115,118, 91, 48, 93, 45, 61, 49, 46, 48, 59, 32,101,108,115,101, 32,105,102, 40,104,115,118, 91, 48, + 93, 60, 48, 46, 48, 41, 32,104,115,118, 91, 48, 93, 43, 61, 32, 49, 46, 48, 59, 13, 10, 9,104,115,118, 91, 49, 93, 32, 42, 61, + 32,115, 97,116, 59, 13, 10, 9,105,102, 40,104,115,118, 91, 49, 93, 62, 49, 46, 48, 41, 32,104,115,118, 91, 49, 93, 61, 32, 49, + 46, 48, 59, 32,101,108,115,101, 32,105,102, 40,104,115,118, 91, 49, 93, 60, 48, 46, 48, 41, 32,104,115,118, 91, 49, 93, 61, 32, + 48, 46, 48, 59, 13, 10, 9,104,115,118, 91, 50, 93, 32, 42, 61, 32,118, 97,108,117,101, 59, 13, 10, 9,105,102, 40,104,115,118, + 91, 50, 93, 62, 49, 46, 48, 41, 32,104,115,118, 91, 50, 93, 61, 32, 49, 46, 48, 59, 32,101,108,115,101, 32,105,102, 40,104,115, +118, 91, 50, 93, 60, 48, 46, 48, 41, 32,104,115,118, 91, 50, 93, 61, 32, 48, 46, 48, 59, 13, 10, 13, 10, 9,104,115,118, 95,116, +111, 95,114,103, 98, 40,104,115,118, 44, 32,111,117,116, 99,111,108, 41, 59, 13, 10, 13, 10, 9,111,117,116, 99,111,108, 32, 61, + 32,109,105,120, 40, 99,111,108, 44, 32,111,117,116, 99,111,108, 44, 32,102, 97, 99, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111, +105,100, 32,115,101,112, 97,114, 97,116,101, 95,114,103, 98, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,102,108, +111, 97,116, 32,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32, 98, 41, + 13, 10,123, 13, 10, 9,114, 32, 61, 32, 99,111,108, 46,114, 59, 13, 10, 9,103, 32, 61, 32, 99,111,108, 46,103, 59, 13, 10, 9, + 98, 32, 61, 32, 99,111,108, 46, 98, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32, 99,111,109, 98,105,110,101, 95,114,103, + 98, 40,102,108,111, 97,116, 32,114, 44, 32,102,108,111, 97,116, 32,103, 44, 32,102,108,111, 97,116, 32, 98, 44, 32,111,117,116, + 32,118,101, 99, 52, 32, 99,111,108, 41, 13, 10,123, 13, 10, 9, 99,111,108, 32, 61, 32,118,101, 99, 52, 40,114, 44, 32,103, 44, + 32, 98, 44, 32, 49, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,111,117,116,112,117,116, 95,110,111,100,101, + 40,118,101, 99, 52, 32,114,103, 98, 44, 32,102,108,111, 97,116, 32, 97,108,112,104, 97, 44, 32,111,117,116, 32,118,101, 99, 52, + 32,111,117,116,114,103, 98, 41, 13, 10,123, 13, 10, 9,111,117,116,114,103, 98, 32, 61, 32,118,101, 99, 52, 40,114,103, 98, 46, +114,103, 98, 44, 32, 97,108,112,104, 97, 41, 59, 13, 10,125, 13, 10, 13, 10, 47, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, + 84, 69, 88, 84, 85, 82, 69, 83, 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 13, 10, 13, 10,118,111,105, +100, 32,116,101,120,116,117,114,101, 95,102,108,105,112, 95, 98,108,101,110,100, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,111, +117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 41, 13, 10,123, 13, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118,101, + 99, 46,121,120,122, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,116,101,120,116,117,114,101, 95, 98,108,101,110,100, 95, +108,105,110, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, + 10,123, 13, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 40, 49, 46, 48, 43,118,101, 99, 46,120, 41, 47, 50, 46, 48, 59, 13, 10, +125, 13, 10, 13, 10,118,111,105,100, 32,116,101,120,116,117,114,101, 95, 98,108,101,110,100, 95,113,117, 97,100, 40,118,101, 99, + 51, 32,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, 9,111,117, +116,118, 97,108, 32, 61, 32,109, 97,120, 40, 40, 49, 46, 48, 43,118,101, 99, 46,120, 41, 47, 50, 46, 48, 44, 32, 48, 46, 48, 41, + 59, 13, 10, 9,111,117,116,118, 97,108, 32, 42, 61, 32,111,117,116,118, 97,108, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, + 32,116,101,120,116,117,114,101, 95,119,111,111,100, 95,115,105,110, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,111,117,116, 32, +102,108,111, 97,116, 32,118, 97,108,117,101, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,111,117,116, + 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32, 97, 32, 61, 32,115,113,114, +116, 40,118,101, 99, 46,120, 42,118,101, 99, 46,120, 32, 43, 32,118,101, 99, 46,121, 42,118,101, 99, 46,121, 32, 43, 32,118,101, + 99, 46,122, 42,118,101, 99, 46,122, 41, 42, 50, 48, 46, 48, 59, 13, 10, 9,102,108,111, 97,116, 32,119,105, 32, 61, 32, 48, 46, + 53, 32, 43, 32, 48, 46, 53, 42,115,105,110, 40, 97, 41, 59, 13, 10, 13, 10, 9,118, 97,108,117,101, 32, 61, 32,119,105, 59, 13, + 10, 9, 99,111,108,111,114, 32, 61, 32,118,101, 99, 52, 40,119,105, 44, 32,119,105, 44, 32,119,105, 44, 32, 49, 46, 48, 41, 59, + 13, 10, 9,110,111,114,109, 97,108, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 44, 32, 48, 46, 48, 44, 32, 48, 46, 48, 41, 59, + 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,116,101,120,116,117,114,101, 95,105,109, 97,103,101, 40,118,101, 99, 51, 32,118, +101, 99, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118, 97,108, +117,101, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,118,101, 99, 51, 32,110,111,114, +109, 97,108, 41, 13, 10,123, 13, 10, 9, 99,111,108,111,114, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, + 32, 40,118,101, 99, 46,120,121, 32, 43, 32,118,101, 99, 50, 40, 49, 46, 48, 44, 32, 49, 46, 48, 41, 41, 42, 48, 46, 53, 41, 59, + 13, 10, 9,118, 97,108,117,101, 32, 61, 32, 49, 46, 48, 59, 13, 10, 13, 10, 9,110,111,114,109, 97,108, 46,120, 32, 61, 32, 50, + 46, 48, 42, 40, 99,111,108,111,114, 46,114, 32, 45, 32, 48, 46, 53, 41, 59, 13, 10, 9,110,111,114,109, 97,108, 46,121, 32, 61, + 32, 50, 46, 48, 42, 40, 48, 46, 53, 32, 45, 32, 99,111,108,111,114, 46,103, 41, 59, 13, 10, 9,110,111,114,109, 97,108, 46,122, + 32, 61, 32, 50, 46, 48, 42, 40, 99,111,108,111,114, 46, 98, 32, 45, 32, 48, 46, 53, 41, 59, 13, 10,125, 13, 10, 13, 10, 47, 42, + 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, 77, 84, 69, 88, 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, + 42, 42, 42, 47, 13, 10, 13, 10,118,111,105,100, 32,116,101,120, 99,111, 95,111,114, 99,111, 40,118,101, 99, 51, 32, 97,116,116, +111,114, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,114, 99,111, 41, 13, 10,123, 13, 10, 9,111,114, 99,111, 32, 61, + 32, 97,116,116,111,114, 99,111, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,116,101,120, 99,111, 95,117,118, 40,118,101, + 99, 50, 32, 97,116,116,117,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,117,118, 41, 13, 10,123, 13, 10, 9, 47, 42, 32,100, +105,115, 97, 98,108,101,100, 32,102,111,114, 32,110,111,119, 44, 32,119,111,114,107,115, 32,116,111,103,101,116,104,101,114, 32, +119,105,116,104, 32,108,101, 97,118,105,110,103, 32,111,117,116, 32,109,116,101,120, 95, 50,100, 95,109, 97,112,112,105,110,103, + 13, 10, 9, 32, 32, 32,117,118, 32, 61, 32,118,101, 99, 51, 40, 97,116,116,117,118, 42, 50, 46, 48, 32, 45, 32,118,101, 99, 50, + 40, 49, 46, 48, 44, 32, 49, 46, 48, 41, 44, 32, 48, 46, 48, 41, 59, 32, 42, 47, 13, 10, 9,117,118, 32, 61, 32,118,101, 99, 51, + 40, 97,116,116,117,118, 44, 32, 48, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,116,101,120, 99,111, 95,110, +111,114,109, 40,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,110,111,114, +109, 97,108, 41, 13, 10,123, 13, 10, 9, 47, 42, 32, 99,111,114,114,101,115,112,111,110,100,115, 32,116,111, 32,115,104,105, 45, + 62,111,114,110, 44, 32,119,104,105, 99,104, 32,105,115, 32,110,101,103, 97,116,101,100, 32,115,111, 32, 99, 97,110, 99,101,108, +115, 13, 10, 9, 32, 32, 32,111,117,116, 32, 98,108,101,110,100,101,114, 32,110,111,114,109, 97,108, 32,110,101,103, 97,116,105, +111,110, 32, 42, 47, 13, 10, 9,111,117,116,110,111,114,109, 97,108, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,110,111, +114,109, 97,108, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,116,101,120, 99,111, 95,116, 97,110,103,101,110,116, 40, +118,101, 99, 52, 32,116, 97,110,103,101,110,116, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,116, 97,110,103,101,110, +116, 41, 13, 10,123, 13, 10, 9,111,117,116,116, 97,110,103,101,110,116, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,116, + 97,110,103,101,110,116, 46,120,121,122, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,116,101,120, 99,111, 95,103,108, 111, 98, 97,108, 40,109, 97,116, 52, 32,118,105,101,119,105,110,118,109, 97,116, 44, 32,118,101, 99, 51, 32, 99,111, 44, 32,111, -117,116, 32,118,101, 99, 51, 32,103,108,111, 98, 97,108, 41, 10,123, 10, 9,103,108,111, 98, 97,108, 32, 61, 32, 40,118,105,101, -119,105,110,118,109, 97,116, 42,118,101, 99, 52, 40, 99,111, 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 10,125, 10, 10,118, -111,105,100, 32,116,101,120, 99,111, 95,111, 98,106,101, 99,116, 40,109, 97,116, 52, 32,118,105,101,119,105,110,118,109, 97,116, - 44, 32,109, 97,116, 52, 32,111, 98,105,110,118,109, 97,116, 44, 32,118,101, 99, 51, 32, 99,111, 44, 32,111,117,116, 32,118,101, - 99, 51, 32,111, 98,106,101, 99,116, 41, 10,123, 10, 9,111, 98,106,101, 99,116, 32, 61, 32, 40,111, 98,105,110,118,109, 97,116, - 42, 40,118,105,101,119,105,110,118,109, 97,116, 42,118,101, 99, 52, 40, 99,111, 44, 32, 49, 46, 48, 41, 41, 41, 46,120,121,122, - 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,114,101,102,108, 40,118,101, 99, 51, 32,118,110, 44, 32,118,101, - 99, 51, 32,118,105,101,119, 44, 32,111,117,116, 32,118,101, 99, 51, 32,114,101,102, 41, 10,123, 10, 9,114,101,102, 32, 61, 32, -118,105,101,119, 32, 45, 32, 50, 46, 48, 42,100,111,116, 40,118,110, 44, 32,118,105,101,119, 41, 42,118,110, 59, 10,125, 10, 10, -118,111,105,100, 32,115,104, 97,100,101, 95,110,111,114,109, 40,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111,117,116, - 32,118,101, 99, 51, 32,111,117,116,110,111,114,109, 97,108, 41, 10,123, 10, 9, 47, 42, 32, 98,108,101,110,100,101,114, 32,114, -101,110,100,101,114, 32,110,111,114,109, 97,108, 32,105,115, 32,110,101,103, 97,116,101,100, 32, 42, 47, 10, 9,111,117,116,110, -111,114,109, 97,108, 32, 61, 32, 45,110,111,114,109, 97,108,105,122,101, 40,110,111,114,109, 97,108, 41, 59, 10,125, 10, 10,118, -111,105,100, 32,109,116,101,120, 95,114,103, 98, 95, 98,108,101,110,100, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32, -118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, - 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, - 99,109, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45, -102, 97, 99,116, 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 32, 43, 32,102, 97, - 99,109, 42,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,109,117,108, 40, -118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32, -102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, - 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, - 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,103, 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32, 40,102, 97, - 99,109, 32, 43, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 41, 42,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105, -100, 32,109,116,101,120, 95,114,103, 98, 95,115, 99,114,101,101,110, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118, -101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, - 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99, -109, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, - 97, 99,103, 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32,118,101, 99, 51, 40, 49, 46, 48, 41, 32, 45, 32, 40,118,101, 99, 51, - 40,102, 97, 99,109, 41, 32, 43, 32,102, 97, 99,116, 42, 40,118,101, 99, 51, 40, 49, 46, 48, 41, 32, 45, 32,116,101,120, 99,111, -108, 41, 41, 42, 40,118,101, 99, 51, 40, 49, 46, 48, 41, 32, 45, 32,111,117,116, 99,111,108, 41, 59, 10,125, 10, 10,118,111,105, -100, 32,109,116,101,120, 95,114,103, 98, 95,111,118,101,114,108, 97,121, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32, -118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, - 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, - 99,109, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45, -102, 97, 99,103, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,114, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,105,110, 99, -111,108, 46,114, 32, 61, 32,111,117,116, 99,111,108, 46,114, 42, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, - 42,116,101,120, 99,111,108, 46,114, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,105,110, 99,111,108, 46,114, 32, 61, 32, 49, 46, - 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42, 40, 49, 46, 48, 32, 45, 32,116,101,120, 99, -111,108, 46,114, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,114, 41, 59, 10, 10, 9,105,102, 40,111,117, -116, 99,111,108, 46,103, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,105,110, 99,111,108, 46,103, 32, 61, 32,111,117,116, 99,111,108, - 46,103, 42, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,103, 41, 59, 10, 9, -101,108,115,101, 10, 9, 9,105,110, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, - 46, 48, 42,102, 97, 99,116, 42, 40, 49, 46, 48, 32, 45, 32,116,101,120, 99,111,108, 46,103, 41, 41, 42, 40, 49, 46, 48, 32, 45, - 32,111,117,116, 99,111,108, 46,103, 41, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46, 98, 32, 60, 32, 48, 46, 53, 41, - 10, 9, 9,105,110, 99,111,108, 46, 98, 32, 61, 32,111,117,116, 99,111,108, 46, 98, 42, 40,102, 97, 99,109, 32, 43, 32, 50, 46, - 48, 42,102, 97, 99,116, 42,116,101,120, 99,111,108, 46, 98, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,105,110, 99,111,108, 46, - 98, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42, 40, 49, 46, 48, 32, - 45, 32,116,101,120, 99,111,108, 46, 98, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46, 98, 41, 59, 10,125, - 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,115,117, 98, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, - 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32, -102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,105,110, 99,111,108, 32, 61, - 32, 45,102, 97, 99,116, 42,102, 97, 99,103, 42,116,101,120, 99,111,108, 32, 43, 32,111,117,116, 99,111,108, 59, 10,125, 10, 10, -118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95, 97,100,100, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118, -101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, - 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,105,110, 99,111,108, 32, 61, 32,102, - 97, 99,116, 42,102, 97, 99,103, 42,116,101,120, 99,111,108, 32, 43, 32,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105, -100, 32,109,116,101,120, 95,114,103, 98, 95,100,105,118, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, - 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, - 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, - 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,116, - 59, 10, 10, 9,105,102, 40,116,101,120, 99,111,108, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, 32,105,110, 99,111,108, 46,114, 32, - 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46,114, 32, 43, 32,102, 97, 99,116, 42,111,117,116, 99,111,108, 46,114, 47, -116,101,120, 99,111,108, 46,114, 59, 10, 9,105,102, 40,116,101,120, 99,111,108, 46,103, 32, 33, 61, 32, 48, 46, 48, 41, 32,105, -110, 99,111,108, 46,103, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46,103, 32, 43, 32,102, 97, 99,116, 42,111,117, -116, 99,111,108, 46,103, 47,116,101,120, 99,111,108, 46,103, 59, 10, 9,105,102, 40,116,101,120, 99,111,108, 46, 98, 32, 33, 61, - 32, 48, 46, 48, 41, 32,105,110, 99,111,108, 46, 98, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46, 98, 32, 43, 32, -102, 97, 99,116, 42,111,117,116, 99,111,108, 46, 98, 47,116,101,120, 99,111,108, 46, 98, 59, 10,125, 10, 10,118,111,105,100, 32, +117,116, 32,118,101, 99, 51, 32,103,108,111, 98, 97,108, 41, 13, 10,123, 13, 10, 9,103,108,111, 98, 97,108, 32, 61, 32, 40,118, +105,101,119,105,110,118,109, 97,116, 42,118,101, 99, 52, 40, 99,111, 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 13, 10,125, + 13, 10, 13, 10,118,111,105,100, 32,116,101,120, 99,111, 95,111, 98,106,101, 99,116, 40,109, 97,116, 52, 32,118,105,101,119,105, +110,118,109, 97,116, 44, 32,109, 97,116, 52, 32,111, 98,105,110,118,109, 97,116, 44, 32,118,101, 99, 51, 32, 99,111, 44, 32,111, +117,116, 32,118,101, 99, 51, 32,111, 98,106,101, 99,116, 41, 13, 10,123, 13, 10, 9,111, 98,106,101, 99,116, 32, 61, 32, 40,111, + 98,105,110,118,109, 97,116, 42, 40,118,105,101,119,105,110,118,109, 97,116, 42,118,101, 99, 52, 40, 99,111, 44, 32, 49, 46, 48, + 41, 41, 41, 46,120,121,122, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,116,101,120, 99,111, 95,114,101,102,108, 40,118, +101, 99, 51, 32,118,110, 44, 32,118,101, 99, 51, 32,118,105,101,119, 44, 32,111,117,116, 32,118,101, 99, 51, 32,114,101,102, 41, + 13, 10,123, 13, 10, 9,114,101,102, 32, 61, 32,118,105,101,119, 32, 45, 32, 50, 46, 48, 42,100,111,116, 40,118,110, 44, 32,118, +105,101,119, 41, 42,118,110, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,110,111,114,109, 40,118, +101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,110,111,114,109, 97,108, 41, 13, + 10,123, 13, 10, 9, 47, 42, 32, 98,108,101,110,100,101,114, 32,114,101,110,100,101,114, 32,110,111,114,109, 97,108, 32,105,115, + 32,110,101,103, 97,116,101,100, 32, 42, 47, 13, 10, 9,111,117,116,110,111,114,109, 97,108, 32, 61, 32, 45,110,111,114,109, 97, +108,105,122,101, 40,110,111,114,109, 97,108, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, + 98, 95, 98,108,101,110,100, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, + 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, + 99, 51, 32,105,110, 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 13, 10, 13, 10, 9,102, + 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 13, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,116, 59, 13, + 10, 13, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 32, 43, 32,102, 97, 99,109, 42,111, +117,116, 99,111,108, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,109,117,108, 40,118, +101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, + 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, + 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 13, 10, 13, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, + 99,103, 59, 13, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,103, 59, 13, 10, 13, 10, 9,105,110, 99,111,108, + 32, 61, 32, 40,102, 97, 99,109, 32, 43, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 41, 42,111,117,116, 99,111,108, 59, 13, + 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,115, 99,114,101,101,110, 40,118,101, 99, 51, 32, +111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, + 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 13, 10,123, 13, + 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 13, 10, 13, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 13, + 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,103, 59, 13, 10, 13, 10, 9,105,110, 99,111,108, 32, 61, 32,118, +101, 99, 51, 40, 49, 46, 48, 41, 32, 45, 32, 40,118,101, 99, 51, 40,102, 97, 99,109, 41, 32, 43, 32,102, 97, 99,116, 42, 40,118, +101, 99, 51, 40, 49, 46, 48, 41, 32, 45, 32,116,101,120, 99,111,108, 41, 41, 42, 40,118,101, 99, 51, 40, 49, 46, 48, 41, 32, 45, + 32,111,117,116, 99,111,108, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,111,118, +101,114,108, 97,121, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32, +102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, + 32,105,110, 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 13, 10, 13, 10, 9,102, 97, 99, +116, 32, 42, 61, 32,102, 97, 99,103, 59, 13, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,103, 59, 13, 10, 13, + 10, 9,105,102, 40,111,117,116, 99,111,108, 46,114, 32, 60, 32, 48, 46, 53, 41, 13, 10, 9, 9,105,110, 99,111,108, 46,114, 32, + 61, 32,111,117,116, 99,111,108, 46,114, 42, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42,116,101,120, 99, +111,108, 46,114, 41, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,105,110, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 32, 45, + 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42, 40, 49, 46, 48, 32, 45, 32,116,101,120, 99,111,108, 46, +114, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,114, 41, 59, 13, 10, 13, 10, 9,105,102, 40,111,117,116, + 99,111,108, 46,103, 32, 60, 32, 48, 46, 53, 41, 13, 10, 9, 9,105,110, 99,111,108, 46,103, 32, 61, 32,111,117,116, 99,111,108, + 46,103, 42, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,103, 41, 59, 13, 10, + 9,101,108,115,101, 13, 10, 9, 9,105,110, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, + 32, 50, 46, 48, 42,102, 97, 99,116, 42, 40, 49, 46, 48, 32, 45, 32,116,101,120, 99,111,108, 46,103, 41, 41, 42, 40, 49, 46, 48, + 32, 45, 32,111,117,116, 99,111,108, 46,103, 41, 59, 13, 10, 13, 10, 9,105,102, 40,111,117,116, 99,111,108, 46, 98, 32, 60, 32, + 48, 46, 53, 41, 13, 10, 9, 9,105,110, 99,111,108, 46, 98, 32, 61, 32,111,117,116, 99,111,108, 46, 98, 42, 40,102, 97, 99,109, + 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42,116,101,120, 99,111,108, 46, 98, 41, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, + 9,105,110, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, +116, 42, 40, 49, 46, 48, 32, 45, 32,116,101,120, 99,111,108, 46, 98, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111, +108, 46, 98, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,115,117, 98, 40,118,101, + 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, + 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 13, + 10,123, 13, 10, 9,105,110, 99,111,108, 32, 61, 32, 45,102, 97, 99,116, 42,102, 97, 99,103, 42,116,101,120, 99,111,108, 32, 43, + 32,111,117,116, 99,111,108, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95, 97,100,100, + 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, + 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111, +108, 41, 13, 10,123, 13, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,102, 97, 99,103, 42,116,101,120, 99,111,108, + 32, 43, 32,111,117,116, 99,111,108, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,100, +105,118, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, + 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, + 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 13, 10, 13, 10, 9,102, 97, 99,116, 32, 42, + 61, 32,102, 97, 99,103, 59, 13, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,116, 59, 13, 10, 13, 10, 9,105, +102, 40,116,101,120, 99,111,108, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, 32,105,110, 99,111,108, 46,114, 32, 61, 32,102, 97, 99, +109, 42,111,117,116, 99,111,108, 46,114, 32, 43, 32,102, 97, 99,116, 42,111,117,116, 99,111,108, 46,114, 47,116,101,120, 99,111, +108, 46,114, 59, 13, 10, 9,105,102, 40,116,101,120, 99,111,108, 46,103, 32, 33, 61, 32, 48, 46, 48, 41, 32,105,110, 99,111,108, + 46,103, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46,103, 32, 43, 32,102, 97, 99,116, 42,111,117,116, 99,111,108, + 46,103, 47,116,101,120, 99,111,108, 46,103, 59, 13, 10, 9,105,102, 40,116,101,120, 99,111,108, 46, 98, 32, 33, 61, 32, 48, 46, + 48, 41, 32,105,110, 99,111,108, 46, 98, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46, 98, 32, 43, 32,102, 97, 99, +116, 42,111,117,116, 99,111,108, 46, 98, 47,116,101,120, 99,111,108, 46, 98, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32, 109,116,101,120, 95,114,103, 98, 95,100,105,102,102, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32, 116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32, -111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 10, - 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,116, 59, - 10, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 32, 43, 32,102, 97, 99,116, 42, 97, 98, -115, 40,116,101,120, 99,111,108, 32, 45, 32,111,117,116, 99,111,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, - 95,114,103, 98, 95,100, 97,114,107, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99, -111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32, -118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 44, 32, 99,111,108, 59, 10, - 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,116, - 59, 10, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,114, 59, 10, 9,105,102, 40, 99,111,108, - 32, 60, 32,111,117,116, 99,111,108, 46,114, 41, 32,105,110, 99,111,108, 46,114, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, - 32,105,110, 99,111,108, 46,114, 32, 61, 32,111,117,116, 99,111,108, 46,114, 59, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, - 42,116,101,120, 99,111,108, 46,103, 59, 10, 9,105,102, 40, 99,111,108, 32, 60, 32,111,117,116, 99,111,108, 46,103, 41, 32,105, -110, 99,111,108, 46,103, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46,103, 32, 61, 32,111,117,116, - 99,111,108, 46,103, 59, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46, 98, 59, 10, 9,105,102, - 40, 99,111,108, 32, 60, 32,111,117,116, 99,111,108, 46, 98, 41, 32,105,110, 99,111,108, 46, 98, 32, 61, 32, 99,111,108, 59, 32, -101,108,115,101, 32,105,110, 99,111,108, 46, 98, 32, 61, 32,111,117,116, 99,111,108, 46, 98, 59, 10,125, 10, 10,118,111,105,100, - 32,109,116,101,120, 95,114,103, 98, 95,108,105,103,104,116, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, - 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, - 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 44, - 32, 99,111,108, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, - 48, 45,102, 97, 99,116, 59, 10, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,114, 59, 10, 9, -105,102, 40, 99,111,108, 32, 62, 32,111,117,116, 99,111,108, 46,114, 41, 32,105,110, 99,111,108, 46,114, 32, 61, 32, 99,111,108, - 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46,114, 32, 61, 32,111,117,116, 99,111,108, 46,114, 59, 10, 9, 99,111,108, 32, - 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,103, 59, 10, 9,105,102, 40, 99,111,108, 32, 62, 32,111,117,116, 99,111, -108, 46,103, 41, 32,105,110, 99,111,108, 46,103, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46,103, - 32, 61, 32,111,117,116, 99,111,108, 46,103, 59, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46, - 98, 59, 10, 9,105,102, 40, 99,111,108, 32, 62, 32,111,117,116, 99,111,108, 46, 98, 41, 32,105,110, 99,111,108, 46, 98, 32, 61, - 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46, 98, 32, 61, 32,111,117,116, 99,111,108, 46, 98, 59, 10,125, - 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,104,117,101, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, +111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, + 13, 10, 13, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 13, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45, +102, 97, 99,116, 59, 13, 10, 13, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 32, 43, 32, +102, 97, 99,116, 42, 97, 98,115, 40,116,101,120, 99,111,108, 32, 45, 32,111,117,116, 99,111,108, 41, 59, 13, 10,125, 13, 10, 13, + 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,100, 97,114,107, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32, -102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,118,101, 99, 52, 32, 99,111, -108, 59, 10, 10, 9,109,105,120, 95,104,117,101, 40,102, 97, 99,116, 42,102, 97, 99,103, 44, 32,118,101, 99, 52, 40,111,117,116, - 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32,118,101, 99, 52, 40,116,101,120, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99,111, -108, 41, 59, 10, 9,105,110, 99,111,108, 46,114,103, 98, 32, 61, 32, 99,111,108, 46,114,103, 98, 59, 10,125, 10, 10,118,111,105, -100, 32,109,116,101,120, 95,114,103, 98, 95,115, 97,116, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, - 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, - 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,118,101, 99, 52, 32, 99,111,108, 59, 10, 10, 9, -109,105,120, 95,115, 97,116, 40,102, 97, 99,116, 42,102, 97, 99,103, 44, 32,118,101, 99, 52, 40,111,117,116, 99,111,108, 44, 32, - 49, 46, 48, 41, 44, 32,118,101, 99, 52, 40,116,101,120, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99,111,108, 41, 59, 10, 9, -105,110, 99,111,108, 46,114,103, 98, 32, 61, 32, 99,111,108, 46,114,103, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101, -120, 95,114,103, 98, 95,118, 97,108, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99, -111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32, -118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,118,101, 99, 52, 32, 99,111,108, 59, 10, 10, 9,109,105,120, 95,118, - 97,108, 40,102, 97, 99,116, 42,102, 97, 99,103, 44, 32,118,101, 99, 52, 40,111,117,116, 99,111,108, 44, 32, 49, 46, 48, 41, 44, - 32,118,101, 99, 52, 40,116,101,120, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99,111,108, 41, 59, 10, 9,105,110, 99,111,108, - 46,114,103, 98, 32, 61, 32, 99,111,108, 46,114,103, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, +102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, + 32,102, 97, 99,109, 44, 32, 99,111,108, 59, 13, 10, 13, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 13, 10, 9, +102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,116, 59, 13, 10, 13, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42, +116,101,120, 99,111,108, 46,114, 59, 13, 10, 9,105,102, 40, 99,111,108, 32, 60, 32,111,117,116, 99,111,108, 46,114, 41, 32,105, +110, 99,111,108, 46,114, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46,114, 32, 61, 32,111,117,116, + 99,111,108, 46,114, 59, 13, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,103, 59, 13, 10, 9, +105,102, 40, 99,111,108, 32, 60, 32,111,117,116, 99,111,108, 46,103, 41, 32,105,110, 99,111,108, 46,103, 32, 61, 32, 99,111,108, + 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46,103, 32, 61, 32,111,117,116, 99,111,108, 46,103, 59, 13, 10, 9, 99,111,108, + 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46, 98, 59, 13, 10, 9,105,102, 40, 99,111,108, 32, 60, 32,111,117,116, + 99,111,108, 46, 98, 41, 32,105,110, 99,111,108, 46, 98, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, + 46, 98, 32, 61, 32,111,117,116, 99,111,108, 46, 98, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114, +103, 98, 95,108,105,103,104,116, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111, +108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118, +101, 99, 51, 32,105,110, 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 44, 32, 99,111,108, 59, + 13, 10, 13, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 13, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45, +102, 97, 99,116, 59, 13, 10, 13, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,114, 59, 13, 10, + 9,105,102, 40, 99,111,108, 32, 62, 32,111,117,116, 99,111,108, 46,114, 41, 32,105,110, 99,111,108, 46,114, 32, 61, 32, 99,111, +108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46,114, 32, 61, 32,111,117,116, 99,111,108, 46,114, 59, 13, 10, 9, 99,111, +108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,103, 59, 13, 10, 9,105,102, 40, 99,111,108, 32, 62, 32,111,117, +116, 99,111,108, 46,103, 41, 32,105,110, 99,111,108, 46,103, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111, +108, 46,103, 32, 61, 32,111,117,116, 99,111,108, 46,103, 59, 13, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, + 99,111,108, 46, 98, 59, 13, 10, 9,105,102, 40, 99,111,108, 32, 62, 32,111,117,116, 99,111,108, 46, 98, 41, 32,105,110, 99,111, +108, 46, 98, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46, 98, 32, 61, 32,111,117,116, 99,111,108, + 46, 98, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,104,117,101, 40,118,101, 99, 51, + 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, + 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 13, 10,123, + 13, 10, 9,118,101, 99, 52, 32, 99,111,108, 59, 13, 10, 13, 10, 9,109,105,120, 95,104,117,101, 40,102, 97, 99,116, 42,102, 97, + 99,103, 44, 32,118,101, 99, 52, 40,111,117,116, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32,118,101, 99, 52, 40,116,101,120, 99, +111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99,111,108, 41, 59, 13, 10, 9,105,110, 99,111,108, 46,114,103, 98, 32, 61, 32, 99,111, +108, 46,114,103, 98, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,115, 97,116, 40,118, +101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, + 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, + 13, 10,123, 13, 10, 9,118,101, 99, 52, 32, 99,111,108, 59, 13, 10, 13, 10, 9,109,105,120, 95,115, 97,116, 40,102, 97, 99,116, + 42,102, 97, 99,103, 44, 32,118,101, 99, 52, 40,111,117,116, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32,118,101, 99, 52, 40,116, +101,120, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99,111,108, 41, 59, 13, 10, 9,105,110, 99,111,108, 46,114,103, 98, 32, 61, + 32, 99,111,108, 46,114,103, 98, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,118, 97, +108, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97, +116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99, +111,108, 41, 13, 10,123, 13, 10, 9,118,101, 99, 52, 32, 99,111,108, 59, 13, 10, 13, 10, 9,109,105,120, 95,118, 97,108, 40,102, + 97, 99,116, 42,102, 97, 99,103, 44, 32,118,101, 99, 52, 40,111,117,116, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32,118,101, 99, + 52, 40,116,101,120, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99,111,108, 41, 59, 13, 10, 9,105,110, 99,111,108, 46,114,103, + 98, 32, 61, 32, 99,111,108, 46,114,103, 98, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95, 99,111,108,111,114, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, - 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,118,101, 99, 52, 32, 99,111,108, 59, 10, 10, 9,109,105,120, 95, 99,111,108,111, -114, 40,102, 97, 99,116, 42,102, 97, 99,103, 44, 32,118,101, 99, 52, 40,111,117,116, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32, -118,101, 99, 52, 40,116,101,120, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99,111,108, 41, 59, 10, 9,105,110, 99,111,108, 46, -114,103, 98, 32, 61, 32, 99,111,108, 46,114,103, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117, -101, 95,118, 97,114,115, 40,105,110,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, - 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99,109, 41, 10,123, 10, 9,102, 97, 99,116, 32, 42, 61, 32, - 97, 98,115, 40,102, 97, 99,103, 41, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,116, 59, 10, 10, 9,105, -102, 40,102, 97, 99,103, 32, 60, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,102,108,111, 97,116, 32,116,109,112, 32, 61, 32,102, 97, - 99,116, 59, 10, 9, 9,102, 97, 99,116, 32, 61, 32,102, 97, 99,109, 59, 10, 9, 9,102, 97, 99,109, 32, 61, 32,116,109,112, 59, - 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95, 98,108,101,110,100, 40,102,108,111, + 51, 32,105,110, 99,111,108, 41, 13, 10,123, 13, 10, 9,118,101, 99, 52, 32, 99,111,108, 59, 13, 10, 13, 10, 9,109,105,120, 95, + 99,111,108,111,114, 40,102, 97, 99,116, 42,102, 97, 99,103, 44, 32,118,101, 99, 52, 40,111,117,116, 99,111,108, 44, 32, 49, 46, + 48, 41, 44, 32,118,101, 99, 52, 40,116,101,120, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99,111,108, 41, 59, 13, 10, 9,105, +110, 99,111,108, 46,114,103, 98, 32, 61, 32, 99,111,108, 46,114,103, 98, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109, +116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,105,110,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, + 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99,109, 41, 13, 10,123, 13, + 10, 9,102, 97, 99,116, 32, 42, 61, 32, 97, 98,115, 40,102, 97, 99,103, 41, 59, 13, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, + 48, 45,102, 97, 99,116, 59, 13, 10, 13, 10, 9,105,102, 40,102, 97, 99,103, 32, 60, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9, +102,108,111, 97,116, 32,116,109,112, 32, 61, 32,102, 97, 99,116, 59, 13, 10, 9, 9,102, 97, 99,116, 32, 61, 32,102, 97, 99,109, + 59, 13, 10, 9, 9,102, 97, 99,109, 32, 61, 32,116,109,112, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32, +109,116,101,120, 95,118, 97,108,117,101, 95, 98,108,101,110,100, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102, +108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, + 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, + 32,102, 97, 99,109, 59, 13, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, + 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 13, 10, 13, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, + 99,111,108, 32, 43, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116, +101,120, 95,118, 97,108,117,101, 95,109,117,108, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, + 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, + 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99, +109, 59, 13, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, + 32,102, 97, 99,109, 41, 59, 13, 10, 13, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99,103, 59, 13, 10, + 9,105,110, 99,111,108, 32, 61, 32, 40,102, 97, 99,109, 32, 43, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 41, 42,111,117, +116, 99,111,108, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,115, 99,114,101, +101,110, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102, +108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, + 32,105,110, 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 13, 10, 9,109,116,101,120, 95, +118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 13, 10, 13, + 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99,103, 59, 13, 10, 9,105,110, 99,111,108, 32, 61, 32, 49, + 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32,102, 97, 99,116, 42, 40, 49, 46, 48, 32, 45, 32,116,101,120, 99,111,108, 41, + 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101, +120, 95,118, 97,108,117,101, 95,115,117, 98, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32, +116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32, +111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, + 59, 13, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32, +102, 97, 99,109, 41, 59, 13, 10, 13, 10, 9,102, 97, 99,116, 32, 61, 32, 45,102, 97, 99,116, 59, 13, 10, 9,105,110, 99,111,108, + 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 32, 43, 32,111,117,116, 99,111,108, 59, 13, 10,125, 13, 10, 13, 10,118, +111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95, 97,100,100, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, + 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, + 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, + 97,116, 32,102, 97, 99,109, 59, 13, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, + 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 13, 10, 13, 10, 9,102, 97, 99,116, 32, 61, 32,102, 97, 99,116, 59, 13, 10, + 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 32, 43, 32,111,117,116, 99,111,108, 59, 13, 10, +125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,100,105,118, 40,102,108,111, 97,116, 32,111, +117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, + 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 13, 10,123, + 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 13, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, + 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 13, 10, 13, 10, 9,105,102, 40,116,101,120, 99,111, +108, 32, 33, 61, 32, 48, 46, 48, 41, 13, 10, 9, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, + 32, 43, 32,102, 97, 99,116, 42,111,117,116, 99,111,108, 47,116,101,120, 99,111,108, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, + 9,105,110, 99,111,108, 32, 61, 32, 48, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97, +108,117,101, 95,100,105,102,102, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, + 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, + 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 13, 10, + 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99, +109, 41, 59, 13, 10, 13, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 32, 43, 32,102, 97, + 99,116, 42, 97, 98,115, 40,116,101,120, 99,111,108, 32, 45, 32,111,117,116, 99,111,108, 41, 59, 13, 10,125, 13, 10, 13, 10,118, +111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,100, 97,114,107, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, + 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97, +116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 13, 10,123, 13, 10, 9,102,108, +111, 97,116, 32,102, 97, 99,109, 59, 13, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, + 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 13, 10, 13, 10, 9,102,108,111, 97,116, 32, 99,111,108, 32, 61, 32,102, + 97, 99,116, 42,116,101,120, 99,111,108, 59, 13, 10, 9,105,102, 40, 99,111,108, 32, 60, 32,111,117,116, 99,111,108, 41, 32,105, +110, 99,111,108, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 32, 61, 32,111,117,116, 99,111,108, 59, + 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,108,105,103,104,116, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, - 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114, -115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32,102, - 97, 99,116, 42,116,101,120, 99,111,108, 32, 43, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105, -100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,109,117,108, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102, -108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, - 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, - 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, - 44, 32,102, 97, 99,109, 41, 59, 10, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99,103, 59, 10, 9,105, -110, 99,111,108, 32, 61, 32, 40,102, 97, 99,109, 32, 43, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 41, 42,111,117,116, 99, -111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,115, 99,114,101,101,110, 40,102,108, -111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32, -102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111, -108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97, -114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 10, 10, 9,102, 97, 99,109, 32, 61, 32, 49, - 46, 48, 32, 45, 32,102, 97, 99,103, 59, 10, 9,105,110, 99,111,108, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, - 43, 32,102, 97, 99,116, 42, 40, 49, 46, 48, 32, 45, 32,116,101,120, 99,111,108, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117, -116, 99,111,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,115,117, 98, 40,102,108, -111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32, -102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111, -108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97, -114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 10, 10, 9,102, 97, 99,116, 32, 61, 32, 45, -102, 97, 99,116, 59, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 32, 43, 32,111,117,116, - 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95, 97,100,100, 40,102,108,111, 97, -116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, - 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, - 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, - 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 10, 10, 9,102, 97, 99,116, 32, 61, 32,102, 97, 99, -116, 59, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 32, 43, 32,111,117,116, 99,111,108, - 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,100,105,118, 40,102,108,111, 97,116, 32,111, -117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, - 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, - 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, - 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 10, 10, 9,105,102, 40,116,101,120, 99,111,108, 32, 33, 61, 32, - 48, 46, 48, 41, 10, 9, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 32, 43, 32,102, 97, 99, -116, 42,111,117,116, 99,111,108, 47,116,101,120, 99,111,108, 59, 10, 9,101,108,115,101, 10, 9, 9,105,110, 99,111,108, 32, 61, - 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,100,105,102,102, 40,102,108, -111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32, -102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111, -108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97, -114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32, -102, 97, 99,109, 42,111,117,116, 99,111,108, 32, 43, 32,102, 97, 99,116, 42, 97, 98,115, 40,116,101,120, 99,111,108, 32, 45, 32, -111,117,116, 99,111,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,100, 97,114,107, - 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, - 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105, -110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, - 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 10, 10, 9,102,108,111, 97,116, - 32, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 59, 10, 9,105,102, 40, 99,111,108, 32, 60, 32,111,117, -116, 99,111,108, 41, 32,105,110, 99,111,108, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 32, 61, 32, -111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,108,105,103,104,116, - 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, - 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105, -110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, - 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 10, 10, 9,102,108,111, 97,116, - 32, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 59, 10, 9,105,102, 40, 99,111,108, 32, 62, 32,111,117, -116, 99,111,108, 41, 32,105,110, 99,111,108, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 32, 61, 32, -111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95, 99,108, 97,109,112, - 95,112,111,115,105,116,105,118,101, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111, -117,116,102, 97, 99, 41, 10,123, 10, 9,111,117,116,102, 97, 99, 32, 61, 32,109, 97,120, 40,102, 97, 99, 44, 32, 48, 46, 48, 41, - 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95, 99,108, 97,109,112, 40,102,108,111, 97,116, - 32,102, 97, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,102, 97, 99, 41, 10,123, 10, 9,111,117,116,102, 97, - 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10,125, 10, 10,118,111,105, -100, 32,109,116,101,120, 95,104, 97,114, 95,100,105,118,105,100,101, 40,102,108,111, 97,116, 32,104, 97,114, 44, 32,111,117,116, - 32,102,108,111, 97,116, 32,111,117,116,104, 97,114, 41, 10,123, 10, 9,111,117,116,104, 97,114, 32, 61, 32,104, 97,114, 47, 49, - 50, 56, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,104, 97,114, 95,109,117,108,116,105,112,108,121, 95, - 99,108, 97,109,112, 40,102,108,111, 97,116, 32,104, 97,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,104, 97, -114, 41, 10,123, 10, 9,104, 97,114, 32, 42, 61, 32, 49, 50, 56, 46, 48, 59, 10, 10, 9,105,102, 40,104, 97,114, 32, 60, 32, 49, - 46, 48, 41, 32,111,117,116,104, 97,114, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40,104, 97,114, 32, 62, - 32, 53, 49, 49, 46, 48, 41, 32,111,117,116,104, 97,114, 32, 61, 32, 53, 49, 49, 46, 48, 59, 10, 9,101,108,115,101, 32,111,117, -116,104, 97,114, 32, 61, 32,104, 97,114, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95, 97,108,112,104, 97, 95,102, -114,111,109, 95, 99,111,108, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32, 97,108,112,104, - 97, 41, 10,123, 10, 9, 97,108,112,104, 97, 32, 61, 32, 99,111,108, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101, -120, 95, 97,108,112,104, 97, 95,116,111, 95, 99,111,108, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,102,108,111, 97,116, 32, 97, -108,112,104, 97, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, - 32, 61, 32,118,101, 99, 52, 40, 99,111,108, 46,114,103, 98, 44, 32, 97,108,112,104, 97, 41, 59, 10,125, 10, 10,118,111,105,100, - 32,109,116,101,120, 95,114,103, 98,116,111,105,110,116, 40,118,101, 99, 52, 32,114,103, 98, 44, 32,111,117,116, 32,102,108,111, - 97,116, 32,105,110,116,101,110,115,105,116,121, 41, 10,123, 10, 9,105,110,116,101,110,115,105,116,121, 32, 61, 32,100,111,116, - 40,118,101, 99, 51, 40, 48, 46, 51, 53, 44, 32, 48, 46, 52, 53, 44, 32, 48, 46, 50, 41, 44, 32,114,103, 98, 46,114,103, 98, 41, - 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,105,110,118,101,114,116, 40,102,108,111, 97, -116, 32,105,110,118, 97,108,117,101, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108,117,101, 41, 10,123, - 10, 9,111,117,116,118, 97,108,117,101, 32, 61, 32, 49, 46, 48, 32, 45, 32,105,110,118, 97,108,117,101, 59, 10,125, 10, 10,118, -111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,105,110,118,101,114,116, 40,118,101, 99, 52, 32,105,110,114,103, 98, 44, 32, -111,117,116, 32,118,101, 99, 52, 32,111,117,116,114,103, 98, 41, 10,123, 10, 9,111,117,116,114,103, 98, 32, 61, 32,118,101, 99, - 52, 40,118,101, 99, 51, 40, 49, 46, 48, 41, 32, 45, 32,105,110,114,103, 98, 46,114,103, 98, 44, 32,105,110,114,103, 98, 46, 97, - 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,115,116,101,110, 99,105,108, 40,102,108, -111, 97,116, 32,115,116,101,110, 99,105,108, 44, 32,102,108,111, 97,116, 32,105,110,116,101,110,115,105,116,121, 44, 32,111,117, -116, 32,102,108,111, 97,116, 32,111,117,116,115,116,101,110, 99,105,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117, -116,105,110,116,101,110,115,105,116,121, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,116, 32, 61, 32,105,110,116,101, -110,115,105,116,121, 59, 10, 9,111,117,116,105,110,116,101,110,115,105,116,121, 32, 61, 32,105,110,116,101,110,115,105,116,121, - 42,115,116,101,110, 99,105,108, 59, 10, 9,111,117,116,115,116,101,110, 99,105,108, 32, 61, 32,115,116,101,110, 99,105,108, 42, -102, 97, 99,116, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,115,116,101,110, 99,105,108, 40,102, -108,111, 97,116, 32,115,116,101,110, 99,105,108, 44, 32,118,101, 99, 52, 32,114,103, 98, 44, 32,111,117,116, 32,102,108,111, 97, -116, 32,111,117,116,115,116,101,110, 99,105,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116,114,103, 98, 41, 10,123, - 10, 9,102,108,111, 97,116, 32,102, 97, 99,116, 32, 61, 32,114,103, 98, 46, 97, 59, 10, 9,111,117,116,114,103, 98, 32, 61, 32, -118,101, 99, 52, 40,114,103, 98, 46,114,103, 98, 44, 32,114,103, 98, 46, 97, 42,115,116,101,110, 99,105,108, 41, 59, 10, 9,111, -117,116,115,116,101,110, 99,105,108, 32, 61, 32,115,116,101,110, 99,105,108, 42,102, 97, 99,116, 59, 10,125, 10, 10,118,111,105, -100, 32,109,116,101,120, 95,109, 97,112,112,105,110,103, 95,111,102,115, 40,118,101, 99, 51, 32,116,101,120, 99,111, 44, 32,118, -101, 99, 51, 32,111,102,115, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,116,101,120, 99,111, 41, 10,123, 10, 9,111, -117,116,116,101,120, 99,111, 32, 61, 32,116,101,120, 99,111, 32, 43, 32,111,102,115, 59, 10,125, 10, 10,118,111,105,100, 32,109, -116,101,120, 95,109, 97,112,112,105,110,103, 95,115,105,122,101, 40,118,101, 99, 51, 32,116,101,120, 99,111, 44, 32,118,101, 99, - 51, 32,115,105,122,101, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,116,101,120, 99,111, 41, 10,123, 10, 9,111,117, -116,116,101,120, 99,111, 32, 61, 32,115,105,122,101, 42,116,101,120, 99,111, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101, -120, 95, 50,100, 95,109, 97,112,112,105,110,103, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,111,117,116, 32,118,101, 99, 51, 32, -111,117,116,118,101, 99, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118,101, 99, 51, 40,118,101, 99, 46,120,121, 42, - 48, 46, 53, 32, 43, 32,118,101, 99, 50, 40, 48, 46, 53, 44, 32, 48, 46, 53, 41, 44, 32,118,101, 99, 46,122, 41, 59, 10,125, 10, - 10,118,111,105,100, 32,109,116,101,120, 95,105,109, 97,103,101, 40,118,101, 99, 51, 32,116,101,120, 99,111, 44, 32,115, 97,109, -112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118, 97,108,117,101, 44, 32,111,117,116, - 32,118,101, 99, 52, 32, 99,111,108,111,114, 41, 10,123, 10, 9, 99,111,108,111,114, 32, 61, 32,116,101,120,116,117,114,101, 50, - 68, 40,105,109, 97, 44, 32,116,101,120, 99,111, 46,120,121, 41, 59, 10, 9,118, 97,108,117,101, 32, 61, 32, 49, 46, 48, 59, 10, -125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,110,111,114,109, 97,108, 40,118,101, 99, 51, 32,116,101,120, 99,111, 44, 32, -115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,111,117,116, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 41, 10, -123, 10, 9, 47, 47, 32, 84,104,101, 32,105,110,118,101,114,116, 32,111,102, 32,116,104,101, 32,114,101,100, 32, 99,104, 97,110, -110,101,108, 32,105,115, 32,116,111, 32,109, 97,107,101, 10, 9, 47, 47, 32,116,104,101, 32,110,111,114,109, 97,108, 32,109, 97, -112, 32, 99,111,109,112,108,105, 97,110,116, 32,119,105,116,104, 32,116,104,101, 32,111,117,116,115,105,100,101, 32,119,111,114, -108,100, 46, 10, 9, 47, 47, 32, 73,116, 32,110,101,101,100,115, 32,116,111, 32, 98,101, 32,100,111,110,101, 32, 98,101, 99, 97, -117,115,101, 32,105,110, 32, 66,108,101,110,100,101,114, 10, 9, 47, 47, 32,116,104,101, 32,110,111,114,109, 97,108, 32,117,115, -101,100, 32,112,111,105,110,116,115, 32,105,110,119, 97,114,100, 46, 10, 9, 47, 47, 32, 83,104,111,117,108,100, 32,116,104,105, -115, 32,101,118,101,114, 32, 99,104, 97,110,103,101, 32,116,104,105,115, 32,110,101,103, 97,116,101, 32,109,117,115,116, 32, 98, -101, 32,114,101,109,111,118,101,100, 46, 10, 32, 32, 32, 32,118,101, 99, 52, 32, 99,111,108,111,114, 32, 61, 32,116,101,120,116, -117,114,101, 50, 68, 40,105,109, 97, 44, 32,116,101,120, 99,111, 46,120,121, 41, 59, 10, 9,110,111,114,109, 97,108, 32, 61, 32, - 50, 46, 48, 42, 40,118,101, 99, 51, 40, 45, 99,111,108,111,114, 46,114, 44, 32, 99,111,108,111,114, 46,103, 44, 32, 99,111,108, -111,114, 46, 98, 41, 32, 45, 32,118,101, 99, 51, 40, 45, 48, 46, 53, 44, 32, 48, 46, 53, 44, 32, 48, 46, 53, 41, 41, 59, 10,125, - 10, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95,110,111,114,109, 97,108,115, 95,105,110,105,116, 40, 32,118, -101, 99, 51, 32,118, 78, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118, 78,111,114,103, 44, 32,111,117,116, 32,118,101, 99, 51, - 32,118, 78, 97, 99, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, - 32, 41, 10,123, 10, 9,118, 78,111,114,103, 32, 61, 32,118, 78, 59, 10, 9,118, 78, 97, 99, 99, 32, 61, 32,118, 78, 59, 10, 9, -102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10, 47, 42, 42, 32,104,101,108, -112,101,114, 32,109,101,116,104,111,100, 32,116,111, 32,101,120,116,114, 97, 99,116, 32,116,104,101, 32,117,112,112,101,114, 32, -108,101,102,116, 32, 51,120, 51, 32,109, 97,116,114,105,120, 32,102,114,111,109, 32, 97, 32, 52,120, 52, 32,109, 97,116,114,105, -120, 32, 42, 47, 10,109, 97,116, 51, 32,116,111, 95,109, 97,116, 51, 40,109, 97,116, 52, 32,109, 52, 41, 10,123, 10, 9,109, 97, -116, 51, 32,109, 51, 59, 10, 9,109, 51, 91, 48, 93, 32, 61, 32,109, 52, 91, 48, 93, 46,120,121,122, 59, 10, 9,109, 51, 91, 49, - 93, 32, 61, 32,109, 52, 91, 49, 93, 46,120,121,122, 59, 10, 9,109, 51, 91, 50, 93, 32, 61, 32,109, 52, 91, 50, 93, 46,120,121, -122, 59, 10, 9,114,101,116,117,114,110, 32,109, 51, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, - 95,105,110,105,116, 95,111, 98,106,115,112, 97, 99,101, 40, 32,118,101, 99, 51, 32,115,117,114,102, 95,112,111,115, 44, 32,118, -101, 99, 51, 32,115,117,114,102, 95,110,111,114,109, 44, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32,109, 97,116, 52, 32,109, 86,105, -101,119, 44, 32,109, 97,116, 52, 32,109, 86,105,101,119, 73,110,118, 44, 32,109, 97,116, 52, 32,109, 79, 98,106, 44, 32,109, 97, -116, 52, 32,109, 79, 98,106, 73,110,118, 44, 32, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32,102,108,111, 97,116, 32,102, 80,114,101, -118, 77, 97,103,110,105,116,117,100,101, 95,105,110, 44, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,105,110, 44, 10, 9, 9, - 9, 9, 9, 9, 9, 32, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, 95, -111,117,116, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,111,117,116, 44, 32, 10, 9, 9, 9, 9, 9, 9, - 9, 32, 32,111,117,116, 32,118,101, 99, 51, 32,118, 82, 49, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118, 82, 50, 44, 32,111, -117,116, 32,102,108,111, 97,116, 32,102, 68,101,116, 32, 41, 32, 10,123, 10, 9,109, 97,116, 51, 32,111, 98,106, 50,118,105,101, -119, 32, 61, 32,116,111, 95,109, 97,116, 51, 40,109, 86,105,101,119, 32, 42, 32,109, 79, 98,106, 41, 59, 10, 9,109, 97,116, 51, - 32,118,105,101,119, 50,111, 98,106, 32, 61, 32,116,111, 95,109, 97,116, 51, 40,109, 79, 98,106, 73,110,118, 32, 42, 32,109, 86, -105,101,119, 73,110,118, 41, 59, 10, 9, 10, 9,118,101, 99, 51, 32,118, 83,105,103,109, 97, 83, 32, 61, 32,118,105,101,119, 50, -111, 98,106, 32, 42, 32,100, 70,100,120, 40, 32,115,117,114,102, 95,112,111,115, 32, 41, 59, 10, 9,118,101, 99, 51, 32,118, 83, -105,103,109, 97, 84, 32, 61, 32,118,105,101,119, 50,111, 98,106, 32, 42, 32,100, 70,100,121, 40, 32,115,117,114,102, 95,112,111, -115, 32, 41, 59, 10, 9,118,101, 99, 51, 32,118, 78, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 32,115,117,114,102, 95, -110,111,114,109, 32, 42, 32,111, 98,106, 50,118,105,101,119, 32, 41, 59, 10, 10, 9,118, 82, 49, 32, 61, 32, 99,114,111,115,115, - 40, 32,118, 83,105,103,109, 97, 84, 44, 32,118, 78, 32, 41, 59, 10, 9,118, 82, 50, 32, 61, 32, 99,114,111,115,115, 40, 32,118, - 78, 44, 32,118, 83,105,103,109, 97, 83, 32, 41, 32, 59, 10, 9,102, 68,101,116, 32, 61, 32,100,111,116, 32, 40, 32,118, 83,105, -103,109, 97, 83, 44, 32,118, 82, 49, 32, 41, 59, 10, 9, 10, 9, 47, 42, 32,112,114,101,116,114, 97,110,115,102,111,114,109, 32, -118, 78, 97, 99, 99, 32, 40,105,110, 32,109,116,101,120, 95, 98,117,109,112, 95, 97,112,112,108,121, 41, 32,117,115,105,110,103, - 32,116,104,101, 32,105,110,118,101,114,115,101, 32,116,114, 97,110,115,112,111,115,101,100, 32, 42, 47, 10, 9,118, 82, 49, 32, - 61, 32,118, 82, 49, 32, 42, 32,118,105,101,119, 50,111, 98,106, 59, 10, 9,118, 82, 50, 32, 61, 32,118, 82, 50, 32, 42, 32,118, -105,101,119, 50,111, 98,106, 59, 10, 9,118, 78, 32, 61, 32,118, 78, 32, 42, 32,118,105,101,119, 50,111, 98,106, 59, 10, 9, 10, - 9,102,108,111, 97,116, 32,102, 77, 97,103,110,105,116,117,100,101, 32, 61, 32, 97, 98,115, 40,102, 68,101,116, 41, 32, 42, 32, -108,101,110,103,116,104, 40,118, 78, 41, 59, 10, 9,118, 78, 97, 99, 99, 95,111,117,116, 32, 61, 32,118, 78, 97, 99, 99, 95,105, -110, 32, 42, 32, 40,102, 77, 97,103,110,105,116,117,100,101, 32, 47, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, - 95,105,110, 41, 59, 10, 9,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, 95,111,117,116, 32, 61, 32,102, 77, 97,103, -110,105,116,117,100,101, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95,105,110,105,116, 95,116, -101,120,116,117,114,101,115,112, 97, 99,101, 40, 32,118,101, 99, 51, 32,115,117,114,102, 95,112,111,115, 44, 32,118,101, 99, 51, - 32,115,117,114,102, 95,110,111,114,109, 44, 32, 10, 9, 9, 9, 9, 9, 9, 9, 9, 32, 32,102,108,111, 97,116, 32,102, 80,114, -101,118, 77, 97,103,110,105,116,117,100,101, 95,105,110, 44, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,105,110, 44, 10, 9, - 9, 9, 9, 9, 9, 9, 9, 32, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117,100, -101, 95,111,117,116, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,111,117,116, 44, 32, 10, 9, 9, 9, 9, + 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 13, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95, +118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 13, 10, 13, 10, 9,102,108,111, 97, +116, 32, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 59, 13, 10, 9,105,102, 40, 99,111,108, 32, 62, 32, +111,117,116, 99,111,108, 41, 32,105,110, 99,111,108, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 32, + 61, 32,111,117,116, 99,111,108, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95, + 99,108, 97,109,112, 95,112,111,115,105,116,105,118,101, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,111,117,116, 32,102,108, +111, 97,116, 32,111,117,116,102, 97, 99, 41, 13, 10,123, 13, 10, 9,111,117,116,102, 97, 99, 32, 61, 32,109, 97,120, 40,102, 97, + 99, 44, 32, 48, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95, 99, +108, 97,109,112, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,102, 97, 99, + 41, 13, 10,123, 13, 10, 9,111,117,116,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, + 49, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,104, 97,114, 95,100,105,118,105,100,101, + 40,102,108,111, 97,116, 32,104, 97,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,104, 97,114, 41, 13, 10,123, + 13, 10, 9,111,117,116,104, 97,114, 32, 61, 32,104, 97,114, 47, 49, 50, 56, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105, +100, 32,109,116,101,120, 95,104, 97,114, 95,109,117,108,116,105,112,108,121, 95, 99,108, 97,109,112, 40,102,108,111, 97,116, 32, +104, 97,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,104, 97,114, 41, 13, 10,123, 13, 10, 9,104, 97,114, 32, + 42, 61, 32, 49, 50, 56, 46, 48, 59, 13, 10, 13, 10, 9,105,102, 40,104, 97,114, 32, 60, 32, 49, 46, 48, 41, 32,111,117,116,104, + 97,114, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9,101,108,115,101, 32,105,102, 40,104, 97,114, 32, 62, 32, 53, 49, 49, 46, 48, 41, + 32,111,117,116,104, 97,114, 32, 61, 32, 53, 49, 49, 46, 48, 59, 13, 10, 9,101,108,115,101, 32,111,117,116,104, 97,114, 32, 61, + 32,104, 97,114, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95, 97,108,112,104, 97, 95,102,114,111,109, + 95, 99,111,108, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32, 97,108,112,104, 97, 41, 13, + 10,123, 13, 10, 9, 97,108,112,104, 97, 32, 61, 32, 99,111,108, 46, 97, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109, +116,101,120, 95, 97,108,112,104, 97, 95,116,111, 95, 99,111,108, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,102,108,111, 97,116, + 32, 97,108,112,104, 97, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,111,117, +116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40, 99,111,108, 46,114,103, 98, 44, 32, 97,108,112,104, 97, 41, 59, 13, 10,125, 13, + 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98,116,111,105,110,116, 40,118,101, 99, 52, 32,114,103, 98, 44, 32, +111,117,116, 32,102,108,111, 97,116, 32,105,110,116,101,110,115,105,116,121, 41, 13, 10,123, 13, 10, 9,105,110,116,101,110,115, +105,116,121, 32, 61, 32,100,111,116, 40,118,101, 99, 51, 40, 48, 46, 51, 53, 44, 32, 48, 46, 52, 53, 44, 32, 48, 46, 50, 41, 44, + 32,114,103, 98, 46,114,103, 98, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, + 95,105,110,118,101,114,116, 40,102,108,111, 97,116, 32,105,110,118, 97,108,117,101, 44, 32,111,117,116, 32,102,108,111, 97,116, + 32,111,117,116,118, 97,108,117,101, 41, 13, 10,123, 13, 10, 9,111,117,116,118, 97,108,117,101, 32, 61, 32, 49, 46, 48, 32, 45, + 32,105,110,118, 97,108,117,101, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,105,110, +118,101,114,116, 40,118,101, 99, 52, 32,105,110,114,103, 98, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116,114,103, 98, + 41, 13, 10,123, 13, 10, 9,111,117,116,114,103, 98, 32, 61, 32,118,101, 99, 52, 40,118,101, 99, 51, 40, 49, 46, 48, 41, 32, 45, + 32,105,110,114,103, 98, 46,114,103, 98, 44, 32,105,110,114,103, 98, 46, 97, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, + 32,109,116,101,120, 95,118, 97,108,117,101, 95,115,116,101,110, 99,105,108, 40,102,108,111, 97,116, 32,115,116,101,110, 99,105, +108, 44, 32,102,108,111, 97,116, 32,105,110,116,101,110,115,105,116,121, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117, +116,115,116,101,110, 99,105,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,105,110,116,101,110,115,105,116,121, + 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,116, 32, 61, 32,105,110,116,101,110,115,105,116,121, 59, 13, 10, + 9,111,117,116,105,110,116,101,110,115,105,116,121, 32, 61, 32,105,110,116,101,110,115,105,116,121, 42,115,116,101,110, 99,105, +108, 59, 13, 10, 9,111,117,116,115,116,101,110, 99,105,108, 32, 61, 32,115,116,101,110, 99,105,108, 42,102, 97, 99,116, 59, 13, + 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,115,116,101,110, 99,105,108, 40,102,108,111, 97, +116, 32,115,116,101,110, 99,105,108, 44, 32,118,101, 99, 52, 32,114,103, 98, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111, +117,116,115,116,101,110, 99,105,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116,114,103, 98, 41, 13, 10,123, 13, 10, + 9,102,108,111, 97,116, 32,102, 97, 99,116, 32, 61, 32,114,103, 98, 46, 97, 59, 13, 10, 9,111,117,116,114,103, 98, 32, 61, 32, +118,101, 99, 52, 40,114,103, 98, 46,114,103, 98, 44, 32,114,103, 98, 46, 97, 42,115,116,101,110, 99,105,108, 41, 59, 13, 10, 9, +111,117,116,115,116,101,110, 99,105,108, 32, 61, 32,115,116,101,110, 99,105,108, 42,102, 97, 99,116, 59, 13, 10,125, 13, 10, 13, + 10,118,111,105,100, 32,109,116,101,120, 95,109, 97,112,112,105,110,103, 95,111,102,115, 40,118,101, 99, 51, 32,116,101,120, 99, +111, 44, 32,118,101, 99, 51, 32,111,102,115, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,116,101,120, 99,111, 41, 13, + 10,123, 13, 10, 9,111,117,116,116,101,120, 99,111, 32, 61, 32,116,101,120, 99,111, 32, 43, 32,111,102,115, 59, 13, 10,125, 13, + 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,109, 97,112,112,105,110,103, 95,115,105,122,101, 40,118,101, 99, 51, 32,116, +101,120, 99,111, 44, 32,118,101, 99, 51, 32,115,105,122,101, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,116,101,120, + 99,111, 41, 13, 10,123, 13, 10, 9,111,117,116,116,101,120, 99,111, 32, 61, 32,115,105,122,101, 42,116,101,120, 99,111, 59, 13, + 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95, 50,100, 95,109, 97,112,112,105,110,103, 40,118,101, 99, 51, 32, +118,101, 99, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 41, 13, 10,123, 13, 10, 9,111,117,116,118,101, + 99, 32, 61, 32,118,101, 99, 51, 40,118,101, 99, 46,120,121, 42, 48, 46, 53, 32, 43, 32,118,101, 99, 50, 40, 48, 46, 53, 44, 32, + 48, 46, 53, 41, 44, 32,118,101, 99, 46,122, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,105,109, + 97,103,101, 40,118,101, 99, 51, 32,116,101,120, 99,111, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,111, +117,116, 32,102,108,111, 97,116, 32,118, 97,108,117,101, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 41, 13, + 10,123, 13, 10, 9, 99,111,108,111,114, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32,116,101,120, 99, +111, 46,120,121, 41, 59, 13, 10, 9,118, 97,108,117,101, 32, 61, 32, 49, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, + 32,109,116,101,120, 95,110,111,114,109, 97,108, 40,118,101, 99, 51, 32,116,101,120, 99,111, 44, 32,115, 97,109,112,108,101,114, + 50, 68, 32,105,109, 97, 44, 32,111,117,116, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 41, 13, 10,123, 13, 10, 9, 47, 47, + 32, 84,104,101, 32,105,110,118,101,114,116, 32,111,102, 32,116,104,101, 32,114,101,100, 32, 99,104, 97,110,110,101,108, 32,105, +115, 32,116,111, 32,109, 97,107,101, 13, 10, 9, 47, 47, 32,116,104,101, 32,110,111,114,109, 97,108, 32,109, 97,112, 32, 99,111, +109,112,108,105, 97,110,116, 32,119,105,116,104, 32,116,104,101, 32,111,117,116,115,105,100,101, 32,119,111,114,108,100, 46, 13, + 10, 9, 47, 47, 32, 73,116, 32,110,101,101,100,115, 32,116,111, 32, 98,101, 32,100,111,110,101, 32, 98,101, 99, 97,117,115,101, + 32,105,110, 32, 66,108,101,110,100,101,114, 13, 10, 9, 47, 47, 32,116,104,101, 32,110,111,114,109, 97,108, 32,117,115,101,100, + 32,112,111,105,110,116,115, 32,105,110,119, 97,114,100, 46, 13, 10, 9, 47, 47, 32, 83,104,111,117,108,100, 32,116,104,105,115, + 32,101,118,101,114, 32, 99,104, 97,110,103,101, 32,116,104,105,115, 32,110,101,103, 97,116,101, 32,109,117,115,116, 32, 98,101, + 32,114,101,109,111,118,101,100, 46, 13, 10, 32, 32, 32, 32,118,101, 99, 52, 32, 99,111,108,111,114, 32, 61, 32,116,101,120,116, +117,114,101, 50, 68, 40,105,109, 97, 44, 32,116,101,120, 99,111, 46,120,121, 41, 59, 13, 10, 9,110,111,114,109, 97,108, 32, 61, + 32, 50, 46, 48, 42, 40,118,101, 99, 51, 40, 45, 99,111,108,111,114, 46,114, 44, 32, 99,111,108,111,114, 46,103, 44, 32, 99,111, +108,111,114, 46, 98, 41, 32, 45, 32,118,101, 99, 51, 40, 45, 48, 46, 53, 44, 32, 48, 46, 53, 44, 32, 48, 46, 53, 41, 41, 59, 13, + 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95,110,111,114,109, 97,108,115, 95,105,110,105, +116, 40, 32,118,101, 99, 51, 32,118, 78, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118, 78,111,114,103, 44, 32,111,117,116, 32, +118,101, 99, 51, 32,118, 78, 97, 99, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 80,114,101,118, 77, 97,103,110,105, +116,117,100,101, 32, 41, 13, 10,123, 13, 10, 9,118, 78,111,114,103, 32, 61, 32,118, 78, 59, 13, 10, 9,118, 78, 97, 99, 99, 32, + 61, 32,118, 78, 59, 13, 10, 9,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, 32, 61, 32, 49, 46, 48, 59, 13, 10,125, + 13, 10, 13, 10, 47, 42, 42, 32,104,101,108,112,101,114, 32,109,101,116,104,111,100, 32,116,111, 32,101,120,116,114, 97, 99,116, + 32,116,104,101, 32,117,112,112,101,114, 32,108,101,102,116, 32, 51,120, 51, 32,109, 97,116,114,105,120, 32,102,114,111,109, 32, + 97, 32, 52,120, 52, 32,109, 97,116,114,105,120, 32, 42, 47, 13, 10,109, 97,116, 51, 32,116,111, 95,109, 97,116, 51, 40,109, 97, +116, 52, 32,109, 52, 41, 13, 10,123, 13, 10, 9,109, 97,116, 51, 32,109, 51, 59, 13, 10, 9,109, 51, 91, 48, 93, 32, 61, 32,109, + 52, 91, 48, 93, 46,120,121,122, 59, 13, 10, 9,109, 51, 91, 49, 93, 32, 61, 32,109, 52, 91, 49, 93, 46,120,121,122, 59, 13, 10, + 9,109, 51, 91, 50, 93, 32, 61, 32,109, 52, 91, 50, 93, 46,120,121,122, 59, 13, 10, 9,114,101,116,117,114,110, 32,109, 51, 59, + 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95,105,110,105,116, 95,111, 98,106,115,112, + 97, 99,101, 40, 32,118,101, 99, 51, 32,115,117,114,102, 95,112,111,115, 44, 32,118,101, 99, 51, 32,115,117,114,102, 95,110,111, +114,109, 44, 13, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32,109, 97,116, 52, 32,109, 86,105,101,119, 44, 32,109, 97,116, 52, 32,109, + 86,105,101,119, 73,110,118, 44, 32,109, 97,116, 52, 32,109, 79, 98,106, 44, 32,109, 97,116, 52, 32,109, 79, 98,106, 73,110,118, + 44, 32, 13, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32,102,108,111, 97,116, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117,100, +101, 95,105,110, 44, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,105,110, 44, 13, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32,111, +117,116, 32,102,108,111, 97,116, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, 95,111,117,116, 44, 32,111,117,116, + 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,111,117,116, 44, 32, 13, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32,111,117,116, 32, +118,101, 99, 51, 32,118, 82, 49, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118, 82, 50, 44, 32,111,117,116, 32,102,108,111, 97, +116, 32,102, 68,101,116, 32, 41, 32, 13, 10,123, 13, 10, 9,109, 97,116, 51, 32,111, 98,106, 50,118,105,101,119, 32, 61, 32,116, +111, 95,109, 97,116, 51, 40,103,108, 95, 77,111,100,101,108, 86,105,101,119, 77, 97,116,114,105,120, 41, 59, 13, 10, 9,109, 97, +116, 51, 32,118,105,101,119, 50,111, 98,106, 32, 61, 32,116,111, 95,109, 97,116, 51, 40,103,108, 95, 77,111,100,101,108, 86,105, +101,119, 77, 97,116,114,105,120, 73,110,118,101,114,115,101, 41, 59, 13, 10, 9, 13, 10, 9,118,101, 99, 51, 32,118, 83,105,103, +109, 97, 83, 32, 61, 32,118,105,101,119, 50,111, 98,106, 32, 42, 32,100, 70,100,120, 40, 32,115,117,114,102, 95,112,111,115, 32, + 41, 59, 13, 10, 9,118,101, 99, 51, 32,118, 83,105,103,109, 97, 84, 32, 61, 32,118,105,101,119, 50,111, 98,106, 32, 42, 32,100, + 70,100,121, 40, 32,115,117,114,102, 95,112,111,115, 32, 41, 59, 13, 10, 9,118,101, 99, 51, 32,118, 78, 32, 61, 32,110,111,114, +109, 97,108,105,122,101, 40, 32,115,117,114,102, 95,110,111,114,109, 32, 42, 32,111, 98,106, 50,118,105,101,119, 32, 41, 59, 13, + 10, 13, 10, 9,118, 82, 49, 32, 61, 32, 99,114,111,115,115, 40, 32,118, 83,105,103,109, 97, 84, 44, 32,118, 78, 32, 41, 59, 13, + 10, 9,118, 82, 50, 32, 61, 32, 99,114,111,115,115, 40, 32,118, 78, 44, 32,118, 83,105,103,109, 97, 83, 32, 41, 32, 59, 13, 10, + 9,102, 68,101,116, 32, 61, 32,100,111,116, 32, 40, 32,118, 83,105,103,109, 97, 83, 44, 32,118, 82, 49, 32, 41, 59, 13, 10, 9, + 13, 10, 9, 47, 42, 32,112,114,101,116,114, 97,110,115,102,111,114,109, 32,118, 78, 97, 99, 99, 32, 40,105,110, 32,109,116,101, +120, 95, 98,117,109,112, 95, 97,112,112,108,121, 41, 32,117,115,105,110,103, 32,116,104,101, 32,105,110,118,101,114,115,101, 32, +116,114, 97,110,115,112,111,115,101,100, 32, 42, 47, 13, 10, 9,118, 82, 49, 32, 61, 32,118, 82, 49, 32, 42, 32,118,105,101,119, + 50,111, 98,106, 59, 13, 10, 9,118, 82, 50, 32, 61, 32,118, 82, 50, 32, 42, 32,118,105,101,119, 50,111, 98,106, 59, 13, 10, 9, +118, 78, 32, 61, 32,118, 78, 32, 42, 32,118,105,101,119, 50,111, 98,106, 59, 13, 10, 9, 13, 10, 9,102,108,111, 97,116, 32,102, + 77, 97,103,110,105,116,117,100,101, 32, 61, 32, 97, 98,115, 40,102, 68,101,116, 41, 32, 42, 32,108,101,110,103,116,104, 40,118, + 78, 41, 59, 13, 10, 9,118, 78, 97, 99, 99, 95,111,117,116, 32, 61, 32,118, 78, 97, 99, 99, 95,105,110, 32, 42, 32, 40,102, 77, + 97,103,110,105,116,117,100,101, 32, 47, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, 95,105,110, 41, 59, 13, 10, + 9,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, 95,111,117,116, 32, 61, 32,102, 77, 97,103,110,105,116,117,100,101, + 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95,105,110,105,116, 95,116,101,120,116, +117,114,101,115,112, 97, 99,101, 40, 32,118,101, 99, 51, 32,115,117,114,102, 95,112,111,115, 44, 32,118,101, 99, 51, 32,115,117, +114,102, 95,110,111,114,109, 44, 32, 13, 10, 9, 9, 9, 9, 9, 9, 9, 9, 32, 32,102,108,111, 97,116, 32,102, 80,114,101,118, + 77, 97,103,110,105,116,117,100,101, 95,105,110, 44, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,105,110, 44, 13, 10, 9, 9, + 9, 9, 9, 9, 9, 9, 32, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, + 95,111,117,116, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,111,117,116, 44, 32, 13, 10, 9, 9, 9, 9, 9, 9, 9, 9, 32, 32,111,117,116, 32,118,101, 99, 51, 32,118, 82, 49, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118, 82, 50, - 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 68,101,116, 32, 41, 32, 10,123, 10, 9,118,101, 99, 51, 32,118, 83,105,103, -109, 97, 83, 32, 61, 32,100, 70,100,120, 40, 32,115,117,114,102, 95,112,111,115, 32, 41, 59, 10, 9,118,101, 99, 51, 32,118, 83, -105,103,109, 97, 84, 32, 61, 32,100, 70,100,121, 40, 32,115,117,114,102, 95,112,111,115, 32, 41, 59, 10, 9,118,101, 99, 51, 32, -118, 78, 32, 61, 32,115,117,114,102, 95,110,111,114,109, 59, 32, 47, 42, 32,110,111,114,109, 97,108,105,122,101,100, 32,105,110, -116,101,114,112,111,108, 97,116,101,100, 32,118,101,114,116,101,120, 32,110,111,114,109, 97,108, 32, 42, 47, 10, 9, 10, 9,118, - 82, 49, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 32, 99,114,111,115,115, 40, 32,118, 83,105,103,109, 97, 84, 44, 32, -118, 78, 32, 41, 32, 41, 59, 10, 9,118, 82, 50, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 32, 99,114,111,115,115, 40, - 32,118, 78, 44, 32,118, 83,105,103,109, 97, 83, 32, 41, 32, 41, 59, 10, 9,102, 68,101,116, 32, 61, 32,115,105,103,110, 40, 32, -100,111,116, 40,118, 83,105,103,109, 97, 83, 44, 32,118, 82, 49, 41, 32, 41, 59, 10, 9, 10, 9,102,108,111, 97,116, 32,102, 77, - 97,103,110,105,116,117,100,101, 32, 61, 32, 97, 98,115, 40,102, 68,101,116, 41, 59, 10, 9,118, 78, 97, 99, 99, 95,111,117,116, - 32, 61, 32,118, 78, 97, 99, 99, 95,105,110, 32, 42, 32, 40,102, 77, 97,103,110,105,116,117,100,101, 32, 47, 32,102, 80,114,101, -118, 77, 97,103,110,105,116,117,100,101, 95,105,110, 41, 59, 10, 9,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, 95, -111,117,116, 32, 61, 32,102, 77, 97,103,110,105,116,117,100,101, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95, 98, -117,109,112, 95,105,110,105,116, 95,118,105,101,119,115,112, 97, 99,101, 40, 32,118,101, 99, 51, 32,115,117,114,102, 95,112,111, -115, 44, 32,118,101, 99, 51, 32,115,117,114,102, 95,110,111,114,109, 44, 32, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32, 32,102,108, -111, 97,116, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, 95,105,110, 44, 32,118,101, 99, 51, 32,118, 78, 97, 99, - 99, 95,105,110, 44, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 80,114,101,118, 77, - 97,103,110,105,116,117,100,101, 95,111,117,116, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,111,117,116, - 44, 32, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32, 32,111,117,116, 32,118,101, 99, 51, 32,118, 82, 49, 44, 32,111,117,116, 32,118, -101, 99, 51, 32,118, 82, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 68,101,116, 32, 41, 32, 10,123, 10, 9,118,101, - 99, 51, 32,118, 83,105,103,109, 97, 83, 32, 61, 32,100, 70,100,120, 40, 32,115,117,114,102, 95,112,111,115, 32, 41, 59, 10, 9, -118,101, 99, 51, 32,118, 83,105,103,109, 97, 84, 32, 61, 32,100, 70,100,121, 40, 32,115,117,114,102, 95,112,111,115, 32, 41, 59, - 10, 9,118,101, 99, 51, 32,118, 78, 32, 61, 32,115,117,114,102, 95,110,111,114,109, 59, 32, 47, 42, 32,110,111,114,109, 97,108, -105,122,101,100, 32,105,110,116,101,114,112,111,108, 97,116,101,100, 32,118,101,114,116,101,120, 32,110,111,114,109, 97,108, 32, - 42, 47, 10, 9, 10, 9,118, 82, 49, 32, 61, 32, 99,114,111,115,115, 40, 32,118, 83,105,103,109, 97, 84, 44, 32,118, 78, 32, 41, - 59, 10, 9,118, 82, 50, 32, 61, 32, 99,114,111,115,115, 40, 32,118, 78, 44, 32,118, 83,105,103,109, 97, 83, 32, 41, 32, 59, 10, - 9,102, 68,101,116, 32, 61, 32,100,111,116, 32, 40, 32,118, 83,105,103,109, 97, 83, 44, 32,118, 82, 49, 32, 41, 59, 10, 9, 10, - 9,102,108,111, 97,116, 32,102, 77, 97,103,110,105,116,117,100,101, 32, 61, 32, 97, 98,115, 40,102, 68,101,116, 41, 59, 10, 9, -118, 78, 97, 99, 99, 95,111,117,116, 32, 61, 32,118, 78, 97, 99, 99, 95,105,110, 32, 42, 32, 40,102, 77, 97,103,110,105,116,117, -100,101, 32, 47, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, 95,105,110, 41, 59, 10, 9,102, 80,114,101,118, 77, - 97,103,110,105,116,117,100,101, 95,111,117,116, 32, 61, 32,102, 77, 97,103,110,105,116,117,100,101, 59, 10,125, 10, 10,118,111, -105,100, 32,109,116,101,120, 95, 98,117,109,112, 95,116, 97,112, 51, 40, 32,118,101, 99, 51, 32,116,101,120, 99,111, 44, 32,115, - 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,102,108,111, 97,116, 32,104, 83, 99, 97,108,101, 44, 32, 10, 32, 32, 32, - 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,111,117,116, 32,102,108,111, 97,116, 32,100, 66,115, 44, - 32,111,117,116, 32,102,108,111, 97,116, 32,100, 66,116, 32, 41, 32, 10,123, 10, 9,118,101, 99, 50, 32, 83, 84,108,108, 32, 61, - 32,116,101,120, 99,111, 46,120,121, 59, 10, 9,118,101, 99, 50, 32, 83, 84,108,114, 32, 61, 32,116,101,120, 99,111, 46,120,121, - 32, 43, 32,100, 70,100,120, 40,116,101,120, 99,111, 46,120,121, 41, 32, 59, 10, 9,118,101, 99, 50, 32, 83, 84,117,108, 32, 61, - 32,116,101,120, 99,111, 46,120,121, 32, 43, 32,100, 70,100,121, 40,116,101,120, 99,111, 46,120,121, 41, 32, 59, 10, 9, 10, 9, -102,108,111, 97,116, 32, 72,108,108, 44, 72,108,114, 44, 72,117,108, 59, 10, 9,114,103, 98,116,111, 98,119, 40, 32,116,101,120, -116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, 83, 84,108,108, 41, 44, 32, 72,108,108, 32, 41, 59, 10, 9,114,103, 98,116,111, - 98,119, 40, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, 83, 84,108,114, 41, 44, 32, 72,108,114, 32, 41, 59, - 10, 9,114,103, 98,116,111, 98,119, 40, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, 83, 84,117,108, 41, 44, - 32, 72,117,108, 32, 41, 59, 10, 9, 10, 9,100, 66,115, 32, 61, 32,104, 83, 99, 97,108,101, 32, 42, 32, 40, 72,108,114, 32, 45, - 32, 72,108,108, 41, 59, 10, 9,100, 66,116, 32, 61, 32,104, 83, 99, 97,108,101, 32, 42, 32, 40, 72,117,108, 32, 45, 32, 72,108, -108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95,116, 97,112, 53, 40, 32,118,101, 99, 51, - 32,116,101,120, 99,111, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,102,108,111, 97,116, 32,104, 83, 99, - 97,108,101, 44, 32, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,111,117,116, 32,102, -108,111, 97,116, 32,100, 66,115, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,100, 66,116, 32, 41, 32, 10,123, 10, 9,118,101, - 99, 50, 32, 84,101,120, 68,120, 32, 61, 32,100, 70,100,120, 40,116,101,120, 99,111, 46,120,121, 41, 59, 10, 9,118,101, 99, 50, - 32, 84,101,120, 68,121, 32, 61, 32,100, 70,100,121, 40,116,101,120, 99,111, 46,120,121, 41, 59, 10, 10, 9,118,101, 99, 50, 32, - 83, 84, 99, 32, 61, 32,116,101,120, 99,111, 46,120,121, 59, 10, 9,118,101, 99, 50, 32, 83, 84,108, 32, 61, 32,116,101,120, 99, -111, 46,120,121, 32, 45, 32, 48, 46, 53, 32, 42, 32, 84,101,120, 68,120, 32, 59, 10, 9,118,101, 99, 50, 32, 83, 84,114, 32, 61, - 32,116,101,120, 99,111, 46,120,121, 32, 43, 32, 48, 46, 53, 32, 42, 32, 84,101,120, 68,120, 32, 59, 10, 9,118,101, 99, 50, 32, - 83, 84,100, 32, 61, 32,116,101,120, 99,111, 46,120,121, 32, 45, 32, 48, 46, 53, 32, 42, 32, 84,101,120, 68,121, 32, 59, 10, 9, -118,101, 99, 50, 32, 83, 84,117, 32, 61, 32,116,101,120, 99,111, 46,120,121, 32, 43, 32, 48, 46, 53, 32, 42, 32, 84,101,120, 68, -121, 32, 59, 10, 9, 10, 9,102,108,111, 97,116, 32, 72, 99, 44, 72,108, 44, 72,114, 44, 72,100, 44, 72,117, 59, 10, 9,114,103, - 98,116,111, 98,119, 40, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, 83, 84, 99, 41, 44, 32, 72, 99, 32, 41, - 59, 10, 9,114,103, 98,116,111, 98,119, 40, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, 83, 84,108, 41, 44, - 32, 72,108, 32, 41, 59, 10, 9,114,103, 98,116,111, 98,119, 40, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, - 83, 84,114, 41, 44, 32, 72,114, 32, 41, 59, 10, 9,114,103, 98,116,111, 98,119, 40, 32,116,101,120,116,117,114,101, 50, 68, 40, -105,109, 97, 44, 32, 83, 84,100, 41, 44, 32, 72,100, 32, 41, 59, 10, 9,114,103, 98,116,111, 98,119, 40, 32,116,101,120,116,117, -114,101, 50, 68, 40,105,109, 97, 44, 32, 83, 84,117, 41, 44, 32, 72,117, 32, 41, 59, 10, 9, 10, 9,100, 66,115, 32, 61, 32,104, - 83, 99, 97,108,101, 32, 42, 32, 40, 72,114, 32, 45, 32, 72,108, 41, 59, 10, 9,100, 66,116, 32, 61, 32,104, 83, 99, 97,108,101, - 32, 42, 32, 40, 72,117, 32, 45, 32, 72,100, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95, -100,101,114,105,118, 40, 32,118,101, 99, 51, 32,116,101,120, 99,111, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, - 44, 32,102,108,111, 97,116, 32,105,109, 97, 95,120, 44, 32,102,108,111, 97,116, 32,105,109, 97, 95,121, 44, 32,102,108,111, 97, -116, 32,104, 83, 99, 97,108,101, 44, 32, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, -111,117,116, 32,102,108,111, 97,116, 32,100, 66,115, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,100, 66,116, 32, 41, 32, 10, -123, 10, 9,102,108,111, 97,116, 32,115, 32, 61, 32, 49, 46, 48, 59, 9, 9, 47, 47, 32,110,101,103, 97,116,101, 32,116,104,105, -115, 32,105,102, 32,102,108,105,112,112,101,100, 32,116,101,120,116,117,114,101, 32, 99,111,111,114,100,105,110, 97,116,101, 10, - 9,118,101, 99, 50, 32, 84,101,120, 68,120, 32, 61, 32,100, 70,100,120, 40,116,101,120, 99,111, 46,120,121, 41, 59, 10, 9,118, -101, 99, 50, 32, 84,101,120, 68,121, 32, 61, 32,100, 70,100,121, 40,116,101,120, 99,111, 46,120,121, 41, 59, 10, 9, 10, 9, 47, - 47, 32,116,104,105,115, 32,118, 97,114,105, 97,110,116, 32,117,115,105,110,103, 32, 97, 32,100,101,114,105,118, 97,116,105,118, -101, 32,109, 97,112, 32,105,115, 32,100,101,115, 99,114,105, 98,101,100, 32,104,101,114,101, 10, 9, 47, 47, 32,104,116,116,112, - 58, 47, 47,109,109,105,107,107,101,108,115,101,110, 51,100, 46, 98,108,111,103,115,112,111,116, 46, 99,111,109, 47, 50, 48, 49, - 49, 47, 48, 55, 47,100,101,114,105,118, 97,116,105,118,101, 45,109, 97,112,115, 46,104,116,109,108, 10, 9,118,101, 99, 50, 32, -100,105,109, 32, 61, 32,118,101, 99, 50, 40,105,109, 97, 95,120, 44, 32,105,109, 97, 95,121, 41, 59, 10, 9,118,101, 99, 50, 32, -100, 66,100,117,118, 32, 61, 32,104, 83, 99, 97,108,101, 42,100,105,109, 42, 40, 50, 46, 48, 42,116,101,120,116,117,114,101, 50, - 68, 40,105,109, 97, 44, 32,116,101,120, 99,111, 46,120,121, 41, 46,120,121, 45, 49, 46, 48, 41, 59, 10, 9, 10, 9,100, 66,115, - 32, 61, 32,100, 66,100,117,118, 46,120, 42, 84,101,120, 68,120, 46,120, 32, 43, 32,115, 42,100, 66,100,117,118, 46,121, 42, 84, -101,120, 68,120, 46,121, 59, 10, 9,100, 66,116, 32, 61, 32,100, 66,100,117,118, 46,120, 42, 84,101,120, 68,121, 46,120, 32, 43, - 32,115, 42,100, 66,100,117,118, 46,121, 42, 84,101,120, 68,121, 46,121, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, - 95, 98,117,109,112, 95, 97,112,112,108,121, 40, 32,102,108,111, 97,116, 32,102, 68,101,116, 44, 32,102,108,111, 97,116, 32,100, - 66,115, 44, 32,102,108,111, 97,116, 32,100, 66,116, 44, 32,118,101, 99, 51, 32,118, 82, 49, 44, 32,118,101, 99, 51, 32,118, 82, - 50, 44, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,105,110, 44, 10, 9, 9, 9, 9, 9, 32, 32,111,117,116, 32,118,101, 99, - 51, 32,118, 78, 97, 99, 99, 95,111,117,116, 44, 32,111,117,116, 32,118,101, 99, 51, 32,112,101,114,116,117,114, 98,101,100, 95, -110,111,114,109, 32, 41, 32, 10,123, 10, 9,118,101, 99, 51, 32,118, 83,117,114,102, 71,114, 97,100, 32, 61, 32,115,105,103,110, - 40,102, 68,101,116, 41, 32, 42, 32, 40, 32,100, 66,115, 32, 42, 32,118, 82, 49, 32, 43, 32,100, 66,116, 32, 42, 32,118, 82, 50, - 32, 41, 59, 10, 9, 10, 9,118, 78, 97, 99, 99, 95,111,117,116, 32, 61, 32,118, 78, 97, 99, 99, 95,105,110, 32, 45, 32,118, 83, -117,114,102, 71,114, 97,100, 59, 10, 9,112,101,114,116,117,114, 98,101,100, 95,110,111,114,109, 32, 61, 32,110,111,114,109, 97, -108,105,122,101, 40, 32,118, 78, 97, 99, 99, 95,111,117,116, 32, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95, - 98,117,109,112, 95, 97,112,112,108,121, 95,116,101,120,115,112, 97, 99,101, 40, 32,102,108,111, 97,116, 32,102, 68,101,116, 44, - 32,102,108,111, 97,116, 32,100, 66,115, 44, 32,102,108,111, 97,116, 32,100, 66,116, 44, 32,118,101, 99, 51, 32,118, 82, 49, 44, - 32,118,101, 99, 51, 32,118, 82, 50, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, - 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,118,101, 99, 51, 32,116,101, -120, 99,111, 44, 32,102,108,111, 97,116, 32,105,109, 97, 95,120, 44, 32,102,108,111, 97,116, 32,105,109, 97, 95,121, 44, 32,118, -101, 99, 51, 32,118, 78, 97, 99, 99, 95,105,110, 44, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32, 32,111,117,116, 32,118,101, 99, 51, - 32,118, 78, 97, 99, 99, 95,111,117,116, 44, 32,111,117,116, 32,118,101, 99, 51, 32,112,101,114,116,117,114, 98,101,100, 95,110, -111,114,109, 32, 41, 32, 10,123, 10, 9,118,101, 99, 50, 32, 84,101,120, 68,120, 32, 61, 32,100, 70,100,120, 40,116,101,120, 99, -111, 46,120,121, 41, 59, 10, 9,118,101, 99, 50, 32, 84,101,120, 68,121, 32, 61, 32,100, 70,100,121, 40,116,101,120, 99,111, 46, -120,121, 41, 59, 10, 10, 9,118,101, 99, 51, 32,118, 83,117,114,102, 71,114, 97,100, 32, 61, 32,115,105,103,110, 40,102, 68,101, -116, 41, 32, 42, 32, 40, 32, 10, 9, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,100, 66,115, 32, 47, 32,108,101,110,103,116, -104, 40, 32,118,101, 99, 50, 40,105,109, 97, 95,120, 42, 84,101,120, 68,120, 46,120, 44, 32,105,109, 97, 95,121, 42, 84,101,120, - 68,120, 46,121, 41, 32, 41, 32, 42, 32,118, 82, 49, 32, 43, 32, 10, 9, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,100, 66, -116, 32, 47, 32,108,101,110,103,116,104, 40, 32,118,101, 99, 50, 40,105,109, 97, 95,120, 42, 84,101,120, 68,121, 46,120, 44, 32, -105,109, 97, 95,121, 42, 84,101,120, 68,121, 46,121, 41, 32, 41, 32, 42, 32,118, 82, 50, 32, 41, 59, 10, 9, 9, 9, 9, 10, 9, -118, 78, 97, 99, 99, 95,111,117,116, 32, 61, 32,118, 78, 97, 99, 99, 95,105,110, 32, 45, 32,118, 83,117,114,102, 71,114, 97,100, - 59, 10, 9,112,101,114,116,117,114, 98,101,100, 95,110,111,114,109, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 32,118, - 78, 97, 99, 99, 95,111,117,116, 32, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,110,101,103, 97,116,101, 95, -116,101,120,110,111,114,109, 97,108, 40,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32, -111,117,116,110,111,114,109, 97,108, 41, 10,123, 10, 9,111,117,116,110,111,114,109, 97,108, 32, 61, 32,118,101, 99, 51, 40, 45, -110,111,114,109, 97,108, 46,120, 44, 32, 45,110,111,114,109, 97,108, 46,121, 44, 32,110,111,114,109, 97,108, 46,122, 41, 59, 10, -125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,110,115,112, 97, 99,101, 95,116, 97,110,103,101,110,116, 40,118,101, 99, 52, - 32,116, 97,110,103,101,110,116, 44, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,118,101, 99, 51, 32,116,101,120,110, -111,114,109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,110,111,114,109, 97,108, 41, 10,123, 10, 9,118,101, - 99, 51, 32, 66, 32, 61, 32,116, 97,110,103,101,110,116, 46,119, 32, 42, 32, 99,114,111,115,115, 40,110,111,114,109, 97,108, 44, - 32,116, 97,110,103,101,110,116, 46,120,121,122, 41, 59, 10, 10, 9,111,117,116,110,111,114,109, 97,108, 32, 61, 32,116,101,120, -110,111,114,109, 97,108, 46,120, 42,116, 97,110,103,101,110,116, 46,120,121,122, 32, 43, 32,116,101,120,110,111,114,109, 97,108, - 46,121, 42, 66, 32, 43, 32,116,101,120,110,111,114,109, 97,108, 46,122, 42,110,111,114,109, 97,108, 59, 10, 9,111,117,116,110, -111,114,109, 97,108, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,111,117,116,110,111,114,109, 97,108, 41, 59, 10,125, 10, - 10,118,111,105,100, 32,109,116,101,120, 95, 98,108,101,110,100, 95,110,111,114,109, 97,108, 40,102,108,111, 97,116, 32,110,111, -114,102, 97, 99, 44, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,118,101, 99, 51, 32,110,101,119,110,111,114,109, 97, -108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,110,111,114,109, 97,108, 41, 10,123, 10, 9,111,117,116,110,111,114, -109, 97,108, 32, 61, 32, 40, 49, 46, 48, 32, 45, 32,110,111,114,102, 97, 99, 41, 42,110,111,114,109, 97,108, 32, 43, 32,110,111, -114,102, 97, 99, 42,110,101,119,110,111,114,109, 97,108, 59, 10, 9,111,117,116,110,111,114,109, 97,108, 32, 61, 32,110,111,114, -109, 97,108,105,122,101, 40,111,117,116,110,111,114,109, 97,108, 41, 59, 10,125, 10, 10, 47, 42, 42, 42, 42, 42, 42, 42, 32, 77, - 65, 84, 69, 82, 73, 65, 76, 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 10, 10,118,111,105,100, 32,108, 97,109,112, 95,118,105, -115,105, 98,105,108,105,116,121, 95,115,117,110, 95,104,101,109,105, 40,118,101, 99, 51, 32,108, 97,109,112,118,101, 99, 44, 32, -111,117,116, 32,118,101, 99, 51, 32,108,118, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,100,105,115,116, 44, 32,111,117,116, - 32,102,108,111, 97,116, 32,118,105,115,105,102, 97, 99, 41, 10,123, 10, 9,108,118, 32, 61, 32,108, 97,109,112,118,101, 99, 59, - 10, 9,100,105,115,116, 32, 61, 32, 49, 46, 48, 59, 10, 9,118,105,115,105,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, - 10,118,111,105,100, 32,108, 97,109,112, 95,118,105,115,105, 98,105,108,105,116,121, 95,111,116,104,101,114, 40,118,101, 99, 51, - 32, 99,111, 44, 32,118,101, 99, 51, 32,108, 97,109,112, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,108,118, 44, 32,111, -117,116, 32,102,108,111, 97,116, 32,100,105,115,116, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118,105,115,105,102, 97, 99, - 41, 10,123, 10, 9,108,118, 32, 61, 32, 99,111, 32, 45, 32,108, 97,109,112, 99,111, 59, 10, 9,100,105,115,116, 32, 61, 32,108, -101,110,103,116,104, 40,108,118, 41, 59, 10, 9,108,118, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,108,118, 41, 59, 10, - 9,118,105,115,105,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,108, 97,109,112, 95,102, 97,108, -108,111,102,102, 95,105,110,118,108,105,110,101, 97,114, 40,102,108,111, 97,116, 32,108, 97,109,112,100,105,115,116, 44, 32,102, -108,111, 97,116, 32,100,105,115,116, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118,105,115,105,102, 97, 99, 41, 10,123, 10, - 9,118,105,115,105,102, 97, 99, 32, 61, 32,108, 97,109,112,100,105,115,116, 47, 40,108, 97,109,112,100,105,115,116, 32, 43, 32, -100,105,115,116, 41, 59, 10,125, 10, 10,118,111,105,100, 32,108, 97,109,112, 95,102, 97,108,108,111,102,102, 95,105,110,118,115, -113,117, 97,114,101, 40,102,108,111, 97,116, 32,108, 97,109,112,100,105,115,116, 44, 32,102,108,111, 97,116, 32,100,105,115,116, - 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118,105,115,105,102, 97, 99, 41, 10,123, 10, 9,118,105,115,105,102, 97, 99, 32, - 61, 32,108, 97,109,112,100,105,115,116, 47, 40,108, 97,109,112,100,105,115,116, 32, 43, 32,100,105,115,116, 42,100,105,115,116, - 41, 59, 10,125, 10, 10,118,111,105,100, 32,108, 97,109,112, 95,102, 97,108,108,111,102,102, 95,115,108,105,100,101,114,115, 40, -102,108,111, 97,116, 32,108, 97,109,112,100,105,115,116, 44, 32,102,108,111, 97,116, 32,108,100, 49, 44, 32,102,108,111, 97,116, - 32,108,100, 50, 44, 32,102,108,111, 97,116, 32,100,105,115,116, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118,105,115,105, -102, 97, 99, 41, 10,123, 10, 9,102,108,111, 97,116, 32,108, 97,109,112,100,105,115,116,107,119, 32, 61, 32,108, 97,109,112,100, -105,115,116, 42,108, 97,109,112,100,105,115,116, 59, 10, 10, 9,118,105,115,105,102, 97, 99, 32, 61, 32,108, 97,109,112,100,105, -115,116, 47, 40,108, 97,109,112,100,105,115,116, 32, 43, 32,108,100, 49, 42,100,105,115,116, 41, 59, 10, 9,118,105,115,105,102, - 97, 99, 32, 42, 61, 32,108, 97,109,112,100,105,115,116,107,119, 47, 40,108, 97,109,112,100,105,115,116,107,119, 32, 43, 32,108, -100, 50, 42,100,105,115,116, 42,100,105,115,116, 41, 59, 10,125, 10, 10,118,111,105,100, 32,108, 97,109,112, 95,102, 97,108,108, -111,102,102, 95, 99,117,114,118,101, 40,102,108,111, 97,116, 32,108, 97,109,112,100,105,115,116, 44, 32,115, 97,109,112,108,101, -114, 50, 68, 32, 99,117,114,118,101,109, 97,112, 44, 32,102,108,111, 97,116, 32,100,105,115,116, 44, 32,111,117,116, 32,102,108, -111, 97,116, 32,118,105,115,105,102, 97, 99, 41, 10,123, 10, 9,118,105,115,105,102, 97, 99, 32, 61, 32,116,101,120,116,117,114, -101, 50, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,118,101, 99, 50, 40,100,105,115,116, 47,108, 97,109,112,100,105,115,116, - 44, 32, 48, 46, 48, 41, 41, 46,120, 59, 10,125, 10, 10,118,111,105,100, 32,108, 97,109,112, 95,118,105,115,105, 98,105,108,105, + 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 68,101,116, 32, 41, 32, 13, 10,123, 13, 10, 9,118,101, 99, 51, 32,118, 83, +105,103,109, 97, 83, 32, 61, 32,100, 70,100,120, 40, 32,115,117,114,102, 95,112,111,115, 32, 41, 59, 13, 10, 9,118,101, 99, 51, + 32,118, 83,105,103,109, 97, 84, 32, 61, 32,100, 70,100,121, 40, 32,115,117,114,102, 95,112,111,115, 32, 41, 59, 13, 10, 9,118, +101, 99, 51, 32,118, 78, 32, 61, 32,115,117,114,102, 95,110,111,114,109, 59, 32, 47, 42, 32,110,111,114,109, 97,108,105,122,101, +100, 32,105,110,116,101,114,112,111,108, 97,116,101,100, 32,118,101,114,116,101,120, 32,110,111,114,109, 97,108, 32, 42, 47, 13, + 10, 9, 13, 10, 9,118, 82, 49, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 32, 99,114,111,115,115, 40, 32,118, 83,105, +103,109, 97, 84, 44, 32,118, 78, 32, 41, 32, 41, 59, 13, 10, 9,118, 82, 50, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, + 32, 99,114,111,115,115, 40, 32,118, 78, 44, 32,118, 83,105,103,109, 97, 83, 32, 41, 32, 41, 59, 13, 10, 9,102, 68,101,116, 32, + 61, 32,115,105,103,110, 40, 32,100,111,116, 40,118, 83,105,103,109, 97, 83, 44, 32,118, 82, 49, 41, 32, 41, 59, 13, 10, 9, 13, + 10, 9,102,108,111, 97,116, 32,102, 77, 97,103,110,105,116,117,100,101, 32, 61, 32, 97, 98,115, 40,102, 68,101,116, 41, 59, 13, + 10, 9,118, 78, 97, 99, 99, 95,111,117,116, 32, 61, 32,118, 78, 97, 99, 99, 95,105,110, 32, 42, 32, 40,102, 77, 97,103,110,105, +116,117,100,101, 32, 47, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, 95,105,110, 41, 59, 13, 10, 9,102, 80,114, +101,118, 77, 97,103,110,105,116,117,100,101, 95,111,117,116, 32, 61, 32,102, 77, 97,103,110,105,116,117,100,101, 59, 13, 10,125, + 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95,105,110,105,116, 95,118,105,101,119,115,112, 97, 99, +101, 40, 32,118,101, 99, 51, 32,115,117,114,102, 95,112,111,115, 44, 32,118,101, 99, 51, 32,115,117,114,102, 95,110,111,114,109, + 44, 32, 13, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32, 32,102,108,111, 97,116, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117, +100,101, 95,105,110, 44, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,105,110, 44, 13, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32, + 32,111,117,116, 32,102,108,111, 97,116, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, 95,111,117,116, 44, 32,111, +117,116, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,111,117,116, 44, 32, 13, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32, 32,111, +117,116, 32,118,101, 99, 51, 32,118, 82, 49, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118, 82, 50, 44, 32,111,117,116, 32,102, +108,111, 97,116, 32,102, 68,101,116, 32, 41, 32, 13, 10,123, 13, 10, 9,118,101, 99, 51, 32,118, 83,105,103,109, 97, 83, 32, 61, + 32,100, 70,100,120, 40, 32,115,117,114,102, 95,112,111,115, 32, 41, 59, 13, 10, 9,118,101, 99, 51, 32,118, 83,105,103,109, 97, + 84, 32, 61, 32,100, 70,100,121, 40, 32,115,117,114,102, 95,112,111,115, 32, 41, 59, 13, 10, 9,118,101, 99, 51, 32,118, 78, 32, + 61, 32,115,117,114,102, 95,110,111,114,109, 59, 32, 47, 42, 32,110,111,114,109, 97,108,105,122,101,100, 32,105,110,116,101,114, +112,111,108, 97,116,101,100, 32,118,101,114,116,101,120, 32,110,111,114,109, 97,108, 32, 42, 47, 13, 10, 9, 13, 10, 9,118, 82, + 49, 32, 61, 32, 99,114,111,115,115, 40, 32,118, 83,105,103,109, 97, 84, 44, 32,118, 78, 32, 41, 59, 13, 10, 9,118, 82, 50, 32, + 61, 32, 99,114,111,115,115, 40, 32,118, 78, 44, 32,118, 83,105,103,109, 97, 83, 32, 41, 32, 59, 13, 10, 9,102, 68,101,116, 32, + 61, 32,100,111,116, 32, 40, 32,118, 83,105,103,109, 97, 83, 44, 32,118, 82, 49, 32, 41, 59, 13, 10, 9, 13, 10, 9,102,108,111, + 97,116, 32,102, 77, 97,103,110,105,116,117,100,101, 32, 61, 32, 97, 98,115, 40,102, 68,101,116, 41, 59, 13, 10, 9,118, 78, 97, + 99, 99, 95,111,117,116, 32, 61, 32,118, 78, 97, 99, 99, 95,105,110, 32, 42, 32, 40,102, 77, 97,103,110,105,116,117,100,101, 32, + 47, 32,102, 80,114,101,118, 77, 97,103,110,105,116,117,100,101, 95,105,110, 41, 59, 13, 10, 9,102, 80,114,101,118, 77, 97,103, +110,105,116,117,100,101, 95,111,117,116, 32, 61, 32,102, 77, 97,103,110,105,116,117,100,101, 59, 13, 10,125, 13, 10, 13, 10,118, +111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95,116, 97,112, 51, 40, 32,118,101, 99, 51, 32,116,101,120, 99,111, 44, 32, +115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,102,108,111, 97,116, 32,104, 83, 99, 97,108,101, 44, 32, 13, 10, 32, + 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,111,117,116, 32,102,108,111, 97,116, 32,100, 66, +115, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,100, 66,116, 32, 41, 32, 13, 10,123, 13, 10, 9,118,101, 99, 50, 32, 83, 84, +108,108, 32, 61, 32,116,101,120, 99,111, 46,120,121, 59, 13, 10, 9,118,101, 99, 50, 32, 83, 84,108,114, 32, 61, 32,116,101,120, + 99,111, 46,120,121, 32, 43, 32,100, 70,100,120, 40,116,101,120, 99,111, 46,120,121, 41, 32, 59, 13, 10, 9,118,101, 99, 50, 32, + 83, 84,117,108, 32, 61, 32,116,101,120, 99,111, 46,120,121, 32, 43, 32,100, 70,100,121, 40,116,101,120, 99,111, 46,120,121, 41, + 32, 59, 13, 10, 9, 13, 10, 9,102,108,111, 97,116, 32, 72,108,108, 44, 72,108,114, 44, 72,117,108, 59, 13, 10, 9,114,103, 98, +116,111, 98,119, 40, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, 83, 84,108,108, 41, 44, 32, 72,108,108, 32, + 41, 59, 13, 10, 9,114,103, 98,116,111, 98,119, 40, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, 83, 84,108, +114, 41, 44, 32, 72,108,114, 32, 41, 59, 13, 10, 9,114,103, 98,116,111, 98,119, 40, 32,116,101,120,116,117,114,101, 50, 68, 40, +105,109, 97, 44, 32, 83, 84,117,108, 41, 44, 32, 72,117,108, 32, 41, 59, 13, 10, 9, 13, 10, 9,100, 66,115, 32, 61, 32,104, 83, + 99, 97,108,101, 32, 42, 32, 40, 72,108,114, 32, 45, 32, 72,108,108, 41, 59, 13, 10, 9,100, 66,116, 32, 61, 32,104, 83, 99, 97, +108,101, 32, 42, 32, 40, 72,117,108, 32, 45, 32, 72,108,108, 41, 59, 13, 10,125, 13, 10, 13, 10, 35,105,102,100,101,102, 32, 66, + 85, 77, 80, 95, 66, 73, 67, 85, 66, 73, 67, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95, 98,105, + 99,117, 98,105, 99, 40, 32,118,101, 99, 51, 32,116,101,120, 99,111, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, + 44, 32,102,108,111, 97,116, 32,104, 83, 99, 97,108,101, 44, 32, 13, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, + 32, 32, 32, 32, 32, 32, 32,111,117,116, 32,102,108,111, 97,116, 32,100, 66,115, 44, 32,111,117,116, 32,102,108,111, 97,116, 32, +100, 66,116, 32, 41, 32, 13, 10,123, 13, 10, 9,118,101, 99, 50, 32, 84,101,120, 68,120, 32, 61, 32,100, 70,100,120, 40,116,101, +120, 99,111, 46,120,121, 41, 59, 13, 10, 9,118,101, 99, 50, 32, 84,101,120, 68,121, 32, 61, 32,100, 70,100,121, 40,116,101,120, + 99,111, 46,120,121, 41, 59, 13, 10, 32, 13, 10, 9,118,101, 99, 50, 32, 83, 84,108, 32, 61, 32,116,101,120, 99,111, 46,120,121, + 32, 45, 32, 48, 46, 53, 32, 42, 32, 84,101,120, 68,120, 32, 59, 13, 10, 9,118,101, 99, 50, 32, 83, 84,114, 32, 61, 32,116,101, +120, 99,111, 46,120,121, 32, 43, 32, 48, 46, 53, 32, 42, 32, 84,101,120, 68,120, 32, 59, 13, 10, 9,118,101, 99, 50, 32, 83, 84, +100, 32, 61, 32,116,101,120, 99,111, 46,120,121, 32, 45, 32, 48, 46, 53, 32, 42, 32, 84,101,120, 68,121, 32, 59, 13, 10, 9,118, +101, 99, 50, 32, 83, 84,117, 32, 61, 32,116,101,120, 99,111, 46,120,121, 32, 43, 32, 48, 46, 53, 32, 42, 32, 84,101,120, 68,121, + 32, 59, 13, 10, 9, 13, 10, 9,102,108,111, 97,116, 32, 72,108, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, + 44, 32, 83, 84,108, 41, 46,120, 59, 13, 10, 9,102,108,111, 97,116, 32, 72,114, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, + 40,105,109, 97, 44, 32, 83, 84,114, 41, 46,120, 59, 13, 10, 9,102,108,111, 97,116, 32, 72,100, 32, 61, 32,116,101,120,116,117, +114,101, 50, 68, 40,105,109, 97, 44, 32, 83, 84,100, 41, 46,120, 59, 13, 10, 9,102,108,111, 97,116, 32, 72,117, 32, 61, 32,116, +101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, 83, 84,117, 41, 46,120, 59, 13, 10, 9, 13, 10, 9,118,101, 99, 50, 32, +100, 72,100,120,121, 32, 61, 32,118,101, 99, 50, 40, 72,114, 32, 45, 32, 72,108, 44, 32, 72,117, 32, 45, 32, 72,100, 41, 59, 13, + 10, 9,102,108,111, 97,116, 32,102, 66,108,101,110,100, 32, 61, 32, 99,108, 97,109,112, 40, 49, 46, 48, 45,116,101,120,116,117, +114,101, 81,117,101,114,121, 76, 79, 68, 40,105,109, 97, 44, 32,116,101,120, 99,111, 46,120,121, 41, 46,120, 44, 32, 48, 46, 48, + 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,105,102, 40,102, 66,108,101,110,100, 33, 61, 48, 46, 48, 41, 13, 10, 9,123, 13, 10, 9, + 9, 47, 47, 32,116,104,101, 32,100,101,114,105,118, 97,116,105,118,101, 32,111,102, 32,116,104,101, 32, 98,105, 99,117, 98,105, + 99, 32,115, 97,109,112,108,105,110,103, 32,111,102, 32,108,101,118,101,108, 32, 48, 13, 10, 9, 9,105,118,101, 99, 50, 32,118, + 68,105,109, 59, 13, 10, 9, 9,118, 68,105,109, 32, 61, 32,116,101,120,116,117,114,101, 83,105,122,101, 40,105,109, 97, 44, 32, + 48, 41, 59, 13, 10, 13, 10, 9, 9,118,101, 99, 50, 32,102, 84,101,120, 76,111, 99, 32, 61, 32,118, 68,105,109, 42,116,101,120, + 99,111, 46,120,121, 45,118,101, 99, 50, 40, 48, 46, 53, 44, 48, 46, 53, 41, 59, 13, 10, 9, 9,105,118,101, 99, 50, 32,105, 84, +101,120, 76,111, 99, 32, 61, 32,105,118,101, 99, 50, 40,102,108,111,111,114, 40,102, 84,101,120, 76,111, 99, 41, 41, 59, 13, 10, + 9, 9,118,101, 99, 50, 32,116, 32, 61, 32, 99,108, 97,109,112, 40,102, 84,101,120, 76,111, 99, 32, 45, 32,105, 84,101,120, 76, +111, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 9, 9, 47, 47, 32,115, 97,116, 32,106,117,115,116, 32,116,111, 32, 98, +101, 32,112,101,100, 97,110,116,105, 99, 13, 10, 13, 10, 9, 9,105,118,101, 99, 50, 32,105, 84,101,120, 76,111, 99, 77,111,100, + 32, 61, 32,105, 84,101,120, 76,111, 99, 32, 43, 32,105,118,101, 99, 50, 40, 45, 49, 44, 32, 45, 49, 41, 59, 13, 10, 13, 10, 47, + 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, + 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, + 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 13, 10, 32, 42, 32, + 84,104,105,115, 32, 98,108,111, 99,107, 32,119,105,108,108, 32,114,101,112,108, 97, 99,101, 32,116,104,101, 32,111,110,101, 32, + 98,101,108,111,119, 32,119,104,101,110, 32,111,110,101, 32, 99,104, 97,110,110,101,108, 32,116,101,120,116,117,114,101,115, 32, + 97,114,101, 32,112,114,111,112,101,114,108,121, 32,115,117,112,112,111,114,116,101,100, 46, 32, 42, 13, 10, 32, 42, 42, 42, 42, + 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, + 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, + 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 13, 10, 9, 9,118,101, 99, 52, 32, +118, 83, 97,109,112,108,101,115, 85, 76, 32, 61, 32,116,101,120,116,117,114,101, 71, 97,116,104,101,114, 40,105,109, 97, 44, 32, + 40,105, 84,101,120, 76,111, 99, 43,105,118,101, 99, 50, 40, 45, 49, 44, 45, 49, 41, 32, 43, 32,118,101, 99, 50, 40, 48, 46, 53, + 44, 48, 46, 53, 41, 41, 47,118, 68,105,109, 32, 41, 59, 13, 10, 9, 9,118,101, 99, 52, 32,118, 83, 97,109,112,108,101,115, 85, + 82, 32, 61, 32,116,101,120,116,117,114,101, 71, 97,116,104,101,114, 40,105,109, 97, 44, 32, 40,105, 84,101,120, 76,111, 99, 43, +105,118,101, 99, 50, 40, 49, 44, 45, 49, 41, 32, 43, 32,118,101, 99, 50, 40, 48, 46, 53, 44, 48, 46, 53, 41, 41, 47,118, 68,105, +109, 32, 41, 59, 13, 10, 9, 9,118,101, 99, 52, 32,118, 83, 97,109,112,108,101,115, 76, 76, 32, 61, 32,116,101,120,116,117,114, +101, 71, 97,116,104,101,114, 40,105,109, 97, 44, 32, 40,105, 84,101,120, 76,111, 99, 43,105,118,101, 99, 50, 40, 45, 49, 44, 49, + 41, 32, 43, 32,118,101, 99, 50, 40, 48, 46, 53, 44, 48, 46, 53, 41, 41, 47,118, 68,105,109, 32, 41, 59, 13, 10, 9, 9,118,101, + 99, 52, 32,118, 83, 97,109,112,108,101,115, 76, 82, 32, 61, 32,116,101,120,116,117,114,101, 71, 97,116,104,101,114, 40,105,109, + 97, 44, 32, 40,105, 84,101,120, 76,111, 99, 43,105,118,101, 99, 50, 40, 49, 44, 49, 41, 32, 43, 32,118,101, 99, 50, 40, 48, 46, + 53, 44, 48, 46, 53, 41, 41, 47,118, 68,105,109, 32, 41, 59, 13, 10, 9, 9, 13, 10, 9, 9,109, 97,116, 52, 32, 72, 32, 61, 32, +109, 97,116, 52, 40,118, 83, 97,109,112,108,101,115, 85, 76, 46,119, 44, 32,118, 83, 97,109,112,108,101,115, 85, 76, 46,120, 44, + 32,118, 83, 97,109,112,108,101,115, 76, 76, 46,119, 44, 32,118, 83, 97,109,112,108,101,115, 76, 76, 46,120, 44, 13, 10, 9, 9, + 9, 9, 9,118, 83, 97,109,112,108,101,115, 85, 76, 46,122, 44, 32,118, 83, 97,109,112,108,101,115, 85, 76, 46,121, 44, 32,118, + 83, 97,109,112,108,101,115, 76, 76, 46,122, 44, 32,118, 83, 97,109,112,108,101,115, 76, 76, 46,121, 44, 13, 10, 9, 9, 9, 9, + 9,118, 83, 97,109,112,108,101,115, 85, 82, 46,119, 44, 32,118, 83, 97,109,112,108,101,115, 85, 82, 46,120, 44, 32,118, 83, 97, +109,112,108,101,115, 76, 82, 46,119, 44, 32,118, 83, 97,109,112,108,101,115, 76, 82, 46,120, 44, 13, 10, 9, 9, 9, 9, 9,118, + 83, 97,109,112,108,101,115, 85, 82, 46,122, 44, 32,118, 83, 97,109,112,108,101,115, 85, 82, 46,121, 44, 32,118, 83, 97,109,112, +108,101,115, 76, 82, 46,122, 44, 32,118, 83, 97,109,112,108,101,115, 76, 82, 46,121, 41, 59, 13, 10, 42, 47, 9, 13, 10, 9, 9, +109, 97,116, 52, 32, 72, 59, 13, 10, 9, 9, 13, 10, 9, 9,102,111,114, 40,105,110,116, 32,105, 32, 61, 32, 48, 59, 32,105, 32, + 60, 32, 52, 59, 32,105, 43, 43, 41,123, 13, 10, 9, 9, 9,102,111,114, 40,105,110,116, 32,106, 32, 61, 32, 48, 59, 32,106, 32, + 60, 32, 52, 59, 32,106, 43, 43, 41,123, 13, 10, 9, 9, 9, 9,109,116,101,120, 95,114,103, 98,116,111,105,110,116, 40,116,101, +120,101,108, 70,101,116, 99,104, 40,105,109, 97, 44, 32, 40,105, 84,101,120, 76,111, 99, 77,111,100, 32, 43, 32,105,118,101, 99, + 50, 40,105, 44,106, 41, 41, 44, 32, 48, 41, 44, 32, 72, 91,105, 93, 91,106, 93, 41, 59, 13, 10, 9, 9, 9,125, 13, 10, 9, 9, +125, 13, 10, 9, 9, 13, 10, 9, 9,102,108,111, 97,116, 32,120, 32, 61, 32,116, 46,120, 44, 32,121, 32, 61, 32,116, 46,121, 59, + 13, 10, 9, 9,102,108,111, 97,116, 32,120, 50, 32, 61, 32,120, 32, 42, 32,120, 44, 32,120, 51, 32, 61, 32,120, 50, 32, 42, 32, +120, 44, 32,121, 50, 32, 61, 32,121, 32, 42, 32,121, 44, 32,121, 51, 32, 61, 32,121, 50, 32, 42, 32,121, 59, 13, 10, 13, 10, 9, + 9,118,101, 99, 52, 32, 88, 32, 61, 32,118,101, 99, 52, 40, 45, 48, 46, 53, 42, 40,120, 51, 43,120, 41, 43,120, 50, 44, 9, 9, + 49, 46, 53, 42,120, 51, 45, 50, 46, 53, 42,120, 50, 43, 49, 44, 9, 45, 49, 46, 53, 42,120, 51, 43, 50, 42,120, 50, 43, 48, 46, + 53, 42,120, 44, 9, 9, 48, 46, 53, 42, 40,120, 51, 45,120, 50, 41, 41, 59, 13, 10, 9, 9,118,101, 99, 52, 32, 89, 32, 61, 32, +118,101, 99, 52, 40, 45, 48, 46, 53, 42, 40,121, 51, 43,121, 41, 43,121, 50, 44, 9, 9, 49, 46, 53, 42,121, 51, 45, 50, 46, 53, + 42,121, 50, 43, 49, 44, 9, 45, 49, 46, 53, 42,121, 51, 43, 50, 42,121, 50, 43, 48, 46, 53, 42,121, 44, 9, 9, 48, 46, 53, 42, + 40,121, 51, 45,121, 50, 41, 41, 59, 13, 10, 9, 9,118,101, 99, 52, 32,100, 88, 32, 61, 32,118,101, 99, 52, 40, 45, 49, 46, 53, + 42,120, 50, 43, 50, 42,120, 45, 48, 46, 53, 44, 9, 9, 52, 46, 53, 42,120, 50, 45, 53, 42,120, 44, 9, 9, 9, 45, 52, 46, 53, + 42,120, 50, 43, 52, 42,120, 43, 48, 46, 53, 44, 9, 9, 49, 46, 53, 42,120, 50, 45,120, 41, 59, 13, 10, 9, 9,118,101, 99, 52, + 32,100, 89, 32, 61, 32,118,101, 99, 52, 40, 45, 49, 46, 53, 42,121, 50, 43, 50, 42,121, 45, 48, 46, 53, 44, 9, 9, 52, 46, 53, + 42,121, 50, 45, 53, 42,121, 44, 9, 9, 9, 45, 52, 46, 53, 42,121, 50, 43, 52, 42,121, 43, 48, 46, 53, 44, 9, 9, 49, 46, 53, + 42,121, 50, 45,121, 41, 59, 13, 10, 9, 13, 10, 9, 9, 47, 47, 32, 99,111,109,112,108,101,116,101, 32,100,101,114,105,118, 97, +116,105,118,101, 32,105,110, 32,110,111,114,109, 97,108,105,122,101,100, 32, 99,111,111,114,100,105,110, 97,116,101,115, 32, 40, +109,117,108, 32, 98,121, 32,118, 68,105,109, 41, 13, 10, 9, 9,118,101, 99, 50, 32,100, 72,100, 83, 84, 32, 61, 32,118, 68,105, +109, 32, 42, 32,118,101, 99, 50, 40,100,111,116, 40, 89, 44, 32, 72, 32, 42, 32,100, 88, 41, 44, 32,100,111,116, 40,100, 89, 44, + 32, 72, 32, 42, 32, 88, 41, 41, 59, 13, 10, 13, 10, 9, 9, 47, 47, 32,116,114, 97,110,115,102,111,114,109, 32,100,101,114,105, +118, 97,116,105,118,101, 32,116,111, 32,115, 99,114,101,101,110, 45,115,112, 97, 99,101, 13, 10, 9, 9,118,101, 99, 50, 32,100, + 72,100,120,121, 95, 98,105, 99,117, 98,105, 99, 32, 61, 32,118,101, 99, 50, 40, 32,100, 72,100, 83, 84, 46,120, 32, 42, 32, 84, +101,120, 68,120, 46,120, 32, 43, 32,100, 72,100, 83, 84, 46,121, 32, 42, 32, 84,101,120, 68,120, 46,121, 44, 13, 10, 9, 9, 9, + 9, 9, 9, 9, 9, 32, 32, 32,100, 72,100, 83, 84, 46,120, 32, 42, 32, 84,101,120, 68,121, 46,120, 32, 43, 32,100, 72,100, 83, + 84, 46,121, 32, 42, 32, 84,101,120, 68,121, 46,121, 32, 41, 59, 13, 10, 13, 10, 9, 9, 47, 47, 32, 98,108,101,110,100, 32, 98, +101,116,119,101,101,110, 32,116,104,101, 32,116,119,111, 13, 10, 9, 9,100, 72,100,120,121, 32, 61, 32,100, 72,100,120,121, 42, + 40, 49, 45,102, 66,108,101,110,100, 41, 32, 43, 32,100, 72,100,120,121, 95, 98,105, 99,117, 98,105, 99, 42,102, 66,108,101,110, +100, 59, 13, 10, 9,125, 13, 10, 13, 10, 9,100, 66,115, 32, 61, 32,104, 83, 99, 97,108,101, 32, 42, 32,100, 72,100,120,121, 46, +120, 59, 13, 10, 9,100, 66,116, 32, 61, 32,104, 83, 99, 97,108,101, 32, 42, 32,100, 72,100,120,121, 46,121, 59, 13, 10,125, 13, + 10, 13, 10, 35,101,110,100,105,102, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95,116, 97,112, 53, + 40, 32,118,101, 99, 51, 32,116,101,120, 99,111, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,102,108,111, + 97,116, 32,104, 83, 99, 97,108,101, 44, 32, 13, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, + 32, 32,111,117,116, 32,102,108,111, 97,116, 32,100, 66,115, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,100, 66,116, 32, 41, + 32, 13, 10,123, 13, 10, 9,118,101, 99, 50, 32, 84,101,120, 68,120, 32, 61, 32,100, 70,100,120, 40,116,101,120, 99,111, 46,120, +121, 41, 59, 13, 10, 9,118,101, 99, 50, 32, 84,101,120, 68,121, 32, 61, 32,100, 70,100,121, 40,116,101,120, 99,111, 46,120,121, + 41, 59, 13, 10, 13, 10, 9,118,101, 99, 50, 32, 83, 84, 99, 32, 61, 32,116,101,120, 99,111, 46,120,121, 59, 13, 10, 9,118,101, + 99, 50, 32, 83, 84,108, 32, 61, 32,116,101,120, 99,111, 46,120,121, 32, 45, 32, 48, 46, 53, 32, 42, 32, 84,101,120, 68,120, 32, + 59, 13, 10, 9,118,101, 99, 50, 32, 83, 84,114, 32, 61, 32,116,101,120, 99,111, 46,120,121, 32, 43, 32, 48, 46, 53, 32, 42, 32, + 84,101,120, 68,120, 32, 59, 13, 10, 9,118,101, 99, 50, 32, 83, 84,100, 32, 61, 32,116,101,120, 99,111, 46,120,121, 32, 45, 32, + 48, 46, 53, 32, 42, 32, 84,101,120, 68,121, 32, 59, 13, 10, 9,118,101, 99, 50, 32, 83, 84,117, 32, 61, 32,116,101,120, 99,111, + 46,120,121, 32, 43, 32, 48, 46, 53, 32, 42, 32, 84,101,120, 68,121, 32, 59, 13, 10, 9, 13, 10, 9,102,108,111, 97,116, 32, 72, + 99, 44, 72,108, 44, 72,114, 44, 72,100, 44, 72,117, 59, 13, 10, 9,114,103, 98,116,111, 98,119, 40, 32,116,101,120,116,117,114, +101, 50, 68, 40,105,109, 97, 44, 32, 83, 84, 99, 41, 44, 32, 72, 99, 32, 41, 59, 13, 10, 9,114,103, 98,116,111, 98,119, 40, 32, +116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, 83, 84,108, 41, 44, 32, 72,108, 32, 41, 59, 13, 10, 9,114,103, 98, +116,111, 98,119, 40, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, 83, 84,114, 41, 44, 32, 72,114, 32, 41, 59, + 13, 10, 9,114,103, 98,116,111, 98,119, 40, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, 83, 84,100, 41, 44, + 32, 72,100, 32, 41, 59, 13, 10, 9,114,103, 98,116,111, 98,119, 40, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, + 32, 83, 84,117, 41, 44, 32, 72,117, 32, 41, 59, 13, 10, 9, 13, 10, 9,100, 66,115, 32, 61, 32,104, 83, 99, 97,108,101, 32, 42, + 32, 40, 72,114, 32, 45, 32, 72,108, 41, 59, 13, 10, 9,100, 66,116, 32, 61, 32,104, 83, 99, 97,108,101, 32, 42, 32, 40, 72,117, + 32, 45, 32, 72,100, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95,100,101,114, +105,118, 40, 32,118,101, 99, 51, 32,116,101,120, 99,111, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,102, +108,111, 97,116, 32,105,109, 97, 95,120, 44, 32,102,108,111, 97,116, 32,105,109, 97, 95,121, 44, 32,102,108,111, 97,116, 32,104, + 83, 99, 97,108,101, 44, 32, 13, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,111,117, +116, 32,102,108,111, 97,116, 32,100, 66,115, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,100, 66,116, 32, 41, 32, 13, 10,123, + 13, 10, 9,102,108,111, 97,116, 32,115, 32, 61, 32, 49, 46, 48, 59, 9, 9, 47, 47, 32,110,101,103, 97,116,101, 32,116,104,105, +115, 32,105,102, 32,102,108,105,112,112,101,100, 32,116,101,120,116,117,114,101, 32, 99,111,111,114,100,105,110, 97,116,101, 13, + 10, 9,118,101, 99, 50, 32, 84,101,120, 68,120, 32, 61, 32,100, 70,100,120, 40,116,101,120, 99,111, 46,120,121, 41, 59, 13, 10, + 9,118,101, 99, 50, 32, 84,101,120, 68,121, 32, 61, 32,100, 70,100,121, 40,116,101,120, 99,111, 46,120,121, 41, 59, 13, 10, 9, + 13, 10, 9, 47, 47, 32,116,104,105,115, 32,118, 97,114,105, 97,110,116, 32,117,115,105,110,103, 32, 97, 32,100,101,114,105,118, + 97,116,105,118,101, 32,109, 97,112, 32,105,115, 32,100,101,115, 99,114,105, 98,101,100, 32,104,101,114,101, 13, 10, 9, 47, 47, + 32,104,116,116,112, 58, 47, 47,109,109,105,107,107,101,108,115,101,110, 51,100, 46, 98,108,111,103,115,112,111,116, 46, 99,111, +109, 47, 50, 48, 49, 49, 47, 48, 55, 47,100,101,114,105,118, 97,116,105,118,101, 45,109, 97,112,115, 46,104,116,109,108, 13, 10, + 9,118,101, 99, 50, 32,100,105,109, 32, 61, 32,118,101, 99, 50, 40,105,109, 97, 95,120, 44, 32,105,109, 97, 95,121, 41, 59, 13, + 10, 9,118,101, 99, 50, 32,100, 66,100,117,118, 32, 61, 32,104, 83, 99, 97,108,101, 42,100,105,109, 42, 40, 50, 46, 48, 42,116, +101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32,116,101,120, 99,111, 46,120,121, 41, 46,120,121, 45, 49, 46, 48, 41, 59, + 13, 10, 9, 13, 10, 9,100, 66,115, 32, 61, 32,100, 66,100,117,118, 46,120, 42, 84,101,120, 68,120, 46,120, 32, 43, 32,115, 42, +100, 66,100,117,118, 46,121, 42, 84,101,120, 68,120, 46,121, 59, 13, 10, 9,100, 66,116, 32, 61, 32,100, 66,100,117,118, 46,120, + 42, 84,101,120, 68,121, 46,120, 32, 43, 32,115, 42,100, 66,100,117,118, 46,121, 42, 84,101,120, 68,121, 46,121, 59, 13, 10,125, + 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95, 97,112,112,108,121, 40, 32,102,108,111, 97,116, 32, +102, 68,101,116, 44, 32,102,108,111, 97,116, 32,100, 66,115, 44, 32,102,108,111, 97,116, 32,100, 66,116, 44, 32,118,101, 99, 51, + 32,118, 82, 49, 44, 32,118,101, 99, 51, 32,118, 82, 50, 44, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,105,110, 44, 13, 10, + 9, 9, 9, 9, 9, 32, 32,111,117,116, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,111,117,116, 44, 32,111,117,116, 32,118, +101, 99, 51, 32,112,101,114,116,117,114, 98,101,100, 95,110,111,114,109, 32, 41, 32, 13, 10,123, 13, 10, 9,118,101, 99, 51, 32, +118, 83,117,114,102, 71,114, 97,100, 32, 61, 32,115,105,103,110, 40,102, 68,101,116, 41, 32, 42, 32, 40, 32,100, 66,115, 32, 42, + 32,118, 82, 49, 32, 43, 32,100, 66,116, 32, 42, 32,118, 82, 50, 32, 41, 59, 13, 10, 9, 13, 10, 9,118, 78, 97, 99, 99, 95,111, +117,116, 32, 61, 32,118, 78, 97, 99, 99, 95,105,110, 32, 45, 32,118, 83,117,114,102, 71,114, 97,100, 59, 13, 10, 9,112,101,114, +116,117,114, 98,101,100, 95,110,111,114,109, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 32,118, 78, 97, 99, 99, 95,111, +117,116, 32, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95, 98,117,109,112, 95, 97,112,112,108,121, + 95,116,101,120,115,112, 97, 99,101, 40, 32,102,108,111, 97,116, 32,102, 68,101,116, 44, 32,102,108,111, 97,116, 32,100, 66,115, + 44, 32,102,108,111, 97,116, 32,100, 66,116, 44, 32,118,101, 99, 51, 32,118, 82, 49, 44, 32,118,101, 99, 51, 32,118, 82, 50, 44, + 13, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, + 32,115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111, 44, 32,102,108,111, 97, +116, 32,105,109, 97, 95,120, 44, 32,102,108,111, 97,116, 32,105,109, 97, 95,121, 44, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, + 95,105,110, 44, 13, 10, 9, 9, 9, 9, 9, 9, 9, 32, 32, 32,111,117,116, 32,118,101, 99, 51, 32,118, 78, 97, 99, 99, 95,111, +117,116, 44, 32,111,117,116, 32,118,101, 99, 51, 32,112,101,114,116,117,114, 98,101,100, 95,110,111,114,109, 32, 41, 32, 13, 10, +123, 13, 10, 9,118,101, 99, 50, 32, 84,101,120, 68,120, 32, 61, 32,100, 70,100,120, 40,116,101,120, 99,111, 46,120,121, 41, 59, + 13, 10, 9,118,101, 99, 50, 32, 84,101,120, 68,121, 32, 61, 32,100, 70,100,121, 40,116,101,120, 99,111, 46,120,121, 41, 59, 13, + 10, 13, 10, 9,118,101, 99, 51, 32,118, 83,117,114,102, 71,114, 97,100, 32, 61, 32,115,105,103,110, 40,102, 68,101,116, 41, 32, + 42, 32, 40, 32, 13, 10, 9, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,100, 66,115, 32, 47, 32,108,101,110,103,116,104, 40, + 32,118,101, 99, 50, 40,105,109, 97, 95,120, 42, 84,101,120, 68,120, 46,120, 44, 32,105,109, 97, 95,121, 42, 84,101,120, 68,120, + 46,121, 41, 32, 41, 32, 42, 32,118, 82, 49, 32, 43, 32, 13, 10, 9, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,100, 66,116, + 32, 47, 32,108,101,110,103,116,104, 40, 32,118,101, 99, 50, 40,105,109, 97, 95,120, 42, 84,101,120, 68,121, 46,120, 44, 32,105, +109, 97, 95,121, 42, 84,101,120, 68,121, 46,121, 41, 32, 41, 32, 42, 32,118, 82, 50, 32, 41, 59, 13, 10, 9, 9, 9, 9, 13, 10, + 9,118, 78, 97, 99, 99, 95,111,117,116, 32, 61, 32,118, 78, 97, 99, 99, 95,105,110, 32, 45, 32,118, 83,117,114,102, 71,114, 97, +100, 59, 13, 10, 9,112,101,114,116,117,114, 98,101,100, 95,110,111,114,109, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, + 32,118, 78, 97, 99, 99, 95,111,117,116, 32, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,110,101, +103, 97,116,101, 95,116,101,120,110,111,114,109, 97,108, 40,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111,117,116, 32, +118,101, 99, 51, 32,111,117,116,110,111,114,109, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,110,111,114,109, 97,108, 32, 61, + 32,118,101, 99, 51, 40, 45,110,111,114,109, 97,108, 46,120, 44, 32, 45,110,111,114,109, 97,108, 46,121, 44, 32,110,111,114,109, + 97,108, 46,122, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95,110,115,112, 97, 99,101, 95,116, 97, +110,103,101,110,116, 40,118,101, 99, 52, 32,116, 97,110,103,101,110,116, 44, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, + 32,118,101, 99, 51, 32,116,101,120,110,111,114,109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,110,111,114, +109, 97,108, 41, 13, 10,123, 13, 10, 9,118,101, 99, 51, 32, 66, 32, 61, 32,116, 97,110,103,101,110,116, 46,119, 32, 42, 32, 99, +114,111,115,115, 40,110,111,114,109, 97,108, 44, 32,116, 97,110,103,101,110,116, 46,120,121,122, 41, 59, 13, 10, 13, 10, 9,111, +117,116,110,111,114,109, 97,108, 32, 61, 32,116,101,120,110,111,114,109, 97,108, 46,120, 42,116, 97,110,103,101,110,116, 46,120, +121,122, 32, 43, 32,116,101,120,110,111,114,109, 97,108, 46,121, 42, 66, 32, 43, 32,116,101,120,110,111,114,109, 97,108, 46,122, + 42,110,111,114,109, 97,108, 59, 13, 10, 9,111,117,116,110,111,114,109, 97,108, 32, 61, 32,110,111,114,109, 97,108,105,122,101, + 40,111,117,116,110,111,114,109, 97,108, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,109,116,101,120, 95, 98,108,101, +110,100, 95,110,111,114,109, 97,108, 40,102,108,111, 97,116, 32,110,111,114,102, 97, 99, 44, 32,118,101, 99, 51, 32,110,111,114, +109, 97,108, 44, 32,118,101, 99, 51, 32,110,101,119,110,111,114,109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117, +116,110,111,114,109, 97,108, 41, 13, 10,123, 13, 10, 9,111,117,116,110,111,114,109, 97,108, 32, 61, 32, 40, 49, 46, 48, 32, 45, + 32,110,111,114,102, 97, 99, 41, 42,110,111,114,109, 97,108, 32, 43, 32,110,111,114,102, 97, 99, 42,110,101,119,110,111,114,109, + 97,108, 59, 13, 10, 9,111,117,116,110,111,114,109, 97,108, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,111,117,116,110, +111,114,109, 97,108, 41, 59, 13, 10,125, 13, 10, 13, 10, 47, 42, 42, 42, 42, 42, 42, 42, 32, 77, 65, 84, 69, 82, 73, 65, 76, 32, + 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 13, 10, 13, 10,118,111,105,100, 32,108, 97,109,112, 95,118,105,115,105, 98,105,108,105, +116,121, 95,115,117,110, 95,104,101,109,105, 40,118,101, 99, 51, 32,108, 97,109,112,118,101, 99, 44, 32,111,117,116, 32,118,101, + 99, 51, 32,108,118, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,100,105,115,116, 44, 32,111,117,116, 32,102,108,111, 97,116, + 32,118,105,115,105,102, 97, 99, 41, 13, 10,123, 13, 10, 9,108,118, 32, 61, 32,108, 97,109,112,118,101, 99, 59, 13, 10, 9,100, +105,115,116, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9,118,105,115,105,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 13, 10,125, 13, 10, + 13, 10,118,111,105,100, 32,108, 97,109,112, 95,118,105,115,105, 98,105,108,105,116,121, 95,111,116,104,101,114, 40,118,101, 99, + 51, 32, 99,111, 44, 32,118,101, 99, 51, 32,108, 97,109,112, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,108,118, 44, 32, +111,117,116, 32,102,108,111, 97,116, 32,100,105,115,116, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118,105,115,105,102, 97, + 99, 41, 13, 10,123, 13, 10, 9,108,118, 32, 61, 32, 99,111, 32, 45, 32,108, 97,109,112, 99,111, 59, 13, 10, 9,100,105,115,116, + 32, 61, 32,108,101,110,103,116,104, 40,108,118, 41, 59, 13, 10, 9,108,118, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, +108,118, 41, 59, 13, 10, 9,118,105,115,105,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, + 32,108, 97,109,112, 95,102, 97,108,108,111,102,102, 95,105,110,118,108,105,110,101, 97,114, 40,102,108,111, 97,116, 32,108, 97, +109,112,100,105,115,116, 44, 32,102,108,111, 97,116, 32,100,105,115,116, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118,105, +115,105,102, 97, 99, 41, 13, 10,123, 13, 10, 9,118,105,115,105,102, 97, 99, 32, 61, 32,108, 97,109,112,100,105,115,116, 47, 40, +108, 97,109,112,100,105,115,116, 32, 43, 32,100,105,115,116, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,108, 97,109, +112, 95,102, 97,108,108,111,102,102, 95,105,110,118,115,113,117, 97,114,101, 40,102,108,111, 97,116, 32,108, 97,109,112,100,105, +115,116, 44, 32,102,108,111, 97,116, 32,100,105,115,116, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118,105,115,105,102, 97, + 99, 41, 13, 10,123, 13, 10, 9,118,105,115,105,102, 97, 99, 32, 61, 32,108, 97,109,112,100,105,115,116, 47, 40,108, 97,109,112, +100,105,115,116, 32, 43, 32,100,105,115,116, 42,100,105,115,116, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,108, 97, +109,112, 95,102, 97,108,108,111,102,102, 95,115,108,105,100,101,114,115, 40,102,108,111, 97,116, 32,108, 97,109,112,100,105,115, +116, 44, 32,102,108,111, 97,116, 32,108,100, 49, 44, 32,102,108,111, 97,116, 32,108,100, 50, 44, 32,102,108,111, 97,116, 32,100, +105,115,116, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118,105,115,105,102, 97, 99, 41, 13, 10,123, 13, 10, 9,102,108,111, + 97,116, 32,108, 97,109,112,100,105,115,116,107,119, 32, 61, 32,108, 97,109,112,100,105,115,116, 42,108, 97,109,112,100,105,115, +116, 59, 13, 10, 13, 10, 9,118,105,115,105,102, 97, 99, 32, 61, 32,108, 97,109,112,100,105,115,116, 47, 40,108, 97,109,112,100, +105,115,116, 32, 43, 32,108,100, 49, 42,100,105,115,116, 41, 59, 13, 10, 9,118,105,115,105,102, 97, 99, 32, 42, 61, 32,108, 97, +109,112,100,105,115,116,107,119, 47, 40,108, 97,109,112,100,105,115,116,107,119, 32, 43, 32,108,100, 50, 42,100,105,115,116, 42, +100,105,115,116, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,108, 97,109,112, 95,102, 97,108,108,111,102,102, 95, 99, +117,114,118,101, 40,102,108,111, 97,116, 32,108, 97,109,112,100,105,115,116, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32, 99, +117,114,118,101,109, 97,112, 44, 32,102,108,111, 97,116, 32,100,105,115,116, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118, +105,115,105,102, 97, 99, 41, 13, 10,123, 13, 10, 9,118,105,115,105,102, 97, 99, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, + 40, 99,117,114,118,101,109, 97,112, 44, 32,118,101, 99, 50, 40,100,105,115,116, 47,108, 97,109,112,100,105,115,116, 44, 32, 48, + 46, 48, 41, 41, 46,120, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,108, 97,109,112, 95,118,105,115,105, 98,105,108,105, 116,121, 95,115,112,104,101,114,101, 40,102,108,111, 97,116, 32,108, 97,109,112,100,105,115,116, 44, 32,102,108,111, 97,116, 32, 100,105,115,116, 44, 32,102,108,111, 97,116, 32,118,105,115,105,102, 97, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111, -117,116,118,105,115,105,102, 97, 99, 41, 10,123, 10, 9,102,108,111, 97,116, 32,116, 61, 32,108, 97,109,112,100,105,115,116, 32, - 45, 32,100,105,115,116, 59, 10, 10, 9,111,117,116,118,105,115,105,102, 97, 99, 61, 32,118,105,115,105,102, 97, 99, 42,109, 97, -120, 40,116, 44, 32, 48, 46, 48, 41, 47,108, 97,109,112,100,105,115,116, 59, 10,125, 10, 10,118,111,105,100, 32,108, 97,109,112, - 95,118,105,115,105, 98,105,108,105,116,121, 95,115,112,111,116, 95,115,113,117, 97,114,101, 40,118,101, 99, 51, 32,108, 97,109, -112,118,101, 99, 44, 32,109, 97,116, 52, 32,108, 97,109,112,105,109, 97,116, 44, 32,118,101, 99, 51, 32,108,118, 44, 32,111,117, -116, 32,102,108,111, 97,116, 32,105,110,112,114, 41, 10,123, 10, 9,105,102, 40,100,111,116, 40,108,118, 44, 32,108, 97,109,112, -118,101, 99, 41, 32, 62, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,118,101, 99, 51, 32,108,118,114,111,116, 32, 61, 32, 40,108, 97, -109,112,105,109, 97,116, 42,118,101, 99, 52, 40,108,118, 44, 32, 48, 46, 48, 41, 41, 46,120,121,122, 59, 10, 9, 9,102,108,111, - 97,116, 32,120, 32, 61, 32,109, 97,120, 40, 97, 98,115, 40,108,118,114,111,116, 46,120, 47,108,118,114,111,116, 46,122, 41, 44, - 32, 97, 98,115, 40,108,118,114,111,116, 46,121, 47,108,118,114,111,116, 46,122, 41, 41, 59, 10, 10, 9, 9,105,110,112,114, 32, - 61, 32, 49, 46, 48, 47,115,113,114,116, 40, 49, 46, 48, 32, 43, 32,120, 42,120, 41, 59, 10, 9,125, 10, 9,101,108,115,101, 10, - 9, 9,105,110,112,114, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,108, 97,109,112, 95,118,105,115,105, 98, -105,108,105,116,121, 95,115,112,111,116, 95, 99,105,114, 99,108,101, 40,118,101, 99, 51, 32,108, 97,109,112,118,101, 99, 44, 32, -118,101, 99, 51, 32,108,118, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110,112,114, 41, 10,123, 10, 9,105,110,112,114, - 32, 61, 32,100,111,116, 40,108,118, 44, 32,108, 97,109,112,118,101, 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32,108, 97,109, -112, 95,118,105,115,105, 98,105,108,105,116,121, 95,115,112,111,116, 40,102,108,111, 97,116, 32,115,112,111,116,115,105, 44, 32, -102,108,111, 97,116, 32,115,112,111,116, 98,108, 44, 32,102,108,111, 97,116, 32,105,110,112,114, 44, 32,102,108,111, 97,116, 32, -118,105,115,105,102, 97, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118,105,115,105,102, 97, 99, 41, 10,123, - 10, 9,102,108,111, 97,116, 32,116, 32, 61, 32,115,112,111,116,115,105, 59, 10, 10, 9,105,102, 40,105,110,112,114, 32, 60, 61, - 32,116, 41, 32,123, 10, 9, 9,111,117,116,118,105,115,105,102, 97, 99, 32, 61, 32, 48, 46, 48, 59, 10, 9,125, 10, 9,101,108, -115,101, 32,123, 10, 9, 9,116, 32, 61, 32,105,110,112,114, 32, 45, 32,116, 59, 10, 10, 9, 9, 47, 42, 32,115,111,102,116, 32, - 97,114,101, 97, 32, 42, 47, 10, 9, 9,105,102, 40,115,112,111,116, 98,108, 32, 33, 61, 32, 48, 46, 48, 41, 10, 9, 9, 9,105, -110,112,114, 32, 42, 61, 32,115,109,111,111,116,104,115,116,101,112, 40, 48, 46, 48, 44, 32, 49, 46, 48, 44, 32,116, 47,115,112, -111,116, 98,108, 41, 59, 10, 10, 9, 9,111,117,116,118,105,115,105,102, 97, 99, 32, 61, 32,118,105,115,105,102, 97, 99, 42,105, -110,112,114, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,108, 97,109,112, 95,118,105,115,105, 98,105,108,105,116,121, 95, - 99,108, 97,109,112, 40,102,108,111, 97,116, 32,118,105,115,105,102, 97, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111, -117,116,118,105,115,105,102, 97, 99, 41, 10,123, 10, 9,111,117,116,118,105,115,105,102, 97, 99, 32, 61, 32, 40,118,105,115,105, -102, 97, 99, 32, 60, 32, 48, 46, 48, 48, 49, 41, 63, 32, 48, 46, 48, 58, 32,118,105,115,105,102, 97, 99, 59, 10,125, 10, 10,118, -111,105,100, 32,115,104, 97,100,101, 95,118,105,101,119, 40,118,101, 99, 51, 32, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, - 32,118,105,101,119, 41, 10,123, 10, 9, 47, 42, 32,104, 97,110,100,108,101, 32,112,101,114,115,112,101, 99,116,105,118,101, 47, -111,114,116,104,111,103,114, 97,112,104,105, 99, 32, 42, 47, 10, 9,118,105,101,119, 32, 61, 32, 40,103,108, 95, 80,114,111,106, -101, 99,116,105,111,110, 77, 97,116,114,105,120, 91, 51, 93, 91, 51, 93, 32, 61, 61, 32, 48, 46, 48, 41, 63, 32,110,111,114,109, - 97,108,105,122,101, 40, 99,111, 41, 58, 32,118,101, 99, 51, 40, 48, 46, 48, 44, 32, 48, 46, 48, 44, 32, 45, 49, 46, 48, 41, 59, - 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,116, 97,110,103,101,110,116, 95,118, 40,118,101, 99, 51, 32,108,118, - 44, 32,118,101, 99, 51, 32,116, 97,110,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118,110, 41, 10,123, 10, 9,118,101, 99, - 51, 32, 99, 32, 61, 32, 99,114,111,115,115, 40,108,118, 44, 32,116, 97,110,103, 41, 59, 10, 9,118,101, 99, 51, 32,118,110,111, -114, 32, 61, 32, 99,114,111,115,115, 40, 99, 44, 32,116, 97,110,103, 41, 59, 10, 10, 9,118,110, 32, 61, 32, 45,110,111,114,109, - 97,108,105,122,101, 40,118,110,111,114, 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,105,110,112, 40,118, -101, 99, 51, 32,118,110, 44, 32,118,101, 99, 51, 32,108,118, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110,112, 41, 10, -123, 10, 9,105,110,112, 32, 61, 32,100,111,116, 40,118,110, 44, 32,108,118, 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, - 97,100,101, 95,105,115, 95,110,111, 95,100,105,102,102,117,115,101, 40,111,117,116, 32,102,108,111, 97,116, 32,105,115, 41, 10, -123, 10, 9,105,115, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,105,115, 95,104,101, -109,105, 40,102,108,111, 97,116, 32,105,110,112, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,115, 41, 10,123, 10, 9,105, -115, 32, 61, 32, 48, 46, 53, 42,105,110,112, 32, 43, 32, 48, 46, 53, 59, 10,125, 10, 10,102,108,111, 97,116, 32, 97,114,101, 97, - 95,108, 97,109,112, 95,101,110,101,114,103,121, 40,109, 97,116, 52, 32, 97,114,101, 97, 44, 32,118,101, 99, 51, 32, 99,111, 44, - 32,118,101, 99, 51, 32,118,110, 41, 10,123, 10, 9,118,101, 99, 51, 32,118,101, 99, 91, 52, 93, 44, 32, 99, 91, 52, 93, 59, 10, - 9,102,108,111, 97,116, 32,114, 97,100, 91, 52, 93, 44, 32,102, 97, 99, 59, 10, 9, 10, 9,118,101, 99, 91, 48, 93, 32, 61, 32, -110,111,114,109, 97,108,105,122,101, 40, 99,111, 32, 45, 32, 97,114,101, 97, 91, 48, 93, 46,120,121,122, 41, 59, 10, 9,118,101, - 99, 91, 49, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99,111, 32, 45, 32, 97,114,101, 97, 91, 49, 93, 46,120,121, -122, 41, 59, 10, 9,118,101, 99, 91, 50, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99,111, 32, 45, 32, 97,114,101, - 97, 91, 50, 93, 46,120,121,122, 41, 59, 10, 9,118,101, 99, 91, 51, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99, -111, 32, 45, 32, 97,114,101, 97, 91, 51, 93, 46,120,121,122, 41, 59, 10, 10, 9, 99, 91, 48, 93, 32, 61, 32,110,111,114,109, 97, -108,105,122,101, 40, 99,114,111,115,115, 40,118,101, 99, 91, 48, 93, 44, 32,118,101, 99, 91, 49, 93, 41, 41, 59, 10, 9, 99, 91, - 49, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99,114,111,115,115, 40,118,101, 99, 91, 49, 93, 44, 32,118,101, 99, - 91, 50, 93, 41, 41, 59, 10, 9, 99, 91, 50, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99,114,111,115,115, 40,118, -101, 99, 91, 50, 93, 44, 32,118,101, 99, 91, 51, 93, 41, 41, 59, 10, 9, 99, 91, 51, 93, 32, 61, 32,110,111,114,109, 97,108,105, -122,101, 40, 99,114,111,115,115, 40,118,101, 99, 91, 51, 93, 44, 32,118,101, 99, 91, 48, 93, 41, 41, 59, 10, 10, 9,114, 97,100, - 91, 48, 93, 32, 61, 32, 97, 99,111,115, 40,100,111,116, 40,118,101, 99, 91, 48, 93, 44, 32,118,101, 99, 91, 49, 93, 41, 41, 59, - 10, 9,114, 97,100, 91, 49, 93, 32, 61, 32, 97, 99,111,115, 40,100,111,116, 40,118,101, 99, 91, 49, 93, 44, 32,118,101, 99, 91, - 50, 93, 41, 41, 59, 10, 9,114, 97,100, 91, 50, 93, 32, 61, 32, 97, 99,111,115, 40,100,111,116, 40,118,101, 99, 91, 50, 93, 44, - 32,118,101, 99, 91, 51, 93, 41, 41, 59, 10, 9,114, 97,100, 91, 51, 93, 32, 61, 32, 97, 99,111,115, 40,100,111,116, 40,118,101, - 99, 91, 51, 93, 44, 32,118,101, 99, 91, 48, 93, 41, 41, 59, 10, 10, 9,102, 97, 99, 61, 32, 32,114, 97,100, 91, 48, 93, 42,100, -111,116, 40,118,110, 44, 32, 99, 91, 48, 93, 41, 59, 10, 9,102, 97, 99, 43, 61, 32,114, 97,100, 91, 49, 93, 42,100,111,116, 40, -118,110, 44, 32, 99, 91, 49, 93, 41, 59, 10, 9,102, 97, 99, 43, 61, 32,114, 97,100, 91, 50, 93, 42,100,111,116, 40,118,110, 44, - 32, 99, 91, 50, 93, 41, 59, 10, 9,102, 97, 99, 43, 61, 32,114, 97,100, 91, 51, 93, 42,100,111,116, 40,118,110, 44, 32, 99, 91, - 51, 93, 41, 59, 10, 10, 9,114,101,116,117,114,110, 32,109, 97,120, 40,102, 97, 99, 44, 32, 48, 46, 48, 41, 59, 10,125, 10, 10, -118,111,105,100, 32,115,104, 97,100,101, 95,105,110,112, 95, 97,114,101, 97, 40,118,101, 99, 51, 32,112,111,115,105,116,105,111, -110, 44, 32,118,101, 99, 51, 32,108, 97,109,112, 99,111, 44, 32,118,101, 99, 51, 32,108, 97,109,112,118,101, 99, 44, 32,118,101, - 99, 51, 32,118,110, 44, 32,109, 97,116, 52, 32, 97,114,101, 97, 44, 32,102,108,111, 97,116, 32, 97,114,101, 97,115,105,122,101, - 44, 32,102,108,111, 97,116, 32,107, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110,112, 41, 10,123, 10, 9,118,101, 99, - 51, 32, 99,111, 32, 61, 32,112,111,115,105,116,105,111,110, 59, 10, 9,118,101, 99, 51, 32,118,101, 99, 32, 61, 32, 99,111, 32, - 45, 32,108, 97,109,112, 99,111, 59, 10, 10, 9,105,102, 40,100,111,116, 40,118,101, 99, 44, 32,108, 97,109,112,118,101, 99, 41, - 32, 60, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,105,110,112, 32, 61, 32, 48, 46, 48, 59, 10, 9,125, 10, 9,101,108,115,101, 32, -123, 10, 9, 9,102,108,111, 97,116, 32,105,110,116,101,110,115, 32, 61, 32, 97,114,101, 97, 95,108, 97,109,112, 95,101,110,101, -114,103,121, 40, 97,114,101, 97, 44, 32, 99,111, 44, 32,118,110, 41, 59, 10, 10, 9, 9,105,110,112, 32, 61, 32,112,111,119, 40, -105,110,116,101,110,115, 42, 97,114,101, 97,115,105,122,101, 44, 32,107, 41, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32, -115,104, 97,100,101, 95,100,105,102,102,117,115,101, 95,111,114,101,110, 95,110, 97,121,101,114, 40,102,108,111, 97,116, 32,110, -108, 44, 32,118,101, 99, 51, 32,110, 44, 32,118,101, 99, 51, 32,108, 44, 32,118,101, 99, 51, 32,118, 44, 32,102,108,111, 97,116, - 32,114,111,117,103,104, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,115, 41, 10,123, 10, 9,118,101, 99, 51, 32,104, 32, - 61, 32,110,111,114,109, 97,108,105,122,101, 40,118, 32, 43, 32,108, 41, 59, 10, 9,102,108,111, 97,116, 32,110,104, 32, 61, 32, -109, 97,120, 40,100,111,116, 40,110, 44, 32,104, 41, 44, 32, 48, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,110,118, 32, 61, - 32,109, 97,120, 40,100,111,116, 40,110, 44, 32,118, 41, 44, 32, 48, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,114,101, 97, -108,110,108, 32, 61, 32,100,111,116, 40,110, 44, 32,108, 41, 59, 10, 10, 9,105,102, 40,114,101, 97,108,110,108, 32, 60, 32, 48, - 46, 48, 41, 32,123, 10, 9, 9,105,115, 32, 61, 32, 48, 46, 48, 59, 10, 9,125, 10, 9,101,108,115,101, 32,105,102, 40,110,108, - 32, 60, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,105,115, 32, 61, 32, 48, 46, 48, 59, 10, 9,125, 10, 9,101,108,115,101, 32,123, - 10, 9, 9,102,108,111, 97,116, 32,118,104, 32, 61, 32,109, 97,120, 40,100,111,116, 40,118, 44, 32,104, 41, 44, 32, 48, 46, 48, - 41, 59, 10, 9, 9,102,108,111, 97,116, 32, 76,105,116, 95, 65, 32, 61, 32, 97, 99,111,115, 40,114,101, 97,108,110,108, 41, 59, - 10, 9, 9,102,108,111, 97,116, 32, 86,105,101,119, 95, 65, 32, 61, 32, 97, 99,111,115, 40,110,118, 41, 59, 10, 10, 9, 9,118, -101, 99, 51, 32, 76,105,116, 95, 66, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,108, 32, 45, 32,114,101, 97,108,110,108, - 42,110, 41, 59, 10, 9, 9,118,101, 99, 51, 32, 86,105,101,119, 95, 66, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,118, - 32, 45, 32,110,118, 42,110, 41, 59, 10, 10, 9, 9,102,108,111, 97,116, 32,116, 32, 61, 32,109, 97,120, 40,100,111,116, 40, 76, -105,116, 95, 66, 44, 32, 86,105,101,119, 95, 66, 41, 44, 32, 48, 46, 48, 41, 59, 10, 10, 9, 9,102,108,111, 97,116, 32, 97, 44, - 32, 98, 59, 10, 10, 9, 9,105,102, 40, 76,105,116, 95, 65, 32, 62, 32, 86,105,101,119, 95, 65, 41, 32,123, 10, 9, 9, 9, 97, - 32, 61, 32, 76,105,116, 95, 65, 59, 10, 9, 9, 9, 98, 32, 61, 32, 86,105,101,119, 95, 65, 59, 10, 9, 9,125, 10, 9, 9,101, -108,115,101, 32,123, 10, 9, 9, 9, 97, 32, 61, 32, 86,105,101,119, 95, 65, 59, 10, 9, 9, 9, 98, 32, 61, 32, 76,105,116, 95, - 65, 59, 10, 9, 9,125, 10, 10, 9, 9,102,108,111, 97,116, 32, 65, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40, 48, 46, 53, 42, 40, - 40,114,111,117,103,104, 42,114,111,117,103,104, 41, 47, 40, 40,114,111,117,103,104, 42,114,111,117,103,104, 41, 32, 43, 32, 48, - 46, 51, 51, 41, 41, 41, 59, 10, 9, 9,102,108,111, 97,116, 32, 66, 32, 61, 32, 48, 46, 52, 53, 42, 40, 40,114,111,117,103,104, - 42,114,111,117,103,104, 41, 47, 40, 40,114,111,117,103,104, 42,114,111,117,103,104, 41, 32, 43, 32, 48, 46, 48, 57, 41, 41, 59, - 10, 10, 9, 9, 98, 32, 42, 61, 32, 48, 46, 57, 53, 59, 10, 9, 9,105,115, 32, 61, 32,110,108, 42, 40, 65, 32, 43, 32, 40, 66, - 32, 42, 32,116, 32, 42, 32,115,105,110, 40, 97, 41, 32, 42, 32,116, 97,110, 40, 98, 41, 41, 41, 59, 10, 9,125, 10,125, 10, 10, -118,111,105,100, 32,115,104, 97,100,101, 95,100,105,102,102,117,115,101, 95,116,111,111,110, 40,118,101, 99, 51, 32,110, 44, 32, -118,101, 99, 51, 32,108, 44, 32,118,101, 99, 51, 32,118, 44, 32,102,108,111, 97,116, 32,115,105,122,101, 44, 32,102,108,111, 97, -116, 32,116,115,109,111,111,116,104, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,115, 41, 10,123, 10, 9,102,108,111, 97, -116, 32,114,115,108,116, 32, 61, 32,100,111,116, 40,110, 44, 32,108, 41, 59, 10, 9,102,108,111, 97,116, 32, 97,110,103, 32, 61, - 32, 97, 99,111,115, 40,114,115,108,116, 41, 59, 10, 10, 9,105,102, 40, 97,110,103, 32, 60, 32,115,105,122,101, 41, 32,105,115, - 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40, 97,110,103, 32, 62, 32, 40,115,105,122,101, 32, 43, 32,116, -115,109,111,111,116,104, 41, 32,124,124, 32,116,115,109,111,111,116,104, 32, 61, 61, 32, 48, 46, 48, 41, 32,105,115, 32, 61, 32, - 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,115, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40, 40, 97,110,103, 32, 45, 32,115,105, -122,101, 41, 47,116,115,109,111,111,116,104, 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,100,105,102,102, -117,115,101, 95,109,105,110,110, 97,101,114,116, 40,102,108,111, 97,116, 32,110,108, 44, 32,118,101, 99, 51, 32,110, 44, 32,118, -101, 99, 51, 32,118, 44, 32,102,108,111, 97,116, 32,100, 97,114,107,110,101,115,115, 44, 32,111,117,116, 32,102,108,111, 97,116, - 32,105,115, 41, 10,123, 10, 9,105,102, 40,110,108, 32, 60, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,105,115, 32, 61, 32, 48, - 46, 48, 59, 10, 9,125, 10, 9,101,108,115,101, 32,123, 10, 9, 9,102,108,111, 97,116, 32,110,118, 32, 61, 32,109, 97,120, 40, -100,111,116, 40,110, 44, 32,118, 41, 44, 32, 48, 46, 48, 41, 59, 10, 10, 9, 9,105,102, 40,100, 97,114,107,110,101,115,115, 32, - 60, 61, 32, 49, 46, 48, 41, 10, 9, 9, 9,105,115, 32, 61, 32,110,108, 42,112,111,119, 40,109, 97,120, 40,110,118, 42,110,108, - 44, 32, 48, 46, 49, 41, 44, 32,100, 97,114,107,110,101,115,115, 32, 45, 32, 49, 46, 48, 41, 59, 10, 9, 9,101,108,115,101, 10, - 9, 9, 9,105,115, 32, 61, 32,110,108, 42,112,111,119, 40, 49, 46, 48, 48, 48, 49, 32, 45, 32,110,118, 44, 32,100, 97,114,107, -110,101,115,115, 32, 45, 32, 49, 46, 48, 41, 59, 10, 9,125, 10,125, 10, 10,102,108,111, 97,116, 32,102,114,101,115,110,101,108, - 95,102, 97, 99, 40,118,101, 99, 51, 32,118,105,101,119, 44, 32,118,101, 99, 51, 32,118,110, 44, 32,102,108,111, 97,116, 32,103, -114, 97,100, 44, 32,102,108,111, 97,116, 32,102, 97, 99, 41, 10,123, 10, 9,102,108,111, 97,116, 32,116, 49, 44, 32,116, 50, 59, - 10, 9,102,108,111, 97,116, 32,102,102, 97, 99, 59, 10, 10, 9,105,102, 40,102, 97, 99, 61, 61, 48, 46, 48, 41, 32,123, 10, 9, - 9,102,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 10, 9,125, 10, 9,101,108,115,101, 32,123, 10, 9, 9,116, 49, 61, 32,100,111, -116, 40,118,105,101,119, 44, 32,118,110, 41, 59, 10, 9, 9,105,102, 40,116, 49, 62, 48, 46, 48, 41, 32, 32,116, 50, 61, 32, 49, - 46, 48, 43,116, 49, 59, 10, 9, 9,101,108,115,101, 32,116, 50, 61, 32, 49, 46, 48, 45,116, 49, 59, 10, 10, 9, 9,116, 50, 61, - 32,103,114, 97,100, 32, 43, 32, 40, 49, 46, 48, 45,103,114, 97,100, 41, 42,112,111,119, 40,116, 50, 44, 32,102, 97, 99, 41, 59, - 10, 10, 9, 9,105,102, 40,116, 50, 60, 48, 46, 48, 41, 32,102,102, 97, 99, 32, 61, 32, 48, 46, 48, 59, 10, 9, 9,101,108,115, -101, 32,105,102, 40,116, 50, 62, 49, 46, 48, 41, 32,102,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 32, -102,102, 97, 99, 32, 61, 32,116, 50, 59, 10, 9,125, 10, 10, 9,114,101,116,117,114,110, 32,102,102, 97, 99, 59, 10,125, 10, 10, -118,111,105,100, 32,115,104, 97,100,101, 95,100,105,102,102,117,115,101, 95,102,114,101,115,110,101,108, 40,118,101, 99, 51, 32, -118,110, 44, 32,118,101, 99, 51, 32,108,118, 44, 32,118,101, 99, 51, 32,118,105,101,119, 44, 32,102,108,111, 97,116, 32,102, 97, - 99, 95,105, 44, 32,102,108,111, 97,116, 32,102, 97, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,115, 41, 10,123, 10, - 9,105,115, 32, 61, 32,102,114,101,115,110,101,108, 95,102, 97, 99, 40,108,118, 44, 32,118,110, 44, 32,102, 97, 99, 95,105, 44, - 32,102, 97, 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95, 99,117, 98,105, 99, 40,102,108,111, 97,116, - 32,105,115, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,105,115, 41, 10,123, 10, 9,105,102, 40,105,115, 62, 48, - 46, 48, 32, 38, 38, 32,105,115, 60, 49, 46, 48, 41, 10, 9, 9,111,117,116,105,115, 61, 32,115,109,111,111,116,104,115,116,101, -112, 40, 48, 46, 48, 44, 32, 49, 46, 48, 44, 32,105,115, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,105,115, 61, 32, -105,115, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,118,105,115,105,102, 97, 99, 40,102,108,111, 97,116, 32, -105, 44, 32,102,108,111, 97,116, 32,118,105,115,105,102, 97, 99, 44, 32,102,108,111, 97,116, 32,114,101,102,108, 44, 32,111,117, -116, 32,102,108,111, 97,116, 32,111,117,116,105, 41, 10,123, 10, 9, 47, 42,105,102, 40,105, 32, 62, 32, 48, 46, 48, 41, 42, 47, - 10, 9, 9,111,117,116,105, 32, 61, 32,109, 97,120, 40,105, 42,118,105,115,105,102, 97, 99, 42,114,101,102,108, 44, 32, 48, 46, - 48, 41, 59, 10, 9, 47, 42,101,108,115,101, 10, 9, 9,111,117,116,105, 32, 61, 32,105, 59, 42, 47, 10,125, 10, 10,118,111,105, -100, 32,115,104, 97,100,101, 95,116, 97,110,103,101,110,116, 95,118, 95,115,112,101, 99, 40,118,101, 99, 51, 32,116, 97,110,103, - 44, 32,111,117,116, 32,118,101, 99, 51, 32,118,110, 41, 10,123, 10, 9,118,110, 32, 61, 32,116, 97,110,103, 59, 10,125, 10, 10, -118,111,105,100, 32,115,104, 97,100,101, 95, 97,100,100, 95,116,111, 95,100,105,102,102,117,115,101, 40,102,108,111, 97,116, 32, -105, 44, 32,118,101, 99, 51, 32,108, 97,109,112, 99,111,108, 44, 32,118,101, 99, 51, 32, 99,111,108, 44, 32,111,117,116, 32,118, -101, 99, 51, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,105,102, 40,105, 32, 62, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, - 99,111,108, 32, 61, 32,105, 42,108, 97,109,112, 99,111,108, 42, 99,111,108, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, - 99,111,108, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 44, 32, 48, 46, 48, 44, 32, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111, -105,100, 32,115,104, 97,100,101, 95,104,101,109,105, 95,115,112,101, 99, 40,118,101, 99, 51, 32,118,110, 44, 32,118,101, 99, 51, - 32,108,118, 44, 32,118,101, 99, 51, 32,118,105,101,119, 44, 32,102,108,111, 97,116, 32,115,112,101, 99, 44, 32,102,108,111, 97, -116, 32,104, 97,114,100, 44, 32,102,108,111, 97,116, 32,118,105,115,105,102, 97, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, - 32,116, 41, 10,123, 10, 9,108,118, 32, 43, 61, 32,118,105,101,119, 59, 10, 9,108,118, 32, 61, 32,110,111,114,109, 97,108,105, -122,101, 40,108,118, 41, 59, 10, 10, 9,116, 32, 61, 32,100,111,116, 40,118,110, 44, 32,108,118, 41, 59, 10, 9,116, 32, 61, 32, - 48, 46, 53, 42,116, 32, 43, 32, 48, 46, 53, 59, 10, 10, 9,116, 32, 61, 32,118,105,115,105,102, 97, 99, 42,115,112,101, 99, 42, -112,111,119, 40,116, 44, 32,104, 97,114,100, 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,112,104,111,110, -103, 95,115,112,101, 99, 40,118,101, 99, 51, 32,110, 44, 32,118,101, 99, 51, 32,108, 44, 32,118,101, 99, 51, 32,118, 44, 32,102, -108,111, 97,116, 32,104, 97,114,100, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,115,112,101, 99,102, 97, 99, 41, 10,123, 10, - 9,118,101, 99, 51, 32,104, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,108, 32, 43, 32,118, 41, 59, 10, 9,102,108,111, - 97,116, 32,114,115,108,116, 32, 61, 32,109, 97,120, 40,100,111,116, 40,104, 44, 32,110, 41, 44, 32, 48, 46, 48, 41, 59, 10, 10, - 9,115,112,101, 99,102, 97, 99, 32, 61, 32,112,111,119, 40,114,115,108,116, 44, 32,104, 97,114,100, 41, 59, 10,125, 10, 10,118, -111,105,100, 32,115,104, 97,100,101, 95, 99,111,111,107,116,111,114,114, 95,115,112,101, 99, 40,118,101, 99, 51, 32,110, 44, 32, -118,101, 99, 51, 32,108, 44, 32,118,101, 99, 51, 32,118, 44, 32,102,108,111, 97,116, 32,104, 97,114,100, 44, 32,111,117,116, 32, -102,108,111, 97,116, 32,115,112,101, 99,102, 97, 99, 41, 10,123, 10, 9,118,101, 99, 51, 32,104, 32, 61, 32,110,111,114,109, 97, -108,105,122,101, 40,118, 32, 43, 32,108, 41, 59, 10, 9,102,108,111, 97,116, 32,110,104, 32, 61, 32,100,111,116, 40,110, 44, 32, -104, 41, 59, 10, 10, 9,105,102, 40,110,104, 32, 60, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,115,112,101, 99,102, 97, 99, 32, 61, - 32, 48, 46, 48, 59, 10, 9,125, 10, 9,101,108,115,101, 32,123, 10, 9, 9,102,108,111, 97,116, 32,110,118, 32, 61, 32,109, 97, -120, 40,100,111,116, 40,110, 44, 32,118, 41, 44, 32, 48, 46, 48, 41, 59, 10, 9, 9,102,108,111, 97,116, 32,105, 32, 61, 32,112, -111,119, 40,110,104, 44, 32,104, 97,114,100, 41, 59, 10, 10, 9, 9,105, 32, 61, 32,105, 47, 40, 48, 46, 49, 43,110,118, 41, 59, - 10, 9, 9,115,112,101, 99,102, 97, 99, 32, 61, 32,105, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, - 95, 98,108,105,110,110, 95,115,112,101, 99, 40,118,101, 99, 51, 32,110, 44, 32,118,101, 99, 51, 32,108, 44, 32,118,101, 99, 51, - 32,118, 44, 32,102,108,111, 97,116, 32,114,101,102,114, 97, 99, 44, 32,102,108,111, 97,116, 32,115,112,101, 99, 95,112,111,119, -101,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,115,112,101, 99,102, 97, 99, 41, 10,123, 10, 9,105,102, 40,114,101,102, -114, 97, 99, 32, 60, 32, 49, 46, 48, 41, 32,123, 10, 9, 9,115,112,101, 99,102, 97, 99, 32, 61, 32, 48, 46, 48, 59, 10, 9,125, - 10, 9,101,108,115,101, 32,105,102, 40,115,112,101, 99, 95,112,111,119,101,114, 32, 61, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, - 9,115,112,101, 99,102, 97, 99, 32, 61, 32, 48, 46, 48, 59, 10, 9,125, 10, 9,101,108,115,101, 32,123, 10, 9, 9,105,102, 40, -115,112,101, 99, 95,112,111,119,101,114, 60, 49, 48, 48, 46, 48, 41, 10, 9, 9, 9,115,112,101, 99, 95,112,111,119,101,114, 61, - 32,115,113,114,116, 40, 49, 46, 48, 47,115,112,101, 99, 95,112,111,119,101,114, 41, 59, 10, 9, 9,101,108,115,101, 10, 9, 9, - 9,115,112,101, 99, 95,112,111,119,101,114, 61, 32, 49, 48, 46, 48, 47,115,112,101, 99, 95,112,111,119,101,114, 59, 10, 10, 9, - 9,118,101, 99, 51, 32,104, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,118, 32, 43, 32,108, 41, 59, 10, 9, 9,102,108, -111, 97,116, 32,110,104, 32, 61, 32,100,111,116, 40,110, 44, 32,104, 41, 59, 10, 9, 9,105,102, 40,110,104, 32, 60, 32, 48, 46, - 48, 41, 32,123, 10, 9, 9, 9,115,112,101, 99,102, 97, 99, 32, 61, 32, 48, 46, 48, 59, 10, 9, 9,125, 10, 9, 9,101,108,115, -101, 32,123, 10, 9, 9, 9,102,108,111, 97,116, 32,110,118, 32, 61, 32,109, 97,120, 40,100,111,116, 40,110, 44, 32,118, 41, 44, - 32, 48, 46, 48, 49, 41, 59, 10, 9, 9, 9,102,108,111, 97,116, 32,110,108, 32, 61, 32,100,111,116, 40,110, 44, 32,108, 41, 59, - 10, 9, 9, 9,105,102, 40,110,108, 32, 60, 61, 32, 48, 46, 48, 49, 41, 32,123, 10, 9, 9, 9, 9,115,112,101, 99,102, 97, 99, - 32, 61, 32, 48, 46, 48, 59, 10, 9, 9, 9,125, 10, 9, 9, 9,101,108,115,101, 32,123, 10, 9, 9, 9, 9,102,108,111, 97,116, - 32,118,104, 32, 61, 32,109, 97,120, 40,100,111,116, 40,118, 44, 32,104, 41, 44, 32, 48, 46, 48, 49, 41, 59, 10, 10, 9, 9, 9, - 9,102,108,111, 97,116, 32, 97, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9, 9, 9,102,108,111, 97,116, 32, 98, 32, 61, 32, 40, 50, - 46, 48, 42,110,104, 42,110,118, 41, 47,118,104, 59, 10, 9, 9, 9, 9,102,108,111, 97,116, 32, 99, 32, 61, 32, 40, 50, 46, 48, - 42,110,104, 42,110,108, 41, 47,118,104, 59, 10, 10, 9, 9, 9, 9,102,108,111, 97,116, 32,103, 32, 61, 32, 48, 46, 48, 59, 10, - 10, 9, 9, 9, 9,105,102, 40, 97, 32, 60, 32, 98, 32, 38, 38, 32, 97, 32, 60, 32, 99, 41, 32,103, 32, 61, 32, 97, 59, 10, 9, - 9, 9, 9,101,108,115,101, 32,105,102, 40, 98, 32, 60, 32, 97, 32, 38, 38, 32, 98, 32, 60, 32, 99, 41, 32,103, 32, 61, 32, 98, - 59, 10, 9, 9, 9, 9,101,108,115,101, 32,105,102, 40, 99, 32, 60, 32, 97, 32, 38, 38, 32, 99, 32, 60, 32, 98, 41, 32,103, 32, - 61, 32, 99, 59, 10, 10, 9, 9, 9, 9,102,108,111, 97,116, 32,112, 32, 61, 32,115,113,114,116, 40, 40, 40,114,101,102,114, 97, - 99, 32, 42, 32,114,101,102,114, 97, 99, 41, 43, 40,118,104, 42,118,104, 41, 45, 49, 46, 48, 41, 41, 59, 10, 9, 9, 9, 9,102, -108,111, 97,116, 32,102, 32, 61, 32, 40, 40, 40,112, 45,118,104, 41, 42, 40,112, 45,118,104, 41, 41, 47, 40, 40,112, 43,118,104, - 41, 42, 40,112, 43,118,104, 41, 41, 41, 42, 40, 49, 46, 48, 43, 40, 40, 40, 40,118,104, 42, 40,112, 43,118,104, 41, 41, 45, 49, - 46, 48, 41, 42, 40, 40,118,104, 42, 40,112, 43,118,104, 41, 41, 45, 49, 46, 48, 41, 41, 47, 40, 40, 40,118,104, 42, 40,112, 45, -118,104, 41, 41, 43, 49, 46, 48, 41, 42, 40, 40,118,104, 42, 40,112, 45,118,104, 41, 41, 43, 49, 46, 48, 41, 41, 41, 41, 59, 10, - 9, 9, 9, 9,102,108,111, 97,116, 32, 97,110,103, 32, 61, 32, 97, 99,111,115, 40,110,104, 41, 59, 10, 10, 9, 9, 9, 9,115, -112,101, 99,102, 97, 99, 32, 61, 32,109, 97,120, 40,102, 42,103, 42,101,120,112, 95, 98,108,101,110,100,101,114, 40, 40, 45, 40, - 97,110,103, 42, 97,110,103, 41, 47, 40, 50, 46, 48, 42,115,112,101, 99, 95,112,111,119,101,114, 42,115,112,101, 99, 95,112,111, -119,101,114, 41, 41, 41, 44, 32, 48, 46, 48, 41, 59, 10, 9, 9, 9,125, 10, 9, 9,125, 10, 9,125, 10,125, 10, 10,118,111,105, -100, 32,115,104, 97,100,101, 95,119, 97,114,100,105,115,111, 95,115,112,101, 99, 40,118,101, 99, 51, 32,110, 44, 32,118,101, 99, - 51, 32,108, 44, 32,118,101, 99, 51, 32,118, 44, 32,102,108,111, 97,116, 32,114,109,115, 44, 32,111,117,116, 32,102,108,111, 97, -116, 32,115,112,101, 99,102, 97, 99, 41, 10,123, 10, 9,118,101, 99, 51, 32,104, 32, 61, 32,110,111,114,109, 97,108,105,122,101, - 40,108, 32, 43, 32,118, 41, 59, 10, 9,102,108,111, 97,116, 32,110,104, 32, 61, 32,109, 97,120, 40,100,111,116, 40,110, 44, 32, -104, 41, 44, 32, 48, 46, 48, 48, 49, 41, 59, 10, 9,102,108,111, 97,116, 32,110,118, 32, 61, 32,109, 97,120, 40,100,111,116, 40, -110, 44, 32,118, 41, 44, 32, 48, 46, 48, 48, 49, 41, 59, 10, 9,102,108,111, 97,116, 32,110,108, 32, 61, 32,109, 97,120, 40,100, -111,116, 40,110, 44, 32,108, 41, 44, 32, 48, 46, 48, 48, 49, 41, 59, 10, 9,102,108,111, 97,116, 32, 97,110,103,108,101, 32, 61, - 32,116, 97,110, 40, 97, 99,111,115, 40,110,104, 41, 41, 59, 10, 9,102,108,111, 97,116, 32, 97,108,112,104, 97, 32, 61, 32,109, - 97,120, 40,114,109,115, 44, 32, 48, 46, 48, 48, 49, 41, 59, 10, 10, 9,115,112,101, 99,102, 97, 99, 61, 32,110,108, 32, 42, 32, - 40, 49, 46, 48, 47, 40, 52, 46, 48, 42, 77, 95, 80, 73, 42, 97,108,112,104, 97, 42, 97,108,112,104, 97, 41, 41, 42, 40,101,120, -112, 95, 98,108,101,110,100,101,114, 40, 45, 40, 97,110,103,108,101, 42, 97,110,103,108,101, 41, 47, 40, 97,108,112,104, 97, 42, - 97,108,112,104, 97, 41, 41, 47, 40,115,113,114,116, 40,110,118, 42,110,108, 41, 41, 41, 59, 10,125, 10, 10,118,111,105,100, 32, -115,104, 97,100,101, 95,116,111,111,110, 95,115,112,101, 99, 40,118,101, 99, 51, 32,110, 44, 32,118,101, 99, 51, 32,108, 44, 32, -118,101, 99, 51, 32,118, 44, 32,102,108,111, 97,116, 32,115,105,122,101, 44, 32,102,108,111, 97,116, 32,116,115,109,111,111,116, -104, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,115,112,101, 99,102, 97, 99, 41, 10,123, 10, 9,118,101, 99, 51, 32,104, 32, - 61, 32,110,111,114,109, 97,108,105,122,101, 40,108, 32, 43, 32,118, 41, 59, 10, 9,102,108,111, 97,116, 32,114,115,108,116, 32, - 61, 32,100,111,116, 40,104, 44, 32,110, 41, 59, 10, 9,102,108,111, 97,116, 32, 97,110,103, 32, 61, 32, 97, 99,111,115, 40,114, -115,108,116, 41, 59, 10, 10, 9,105,102, 40, 97,110,103, 32, 60, 32,115,105,122,101, 41, 32,114,115,108,116, 32, 61, 32, 49, 46, - 48, 59, 10, 9,101,108,115,101, 32,105,102, 40, 97,110,103, 32, 62, 61, 32, 40,115,105,122,101, 32, 43, 32,116,115,109,111,111, -116,104, 41, 32,124,124, 32,116,115,109,111,111,116,104, 32, 61, 61, 32, 48, 46, 48, 41, 32,114,115,108,116, 32, 61, 32, 48, 46, - 48, 59, 10, 9,101,108,115,101, 32,114,115,108,116, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40, 40, 97,110,103, 32, 45, 32,115,105, -122,101, 41, 47,116,115,109,111,111,116,104, 41, 59, 10, 10, 9,115,112,101, 99,102, 97, 99, 32, 61, 32,114,115,108,116, 59, 10, -125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,115,112,101, 99, 95, 97,114,101, 97, 95,105,110,112, 40,102,108,111, 97, +117,116,118,105,115,105,102, 97, 99, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,116, 61, 32,108, 97,109,112,100,105,115, +116, 32, 45, 32,100,105,115,116, 59, 13, 10, 13, 10, 9,111,117,116,118,105,115,105,102, 97, 99, 61, 32,118,105,115,105,102, 97, + 99, 42,109, 97,120, 40,116, 44, 32, 48, 46, 48, 41, 47,108, 97,109,112,100,105,115,116, 59, 13, 10,125, 13, 10, 13, 10,118,111, +105,100, 32,108, 97,109,112, 95,118,105,115,105, 98,105,108,105,116,121, 95,115,112,111,116, 95,115,113,117, 97,114,101, 40,118, +101, 99, 51, 32,108, 97,109,112,118,101, 99, 44, 32,109, 97,116, 52, 32,108, 97,109,112,105,109, 97,116, 44, 32,118,101, 99, 51, + 32,108,118, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110,112,114, 41, 13, 10,123, 13, 10, 9,105,102, 40,100,111,116, + 40,108,118, 44, 32,108, 97,109,112,118,101, 99, 41, 32, 62, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9,118,101, 99, 51, 32,108, +118,114,111,116, 32, 61, 32, 40,108, 97,109,112,105,109, 97,116, 42,118,101, 99, 52, 40,108,118, 44, 32, 48, 46, 48, 41, 41, 46, +120,121,122, 59, 13, 10, 9, 9,102,108,111, 97,116, 32,120, 32, 61, 32,109, 97,120, 40, 97, 98,115, 40,108,118,114,111,116, 46, +120, 47,108,118,114,111,116, 46,122, 41, 44, 32, 97, 98,115, 40,108,118,114,111,116, 46,121, 47,108,118,114,111,116, 46,122, 41, + 41, 59, 13, 10, 13, 10, 9, 9,105,110,112,114, 32, 61, 32, 49, 46, 48, 47,115,113,114,116, 40, 49, 46, 48, 32, 43, 32,120, 42, +120, 41, 59, 13, 10, 9,125, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,105,110,112,114, 32, 61, 32, 48, 46, 48, 59, 13, 10,125, + 13, 10, 13, 10,118,111,105,100, 32,108, 97,109,112, 95,118,105,115,105, 98,105,108,105,116,121, 95,115,112,111,116, 95, 99,105, +114, 99,108,101, 40,118,101, 99, 51, 32,108, 97,109,112,118,101, 99, 44, 32,118,101, 99, 51, 32,108,118, 44, 32,111,117,116, 32, +102,108,111, 97,116, 32,105,110,112,114, 41, 13, 10,123, 13, 10, 9,105,110,112,114, 32, 61, 32,100,111,116, 40,108,118, 44, 32, +108, 97,109,112,118,101, 99, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,108, 97,109,112, 95,118,105,115,105, 98,105, +108,105,116,121, 95,115,112,111,116, 40,102,108,111, 97,116, 32,115,112,111,116,115,105, 44, 32,102,108,111, 97,116, 32,115,112, +111,116, 98,108, 44, 32,102,108,111, 97,116, 32,105,110,112,114, 44, 32,102,108,111, 97,116, 32,118,105,115,105,102, 97, 99, 44, + 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118,105,115,105,102, 97, 99, 41, 13, 10,123, 13, 10, 9,102,108,111, 97, +116, 32,116, 32, 61, 32,115,112,111,116,115,105, 59, 13, 10, 13, 10, 9,105,102, 40,105,110,112,114, 32, 60, 61, 32,116, 41, 32, +123, 13, 10, 9, 9,111,117,116,118,105,115,105,102, 97, 99, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,125, 13, 10, 9,101,108,115, +101, 32,123, 13, 10, 9, 9,116, 32, 61, 32,105,110,112,114, 32, 45, 32,116, 59, 13, 10, 13, 10, 9, 9, 47, 42, 32,115,111,102, +116, 32, 97,114,101, 97, 32, 42, 47, 13, 10, 9, 9,105,102, 40,115,112,111,116, 98,108, 32, 33, 61, 32, 48, 46, 48, 41, 13, 10, + 9, 9, 9,105,110,112,114, 32, 42, 61, 32,115,109,111,111,116,104,115,116,101,112, 40, 48, 46, 48, 44, 32, 49, 46, 48, 44, 32, +116, 47,115,112,111,116, 98,108, 41, 59, 13, 10, 13, 10, 9, 9,111,117,116,118,105,115,105,102, 97, 99, 32, 61, 32,118,105,115, +105,102, 97, 99, 42,105,110,112,114, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,108, 97,109,112, 95,118, +105,115,105, 98,105,108,105,116,121, 95, 99,108, 97,109,112, 40,102,108,111, 97,116, 32,118,105,115,105,102, 97, 99, 44, 32,111, +117,116, 32,102,108,111, 97,116, 32,111,117,116,118,105,115,105,102, 97, 99, 41, 13, 10,123, 13, 10, 9,111,117,116,118,105,115, +105,102, 97, 99, 32, 61, 32, 40,118,105,115,105,102, 97, 99, 32, 60, 32, 48, 46, 48, 48, 49, 41, 63, 32, 48, 46, 48, 58, 32,118, +105,115,105,102, 97, 99, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,118,105,101,119, 40,118,101, + 99, 51, 32, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118,105,101,119, 41, 13, 10,123, 13, 10, 9, 47, 42, 32,104, 97, +110,100,108,101, 32,112,101,114,115,112,101, 99,116,105,118,101, 47,111,114,116,104,111,103,114, 97,112,104,105, 99, 32, 42, 47, + 13, 10, 9,118,105,101,119, 32, 61, 32, 40,103,108, 95, 80,114,111,106,101, 99,116,105,111,110, 77, 97,116,114,105,120, 91, 51, + 93, 91, 51, 93, 32, 61, 61, 32, 48, 46, 48, 41, 63, 32,110,111,114,109, 97,108,105,122,101, 40, 99,111, 41, 58, 32,118,101, 99, + 51, 40, 48, 46, 48, 44, 32, 48, 46, 48, 44, 32, 45, 49, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, + 97,100,101, 95,116, 97,110,103,101,110,116, 95,118, 40,118,101, 99, 51, 32,108,118, 44, 32,118,101, 99, 51, 32,116, 97,110,103, + 44, 32,111,117,116, 32,118,101, 99, 51, 32,118,110, 41, 13, 10,123, 13, 10, 9,118,101, 99, 51, 32, 99, 32, 61, 32, 99,114,111, +115,115, 40,108,118, 44, 32,116, 97,110,103, 41, 59, 13, 10, 9,118,101, 99, 51, 32,118,110,111,114, 32, 61, 32, 99,114,111,115, +115, 40, 99, 44, 32,116, 97,110,103, 41, 59, 13, 10, 13, 10, 9,118,110, 32, 61, 32, 45,110,111,114,109, 97,108,105,122,101, 40, +118,110,111,114, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,105,110,112, 40,118,101, 99, 51, + 32,118,110, 44, 32,118,101, 99, 51, 32,108,118, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110,112, 41, 13, 10,123, 13, + 10, 9,105,110,112, 32, 61, 32,100,111,116, 40,118,110, 44, 32,108,118, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32, +115,104, 97,100,101, 95,105,115, 95,110,111, 95,100,105,102,102,117,115,101, 40,111,117,116, 32,102,108,111, 97,116, 32,105,115, + 41, 13, 10,123, 13, 10, 9,105,115, 32, 61, 32, 48, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100, +101, 95,105,115, 95,104,101,109,105, 40,102,108,111, 97,116, 32,105,110,112, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105, +115, 41, 13, 10,123, 13, 10, 9,105,115, 32, 61, 32, 48, 46, 53, 42,105,110,112, 32, 43, 32, 48, 46, 53, 59, 13, 10,125, 13, 10, + 13, 10,102,108,111, 97,116, 32, 97,114,101, 97, 95,108, 97,109,112, 95,101,110,101,114,103,121, 40,109, 97,116, 52, 32, 97,114, +101, 97, 44, 32,118,101, 99, 51, 32, 99,111, 44, 32,118,101, 99, 51, 32,118,110, 41, 13, 10,123, 13, 10, 9,118,101, 99, 51, 32, +118,101, 99, 91, 52, 93, 44, 32, 99, 91, 52, 93, 59, 13, 10, 9,102,108,111, 97,116, 32,114, 97,100, 91, 52, 93, 44, 32,102, 97, + 99, 59, 13, 10, 9, 13, 10, 9,118,101, 99, 91, 48, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99,111, 32, 45, 32, + 97,114,101, 97, 91, 48, 93, 46,120,121,122, 41, 59, 13, 10, 9,118,101, 99, 91, 49, 93, 32, 61, 32,110,111,114,109, 97,108,105, +122,101, 40, 99,111, 32, 45, 32, 97,114,101, 97, 91, 49, 93, 46,120,121,122, 41, 59, 13, 10, 9,118,101, 99, 91, 50, 93, 32, 61, + 32,110,111,114,109, 97,108,105,122,101, 40, 99,111, 32, 45, 32, 97,114,101, 97, 91, 50, 93, 46,120,121,122, 41, 59, 13, 10, 9, +118,101, 99, 91, 51, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99,111, 32, 45, 32, 97,114,101, 97, 91, 51, 93, 46, +120,121,122, 41, 59, 13, 10, 13, 10, 9, 99, 91, 48, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99,114,111,115,115, + 40,118,101, 99, 91, 48, 93, 44, 32,118,101, 99, 91, 49, 93, 41, 41, 59, 13, 10, 9, 99, 91, 49, 93, 32, 61, 32,110,111,114,109, + 97,108,105,122,101, 40, 99,114,111,115,115, 40,118,101, 99, 91, 49, 93, 44, 32,118,101, 99, 91, 50, 93, 41, 41, 59, 13, 10, 9, + 99, 91, 50, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99,114,111,115,115, 40,118,101, 99, 91, 50, 93, 44, 32,118, +101, 99, 91, 51, 93, 41, 41, 59, 13, 10, 9, 99, 91, 51, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99,114,111,115, +115, 40,118,101, 99, 91, 51, 93, 44, 32,118,101, 99, 91, 48, 93, 41, 41, 59, 13, 10, 13, 10, 9,114, 97,100, 91, 48, 93, 32, 61, + 32, 97, 99,111,115, 40,100,111,116, 40,118,101, 99, 91, 48, 93, 44, 32,118,101, 99, 91, 49, 93, 41, 41, 59, 13, 10, 9,114, 97, +100, 91, 49, 93, 32, 61, 32, 97, 99,111,115, 40,100,111,116, 40,118,101, 99, 91, 49, 93, 44, 32,118,101, 99, 91, 50, 93, 41, 41, + 59, 13, 10, 9,114, 97,100, 91, 50, 93, 32, 61, 32, 97, 99,111,115, 40,100,111,116, 40,118,101, 99, 91, 50, 93, 44, 32,118,101, + 99, 91, 51, 93, 41, 41, 59, 13, 10, 9,114, 97,100, 91, 51, 93, 32, 61, 32, 97, 99,111,115, 40,100,111,116, 40,118,101, 99, 91, + 51, 93, 44, 32,118,101, 99, 91, 48, 93, 41, 41, 59, 13, 10, 13, 10, 9,102, 97, 99, 61, 32, 32,114, 97,100, 91, 48, 93, 42,100, +111,116, 40,118,110, 44, 32, 99, 91, 48, 93, 41, 59, 13, 10, 9,102, 97, 99, 43, 61, 32,114, 97,100, 91, 49, 93, 42,100,111,116, + 40,118,110, 44, 32, 99, 91, 49, 93, 41, 59, 13, 10, 9,102, 97, 99, 43, 61, 32,114, 97,100, 91, 50, 93, 42,100,111,116, 40,118, +110, 44, 32, 99, 91, 50, 93, 41, 59, 13, 10, 9,102, 97, 99, 43, 61, 32,114, 97,100, 91, 51, 93, 42,100,111,116, 40,118,110, 44, + 32, 99, 91, 51, 93, 41, 59, 13, 10, 13, 10, 9,114,101,116,117,114,110, 32,109, 97,120, 40,102, 97, 99, 44, 32, 48, 46, 48, 41, + 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,105,110,112, 95, 97,114,101, 97, 40,118,101, 99, 51, + 32,112,111,115,105,116,105,111,110, 44, 32,118,101, 99, 51, 32,108, 97,109,112, 99,111, 44, 32,118,101, 99, 51, 32,108, 97,109, +112,118,101, 99, 44, 32,118,101, 99, 51, 32,118,110, 44, 32,109, 97,116, 52, 32, 97,114,101, 97, 44, 32,102,108,111, 97,116, 32, + 97,114,101, 97,115,105,122,101, 44, 32,102,108,111, 97,116, 32,107, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110,112, + 41, 13, 10,123, 13, 10, 9,118,101, 99, 51, 32, 99,111, 32, 61, 32,112,111,115,105,116,105,111,110, 59, 13, 10, 9,118,101, 99, + 51, 32,118,101, 99, 32, 61, 32, 99,111, 32, 45, 32,108, 97,109,112, 99,111, 59, 13, 10, 13, 10, 9,105,102, 40,100,111,116, 40, +118,101, 99, 44, 32,108, 97,109,112,118,101, 99, 41, 32, 60, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9,105,110,112, 32, 61, 32, + 48, 46, 48, 59, 13, 10, 9,125, 13, 10, 9,101,108,115,101, 32,123, 13, 10, 9, 9,102,108,111, 97,116, 32,105,110,116,101,110, +115, 32, 61, 32, 97,114,101, 97, 95,108, 97,109,112, 95,101,110,101,114,103,121, 40, 97,114,101, 97, 44, 32, 99,111, 44, 32,118, +110, 41, 59, 13, 10, 13, 10, 9, 9,105,110,112, 32, 61, 32,112,111,119, 40,105,110,116,101,110,115, 42, 97,114,101, 97,115,105, +122,101, 44, 32,107, 41, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,100,105,102, +102,117,115,101, 95,111,114,101,110, 95,110, 97,121,101,114, 40,102,108,111, 97,116, 32,110,108, 44, 32,118,101, 99, 51, 32,110, + 44, 32,118,101, 99, 51, 32,108, 44, 32,118,101, 99, 51, 32,118, 44, 32,102,108,111, 97,116, 32,114,111,117,103,104, 44, 32,111, +117,116, 32,102,108,111, 97,116, 32,105,115, 41, 13, 10,123, 13, 10, 9,118,101, 99, 51, 32,104, 32, 61, 32,110,111,114,109, 97, +108,105,122,101, 40,118, 32, 43, 32,108, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,110,104, 32, 61, 32,109, 97,120, 40,100,111, +116, 40,110, 44, 32,104, 41, 44, 32, 48, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,110,118, 32, 61, 32,109, 97,120, 40, +100,111,116, 40,110, 44, 32,118, 41, 44, 32, 48, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,114,101, 97,108,110,108, 32, + 61, 32,100,111,116, 40,110, 44, 32,108, 41, 59, 13, 10, 13, 10, 9,105,102, 40,114,101, 97,108,110,108, 32, 60, 32, 48, 46, 48, + 41, 32,123, 13, 10, 9, 9,105,115, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,125, 13, 10, 9,101,108,115,101, 32,105,102, 40,110, +108, 32, 60, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9,105,115, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,125, 13, 10, 9,101,108, +115,101, 32,123, 13, 10, 9, 9,102,108,111, 97,116, 32,118,104, 32, 61, 32,109, 97,120, 40,100,111,116, 40,118, 44, 32,104, 41, + 44, 32, 48, 46, 48, 41, 59, 13, 10, 9, 9,102,108,111, 97,116, 32, 76,105,116, 95, 65, 32, 61, 32, 97, 99,111,115, 40,114,101, + 97,108,110,108, 41, 59, 13, 10, 9, 9,102,108,111, 97,116, 32, 86,105,101,119, 95, 65, 32, 61, 32, 97, 99,111,115, 40,110,118, + 41, 59, 13, 10, 13, 10, 9, 9,118,101, 99, 51, 32, 76,105,116, 95, 66, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,108, + 32, 45, 32,114,101, 97,108,110,108, 42,110, 41, 59, 13, 10, 9, 9,118,101, 99, 51, 32, 86,105,101,119, 95, 66, 32, 61, 32,110, +111,114,109, 97,108,105,122,101, 40,118, 32, 45, 32,110,118, 42,110, 41, 59, 13, 10, 13, 10, 9, 9,102,108,111, 97,116, 32,116, + 32, 61, 32,109, 97,120, 40,100,111,116, 40, 76,105,116, 95, 66, 44, 32, 86,105,101,119, 95, 66, 41, 44, 32, 48, 46, 48, 41, 59, + 13, 10, 13, 10, 9, 9,102,108,111, 97,116, 32, 97, 44, 32, 98, 59, 13, 10, 13, 10, 9, 9,105,102, 40, 76,105,116, 95, 65, 32, + 62, 32, 86,105,101,119, 95, 65, 41, 32,123, 13, 10, 9, 9, 9, 97, 32, 61, 32, 76,105,116, 95, 65, 59, 13, 10, 9, 9, 9, 98, + 32, 61, 32, 86,105,101,119, 95, 65, 59, 13, 10, 9, 9,125, 13, 10, 9, 9,101,108,115,101, 32,123, 13, 10, 9, 9, 9, 97, 32, + 61, 32, 86,105,101,119, 95, 65, 59, 13, 10, 9, 9, 9, 98, 32, 61, 32, 76,105,116, 95, 65, 59, 13, 10, 9, 9,125, 13, 10, 13, + 10, 9, 9,102,108,111, 97,116, 32, 65, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40, 48, 46, 53, 42, 40, 40,114,111,117,103,104, 42, +114,111,117,103,104, 41, 47, 40, 40,114,111,117,103,104, 42,114,111,117,103,104, 41, 32, 43, 32, 48, 46, 51, 51, 41, 41, 41, 59, + 13, 10, 9, 9,102,108,111, 97,116, 32, 66, 32, 61, 32, 48, 46, 52, 53, 42, 40, 40,114,111,117,103,104, 42,114,111,117,103,104, + 41, 47, 40, 40,114,111,117,103,104, 42,114,111,117,103,104, 41, 32, 43, 32, 48, 46, 48, 57, 41, 41, 59, 13, 10, 13, 10, 9, 9, + 98, 32, 42, 61, 32, 48, 46, 57, 53, 59, 13, 10, 9, 9,105,115, 32, 61, 32,110,108, 42, 40, 65, 32, 43, 32, 40, 66, 32, 42, 32, +116, 32, 42, 32,115,105,110, 40, 97, 41, 32, 42, 32,116, 97,110, 40, 98, 41, 41, 41, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, + 10,118,111,105,100, 32,115,104, 97,100,101, 95,100,105,102,102,117,115,101, 95,116,111,111,110, 40,118,101, 99, 51, 32,110, 44, + 32,118,101, 99, 51, 32,108, 44, 32,118,101, 99, 51, 32,118, 44, 32,102,108,111, 97,116, 32,115,105,122,101, 44, 32,102,108,111, + 97,116, 32,116,115,109,111,111,116,104, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,115, 41, 13, 10,123, 13, 10, 9,102, +108,111, 97,116, 32,114,115,108,116, 32, 61, 32,100,111,116, 40,110, 44, 32,108, 41, 59, 13, 10, 9,102,108,111, 97,116, 32, 97, +110,103, 32, 61, 32, 97, 99,111,115, 40,114,115,108,116, 41, 59, 13, 10, 13, 10, 9,105,102, 40, 97,110,103, 32, 60, 32,115,105, +122,101, 41, 32,105,115, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9,101,108,115,101, 32,105,102, 40, 97,110,103, 32, 62, 32, 40,115, +105,122,101, 32, 43, 32,116,115,109,111,111,116,104, 41, 32,124,124, 32,116,115,109,111,111,116,104, 32, 61, 61, 32, 48, 46, 48, + 41, 32,105,115, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,101,108,115,101, 32,105,115, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40, 40, + 97,110,103, 32, 45, 32,115,105,122,101, 41, 47,116,115,109,111,111,116,104, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, + 32,115,104, 97,100,101, 95,100,105,102,102,117,115,101, 95,109,105,110,110, 97,101,114,116, 40,102,108,111, 97,116, 32,110,108, + 44, 32,118,101, 99, 51, 32,110, 44, 32,118,101, 99, 51, 32,118, 44, 32,102,108,111, 97,116, 32,100, 97,114,107,110,101,115,115, + 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,115, 41, 13, 10,123, 13, 10, 9,105,102, 40,110,108, 32, 60, 61, 32, 48, 46, + 48, 41, 32,123, 13, 10, 9, 9,105,115, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,125, 13, 10, 9,101,108,115,101, 32,123, 13, 10, + 9, 9,102,108,111, 97,116, 32,110,118, 32, 61, 32,109, 97,120, 40,100,111,116, 40,110, 44, 32,118, 41, 44, 32, 48, 46, 48, 41, + 59, 13, 10, 13, 10, 9, 9,105,102, 40,100, 97,114,107,110,101,115,115, 32, 60, 61, 32, 49, 46, 48, 41, 13, 10, 9, 9, 9,105, +115, 32, 61, 32,110,108, 42,112,111,119, 40,109, 97,120, 40,110,118, 42,110,108, 44, 32, 48, 46, 49, 41, 44, 32,100, 97,114,107, +110,101,115,115, 32, 45, 32, 49, 46, 48, 41, 59, 13, 10, 9, 9,101,108,115,101, 13, 10, 9, 9, 9,105,115, 32, 61, 32,110,108, + 42,112,111,119, 40, 49, 46, 48, 48, 48, 49, 32, 45, 32,110,118, 44, 32,100, 97,114,107,110,101,115,115, 32, 45, 32, 49, 46, 48, + 41, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, 10,102,108,111, 97,116, 32,102,114,101,115,110,101,108, 95,102, 97, 99, 40,118, +101, 99, 51, 32,118,105,101,119, 44, 32,118,101, 99, 51, 32,118,110, 44, 32,102,108,111, 97,116, 32,103,114, 97,100, 44, 32,102, +108,111, 97,116, 32,102, 97, 99, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,116, 49, 44, 32,116, 50, 59, 13, 10, 9,102, +108,111, 97,116, 32,102,102, 97, 99, 59, 13, 10, 13, 10, 9,105,102, 40,102, 97, 99, 61, 61, 48, 46, 48, 41, 32,123, 13, 10, 9, + 9,102,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9,125, 13, 10, 9,101,108,115,101, 32,123, 13, 10, 9, 9,116, 49, 61, + 32,100,111,116, 40,118,105,101,119, 44, 32,118,110, 41, 59, 13, 10, 9, 9,105,102, 40,116, 49, 62, 48, 46, 48, 41, 32, 32,116, + 50, 61, 32, 49, 46, 48, 43,116, 49, 59, 13, 10, 9, 9,101,108,115,101, 32,116, 50, 61, 32, 49, 46, 48, 45,116, 49, 59, 13, 10, + 13, 10, 9, 9,116, 50, 61, 32,103,114, 97,100, 32, 43, 32, 40, 49, 46, 48, 45,103,114, 97,100, 41, 42,112,111,119, 40,116, 50, + 44, 32,102, 97, 99, 41, 59, 13, 10, 13, 10, 9, 9,105,102, 40,116, 50, 60, 48, 46, 48, 41, 32,102,102, 97, 99, 32, 61, 32, 48, + 46, 48, 59, 13, 10, 9, 9,101,108,115,101, 32,105,102, 40,116, 50, 62, 49, 46, 48, 41, 32,102,102, 97, 99, 32, 61, 32, 49, 46, + 48, 59, 13, 10, 9, 9,101,108,115,101, 32,102,102, 97, 99, 32, 61, 32,116, 50, 59, 13, 10, 9,125, 13, 10, 13, 10, 9,114,101, +116,117,114,110, 32,102,102, 97, 99, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,100,105,102,102, +117,115,101, 95,102,114,101,115,110,101,108, 40,118,101, 99, 51, 32,118,110, 44, 32,118,101, 99, 51, 32,108,118, 44, 32,118,101, + 99, 51, 32,118,105,101,119, 44, 32,102,108,111, 97,116, 32,102, 97, 99, 95,105, 44, 32,102,108,111, 97,116, 32,102, 97, 99, 44, + 32,111,117,116, 32,102,108,111, 97,116, 32,105,115, 41, 13, 10,123, 13, 10, 9,105,115, 32, 61, 32,102,114,101,115,110,101,108, + 95,102, 97, 99, 40,108,118, 44, 32,118,110, 44, 32,102, 97, 99, 95,105, 44, 32,102, 97, 99, 41, 59, 13, 10,125, 13, 10, 13, 10, +118,111,105,100, 32,115,104, 97,100,101, 95, 99,117, 98,105, 99, 40,102,108,111, 97,116, 32,105,115, 44, 32,111,117,116, 32,102, +108,111, 97,116, 32,111,117,116,105,115, 41, 13, 10,123, 13, 10, 9,105,102, 40,105,115, 62, 48, 46, 48, 32, 38, 38, 32,105,115, + 60, 49, 46, 48, 41, 13, 10, 9, 9,111,117,116,105,115, 61, 32,115,109,111,111,116,104,115,116,101,112, 40, 48, 46, 48, 44, 32, + 49, 46, 48, 44, 32,105,115, 41, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117,116,105,115, 61, 32,105,115, 59, 13, 10, +125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,118,105,115,105,102, 97, 99, 40,102,108,111, 97,116, 32,105, 44, + 32,102,108,111, 97,116, 32,118,105,115,105,102, 97, 99, 44, 32,102,108,111, 97,116, 32,114,101,102,108, 44, 32,111,117,116, 32, +102,108,111, 97,116, 32,111,117,116,105, 41, 13, 10,123, 13, 10, 9, 47, 42,105,102, 40,105, 32, 62, 32, 48, 46, 48, 41, 42, 47, + 13, 10, 9, 9,111,117,116,105, 32, 61, 32,109, 97,120, 40,105, 42,118,105,115,105,102, 97, 99, 42,114,101,102,108, 44, 32, 48, + 46, 48, 41, 59, 13, 10, 9, 47, 42,101,108,115,101, 13, 10, 9, 9,111,117,116,105, 32, 61, 32,105, 59, 42, 47, 13, 10,125, 13, + 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,116, 97,110,103,101,110,116, 95,118, 95,115,112,101, 99, 40,118,101, 99, + 51, 32,116, 97,110,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118,110, 41, 13, 10,123, 13, 10, 9,118,110, 32, 61, 32,116, + 97,110,103, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95, 97,100,100, 95,116,111, 95,100,105,102, +102,117,115,101, 40,102,108,111, 97,116, 32,105, 44, 32,118,101, 99, 51, 32,108, 97,109,112, 99,111,108, 44, 32,118,101, 99, 51, + 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,105,102, 40,105, + 32, 62, 32, 48, 46, 48, 41, 13, 10, 9, 9,111,117,116, 99,111,108, 32, 61, 32,105, 42,108, 97,109,112, 99,111,108, 42, 99,111, +108, 59, 13, 10, 9,101,108,115,101, 13, 10, 9, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 44, 32, + 48, 46, 48, 44, 32, 48, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,104,101,109,105, + 95,115,112,101, 99, 40,118,101, 99, 51, 32,118,110, 44, 32,118,101, 99, 51, 32,108,118, 44, 32,118,101, 99, 51, 32,118,105,101, +119, 44, 32,102,108,111, 97,116, 32,115,112,101, 99, 44, 32,102,108,111, 97,116, 32,104, 97,114,100, 44, 32,102,108,111, 97,116, + 32,118,105,115,105,102, 97, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,116, 41, 13, 10,123, 13, 10, 9,108,118, 32, 43, + 61, 32,118,105,101,119, 59, 13, 10, 9,108,118, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,108,118, 41, 59, 13, 10, 13, + 10, 9,116, 32, 61, 32,100,111,116, 40,118,110, 44, 32,108,118, 41, 59, 13, 10, 9,116, 32, 61, 32, 48, 46, 53, 42,116, 32, 43, + 32, 48, 46, 53, 59, 13, 10, 13, 10, 9,116, 32, 61, 32,118,105,115,105,102, 97, 99, 42,115,112,101, 99, 42,112,111,119, 40,116, + 44, 32,104, 97,114,100, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,112,104,111,110,103, 95, +115,112,101, 99, 40,118,101, 99, 51, 32,110, 44, 32,118,101, 99, 51, 32,108, 44, 32,118,101, 99, 51, 32,118, 44, 32,102,108,111, + 97,116, 32,104, 97,114,100, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,115,112,101, 99,102, 97, 99, 41, 13, 10,123, 13, 10, + 9,118,101, 99, 51, 32,104, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,108, 32, 43, 32,118, 41, 59, 13, 10, 9,102,108, +111, 97,116, 32,114,115,108,116, 32, 61, 32,109, 97,120, 40,100,111,116, 40,104, 44, 32,110, 41, 44, 32, 48, 46, 48, 41, 59, 13, + 10, 13, 10, 9,115,112,101, 99,102, 97, 99, 32, 61, 32,112,111,119, 40,114,115,108,116, 44, 32,104, 97,114,100, 41, 59, 13, 10, +125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95, 99,111,111,107,116,111,114,114, 95,115,112,101, 99, 40,118,101, + 99, 51, 32,110, 44, 32,118,101, 99, 51, 32,108, 44, 32,118,101, 99, 51, 32,118, 44, 32,102,108,111, 97,116, 32,104, 97,114,100, + 44, 32,111,117,116, 32,102,108,111, 97,116, 32,115,112,101, 99,102, 97, 99, 41, 13, 10,123, 13, 10, 9,118,101, 99, 51, 32,104, + 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,118, 32, 43, 32,108, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,110,104, 32, + 61, 32,100,111,116, 40,110, 44, 32,104, 41, 59, 13, 10, 13, 10, 9,105,102, 40,110,104, 32, 60, 32, 48, 46, 48, 41, 32,123, 13, + 10, 9, 9,115,112,101, 99,102, 97, 99, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,125, 13, 10, 9,101,108,115,101, 32,123, 13, 10, + 9, 9,102,108,111, 97,116, 32,110,118, 32, 61, 32,109, 97,120, 40,100,111,116, 40,110, 44, 32,118, 41, 44, 32, 48, 46, 48, 41, + 59, 13, 10, 9, 9,102,108,111, 97,116, 32,105, 32, 61, 32,112,111,119, 40,110,104, 44, 32,104, 97,114,100, 41, 59, 13, 10, 13, + 10, 9, 9,105, 32, 61, 32,105, 47, 40, 48, 46, 49, 43,110,118, 41, 59, 13, 10, 9, 9,115,112,101, 99,102, 97, 99, 32, 61, 32, +105, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95, 98,108,105,110,110, 95,115,112, +101, 99, 40,118,101, 99, 51, 32,110, 44, 32,118,101, 99, 51, 32,108, 44, 32,118,101, 99, 51, 32,118, 44, 32,102,108,111, 97,116, + 32,114,101,102,114, 97, 99, 44, 32,102,108,111, 97,116, 32,115,112,101, 99, 95,112,111,119,101,114, 44, 32,111,117,116, 32,102, +108,111, 97,116, 32,115,112,101, 99,102, 97, 99, 41, 13, 10,123, 13, 10, 9,105,102, 40,114,101,102,114, 97, 99, 32, 60, 32, 49, + 46, 48, 41, 32,123, 13, 10, 9, 9,115,112,101, 99,102, 97, 99, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,125, 13, 10, 9,101,108, +115,101, 32,105,102, 40,115,112,101, 99, 95,112,111,119,101,114, 32, 61, 61, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9,115,112, +101, 99,102, 97, 99, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,125, 13, 10, 9,101,108,115,101, 32,123, 13, 10, 9, 9,105,102, 40, +115,112,101, 99, 95,112,111,119,101,114, 60, 49, 48, 48, 46, 48, 41, 13, 10, 9, 9, 9,115,112,101, 99, 95,112,111,119,101,114, + 61, 32,115,113,114,116, 40, 49, 46, 48, 47,115,112,101, 99, 95,112,111,119,101,114, 41, 59, 13, 10, 9, 9,101,108,115,101, 13, + 10, 9, 9, 9,115,112,101, 99, 95,112,111,119,101,114, 61, 32, 49, 48, 46, 48, 47,115,112,101, 99, 95,112,111,119,101,114, 59, + 13, 10, 13, 10, 9, 9,118,101, 99, 51, 32,104, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,118, 32, 43, 32,108, 41, 59, + 13, 10, 9, 9,102,108,111, 97,116, 32,110,104, 32, 61, 32,100,111,116, 40,110, 44, 32,104, 41, 59, 13, 10, 9, 9,105,102, 40, +110,104, 32, 60, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9, 9,115,112,101, 99,102, 97, 99, 32, 61, 32, 48, 46, 48, 59, 13, 10, + 9, 9,125, 13, 10, 9, 9,101,108,115,101, 32,123, 13, 10, 9, 9, 9,102,108,111, 97,116, 32,110,118, 32, 61, 32,109, 97,120, + 40,100,111,116, 40,110, 44, 32,118, 41, 44, 32, 48, 46, 48, 49, 41, 59, 13, 10, 9, 9, 9,102,108,111, 97,116, 32,110,108, 32, + 61, 32,100,111,116, 40,110, 44, 32,108, 41, 59, 13, 10, 9, 9, 9,105,102, 40,110,108, 32, 60, 61, 32, 48, 46, 48, 49, 41, 32, +123, 13, 10, 9, 9, 9, 9,115,112,101, 99,102, 97, 99, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9, 9, 9,125, 13, 10, 9, 9, 9, +101,108,115,101, 32,123, 13, 10, 9, 9, 9, 9,102,108,111, 97,116, 32,118,104, 32, 61, 32,109, 97,120, 40,100,111,116, 40,118, + 44, 32,104, 41, 44, 32, 48, 46, 48, 49, 41, 59, 13, 10, 13, 10, 9, 9, 9, 9,102,108,111, 97,116, 32, 97, 32, 61, 32, 49, 46, + 48, 59, 13, 10, 9, 9, 9, 9,102,108,111, 97,116, 32, 98, 32, 61, 32, 40, 50, 46, 48, 42,110,104, 42,110,118, 41, 47,118,104, + 59, 13, 10, 9, 9, 9, 9,102,108,111, 97,116, 32, 99, 32, 61, 32, 40, 50, 46, 48, 42,110,104, 42,110,108, 41, 47,118,104, 59, + 13, 10, 13, 10, 9, 9, 9, 9,102,108,111, 97,116, 32,103, 32, 61, 32, 48, 46, 48, 59, 13, 10, 13, 10, 9, 9, 9, 9,105,102, + 40, 97, 32, 60, 32, 98, 32, 38, 38, 32, 97, 32, 60, 32, 99, 41, 32,103, 32, 61, 32, 97, 59, 13, 10, 9, 9, 9, 9,101,108,115, +101, 32,105,102, 40, 98, 32, 60, 32, 97, 32, 38, 38, 32, 98, 32, 60, 32, 99, 41, 32,103, 32, 61, 32, 98, 59, 13, 10, 9, 9, 9, + 9,101,108,115,101, 32,105,102, 40, 99, 32, 60, 32, 97, 32, 38, 38, 32, 99, 32, 60, 32, 98, 41, 32,103, 32, 61, 32, 99, 59, 13, + 10, 13, 10, 9, 9, 9, 9,102,108,111, 97,116, 32,112, 32, 61, 32,115,113,114,116, 40, 40, 40,114,101,102,114, 97, 99, 32, 42, + 32,114,101,102,114, 97, 99, 41, 43, 40,118,104, 42,118,104, 41, 45, 49, 46, 48, 41, 41, 59, 13, 10, 9, 9, 9, 9,102,108,111, + 97,116, 32,102, 32, 61, 32, 40, 40, 40,112, 45,118,104, 41, 42, 40,112, 45,118,104, 41, 41, 47, 40, 40,112, 43,118,104, 41, 42, + 40,112, 43,118,104, 41, 41, 41, 42, 40, 49, 46, 48, 43, 40, 40, 40, 40,118,104, 42, 40,112, 43,118,104, 41, 41, 45, 49, 46, 48, + 41, 42, 40, 40,118,104, 42, 40,112, 43,118,104, 41, 41, 45, 49, 46, 48, 41, 41, 47, 40, 40, 40,118,104, 42, 40,112, 45,118,104, + 41, 41, 43, 49, 46, 48, 41, 42, 40, 40,118,104, 42, 40,112, 45,118,104, 41, 41, 43, 49, 46, 48, 41, 41, 41, 41, 59, 13, 10, 9, + 9, 9, 9,102,108,111, 97,116, 32, 97,110,103, 32, 61, 32, 97, 99,111,115, 40,110,104, 41, 59, 13, 10, 13, 10, 9, 9, 9, 9, +115,112,101, 99,102, 97, 99, 32, 61, 32,109, 97,120, 40,102, 42,103, 42,101,120,112, 95, 98,108,101,110,100,101,114, 40, 40, 45, + 40, 97,110,103, 42, 97,110,103, 41, 47, 40, 50, 46, 48, 42,115,112,101, 99, 95,112,111,119,101,114, 42,115,112,101, 99, 95,112, +111,119,101,114, 41, 41, 41, 44, 32, 48, 46, 48, 41, 59, 13, 10, 9, 9, 9,125, 13, 10, 9, 9,125, 13, 10, 9,125, 13, 10,125, + 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,119, 97,114,100,105,115,111, 95,115,112,101, 99, 40,118,101, 99, 51, + 32,110, 44, 32,118,101, 99, 51, 32,108, 44, 32,118,101, 99, 51, 32,118, 44, 32,102,108,111, 97,116, 32,114,109,115, 44, 32,111, +117,116, 32,102,108,111, 97,116, 32,115,112,101, 99,102, 97, 99, 41, 13, 10,123, 13, 10, 9,118,101, 99, 51, 32,104, 32, 61, 32, +110,111,114,109, 97,108,105,122,101, 40,108, 32, 43, 32,118, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,110,104, 32, 61, 32,109, + 97,120, 40,100,111,116, 40,110, 44, 32,104, 41, 44, 32, 48, 46, 48, 48, 49, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,110,118, + 32, 61, 32,109, 97,120, 40,100,111,116, 40,110, 44, 32,118, 41, 44, 32, 48, 46, 48, 48, 49, 41, 59, 13, 10, 9,102,108,111, 97, +116, 32,110,108, 32, 61, 32,109, 97,120, 40,100,111,116, 40,110, 44, 32,108, 41, 44, 32, 48, 46, 48, 48, 49, 41, 59, 13, 10, 9, +102,108,111, 97,116, 32, 97,110,103,108,101, 32, 61, 32,116, 97,110, 40, 97, 99,111,115, 40,110,104, 41, 41, 59, 13, 10, 9,102, +108,111, 97,116, 32, 97,108,112,104, 97, 32, 61, 32,109, 97,120, 40,114,109,115, 44, 32, 48, 46, 48, 48, 49, 41, 59, 13, 10, 13, + 10, 9,115,112,101, 99,102, 97, 99, 61, 32,110,108, 32, 42, 32, 40, 49, 46, 48, 47, 40, 52, 46, 48, 42, 77, 95, 80, 73, 42, 97, +108,112,104, 97, 42, 97,108,112,104, 97, 41, 41, 42, 40,101,120,112, 95, 98,108,101,110,100,101,114, 40, 45, 40, 97,110,103,108, +101, 42, 97,110,103,108,101, 41, 47, 40, 97,108,112,104, 97, 42, 97,108,112,104, 97, 41, 41, 47, 40,115,113,114,116, 40,110,118, + 42,110,108, 41, 41, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,116,111,111,110, 95,115,112, +101, 99, 40,118,101, 99, 51, 32,110, 44, 32,118,101, 99, 51, 32,108, 44, 32,118,101, 99, 51, 32,118, 44, 32,102,108,111, 97,116, + 32,115,105,122,101, 44, 32,102,108,111, 97,116, 32,116,115,109,111,111,116,104, 44, 32,111,117,116, 32,102,108,111, 97,116, 32, +115,112,101, 99,102, 97, 99, 41, 13, 10,123, 13, 10, 9,118,101, 99, 51, 32,104, 32, 61, 32,110,111,114,109, 97,108,105,122,101, + 40,108, 32, 43, 32,118, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,114,115,108,116, 32, 61, 32,100,111,116, 40,104, 44, 32,110, + 41, 59, 13, 10, 9,102,108,111, 97,116, 32, 97,110,103, 32, 61, 32, 97, 99,111,115, 40,114,115,108,116, 41, 59, 13, 10, 13, 10, + 9,105,102, 40, 97,110,103, 32, 60, 32,115,105,122,101, 41, 32,114,115,108,116, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9,101,108, +115,101, 32,105,102, 40, 97,110,103, 32, 62, 61, 32, 40,115,105,122,101, 32, 43, 32,116,115,109,111,111,116,104, 41, 32,124,124, + 32,116,115,109,111,111,116,104, 32, 61, 61, 32, 48, 46, 48, 41, 32,114,115,108,116, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,101, +108,115,101, 32,114,115,108,116, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40, 40, 97,110,103, 32, 45, 32,115,105,122,101, 41, 47,116, +115,109,111,111,116,104, 41, 59, 13, 10, 13, 10, 9,115,112,101, 99,102, 97, 99, 32, 61, 32,114,115,108,116, 59, 13, 10,125, 13, + 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,115,112,101, 99, 95, 97,114,101, 97, 95,105,110,112, 40,102,108,111, 97, 116, 32,115,112,101, 99,102, 97, 99, 44, 32,102,108,111, 97,116, 32,105,110,112, 44, 32,111,117,116, 32,102,108,111, 97,116, 32, -111,117,116,115,112,101, 99,102, 97, 99, 41, 10,123, 10, 9,111,117,116,115,112,101, 99,102, 97, 99, 32, 61, 32,115,112,101, 99, -102, 97, 99, 42,105,110,112, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,115,112,101, 99, 95,116, 40,102,108, -111, 97,116, 32,115,104, 97,100,102, 97, 99, 44, 32,102,108,111, 97,116, 32,115,112,101, 99, 44, 32,102,108,111, 97,116, 32,118, -105,115,105,102, 97, 99, 44, 32,102,108,111, 97,116, 32,115,112,101, 99,102, 97, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, - 32,116, 41, 10,123, 10, 9,116, 32, 61, 32,115,104, 97,100,102, 97, 99, 42,115,112,101, 99, 42,118,105,115,105,102, 97, 99, 42, -115,112,101, 99,102, 97, 99, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95, 97,100,100, 95,115,112,101, 99, 40, -102,108,111, 97,116, 32,116, 44, 32,118,101, 99, 51, 32,108, 97,109,112, 99,111,108, 44, 32,118,101, 99, 51, 32,115,112,101, 99, - 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, - 61, 32,116, 42,108, 97,109,112, 99,111,108, 42,115,112,101, 99, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97, -100,101, 95, 97,100,100, 40,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, - 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 32, 43, - 32, 99,111,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,109, 97,100,100, 40,118,101, 99, 52, 32, 99, +111,117,116,115,112,101, 99,102, 97, 99, 41, 13, 10,123, 13, 10, 9,111,117,116,115,112,101, 99,102, 97, 99, 32, 61, 32,115,112, +101, 99,102, 97, 99, 42,105,110,112, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,115,112,101, 99, + 95,116, 40,102,108,111, 97,116, 32,115,104, 97,100,102, 97, 99, 44, 32,102,108,111, 97,116, 32,115,112,101, 99, 44, 32,102,108, +111, 97,116, 32,118,105,115,105,102, 97, 99, 44, 32,102,108,111, 97,116, 32,115,112,101, 99,102, 97, 99, 44, 32,111,117,116, 32, +102,108,111, 97,116, 32,116, 41, 13, 10,123, 13, 10, 9,116, 32, 61, 32,115,104, 97,100,102, 97, 99, 42,115,112,101, 99, 42,118, +105,115,105,102, 97, 99, 42,115,112,101, 99,102, 97, 99, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, + 95, 97,100,100, 95,115,112,101, 99, 40,102,108,111, 97,116, 32,116, 44, 32,118,101, 99, 51, 32,108, 97,109,112, 99,111,108, 44, + 32,118,101, 99, 51, 32,115,112,101, 99, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116, 99,111,108, 41, 13, + 10,123, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32,116, 42,108, 97,109,112, 99,111,108, 42,115,112,101, 99, 99,111,108, 59, + 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95, 97,100,100, 40,118,101, 99, 52, 32, 99,111,108, 49, 44, + 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, + 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 32, 43, 32, 99,111,108, 50, 59, 13, 10,125, 13, 10, 13, 10,118,111, +105,100, 32,115,104, 97,100,101, 95,109, 97,100,100, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,118,101, 99, 52, 32, 99,111,108, + 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10, +123, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 32, 43, 32, 99,111,108, 49, 42, 99,111,108, 50, 59, 13, 10,125, + 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95, 97,100,100, 95, 99,108, 97,109,112,101,100, 40,118,101, 99, 52, 32, + 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, + 41, 13, 10,123, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 32, 43, 32,109, 97,120, 40, 99,111,108, 50, 44, + 32,118,101, 99, 52, 40, 48, 46, 48, 44, 32, 48, 46, 48, 44, 32, 48, 46, 48, 44, 32, 48, 46, 48, 41, 41, 59, 13, 10,125, 13, 10, + 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,109, 97,100,100, 95, 99,108, 97,109,112,101,100, 40,118,101, 99, 52, 32, 99, 111,108, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, - 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 32, 43, 32, 99,111,108, - 49, 42, 99,111,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95, 97,100,100, 95, 99,108, 97,109,112,101, -100, 40,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, - 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 32, 43, 32,109, 97,120, 40, - 99,111,108, 50, 44, 32,118,101, 99, 52, 40, 48, 46, 48, 44, 32, 48, 46, 48, 44, 32, 48, 46, 48, 44, 32, 48, 46, 48, 41, 41, 59, - 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,109, 97,100,100, 95, 99,108, 97,109,112,101,100, 40,118,101, 99, 52, - 32, 99,111,108, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32, -118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 32, 43, 32,109, + 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 32, 43, 32,109, 97,120, 40, 99,111,108, 49, 42, 99,111,108, 50, 44, 32,118,101, 99, 52, 40, 48, 46, 48, 44, 32, 48, 46, 48, 44, 32, 48, 46, 48, - 44, 32, 48, 46, 48, 41, 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,109, 97,100,100,102, 40,118,101, 99, - 52, 32, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,111,117,116, 32,118, -101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 32, 43, 32,102, 42, - 99,111,108, 49, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,109,117,108, 40,118,101, 99, 52, 32, 99,111,108, - 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, - 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 42, 99,111,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, - 97,100,101, 95,109,117,108, 95,118, 97,108,117,101, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111, -108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, - 99,111,108, 42,102, 97, 99, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,111, 98, 99,111,108,111,114, 40,118, -101, 99, 52, 32, 99,111,108, 44, 32,118,101, 99, 52, 32,111, 98, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117, -116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40, 99,111,108, 46,114,103, 98, 42,111, - 98, 99,111,108, 46,114,103, 98, 44, 32, 99,111,108, 46, 97, 41, 59, 10,125, 10, 10,118,111,105,100, 32,114, 97,109,112, 95,114, -103, 98,116,111, 98,119, 40,118,101, 99, 51, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116, -118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 99,111,108,111,114, 46,114, 42, 48, 46, 51, 32, 43, 32, 99, -111,108,111,114, 46,103, 42, 48, 46, 53, 56, 32, 43, 32, 99,111,108,111,114, 46, 98, 42, 48, 46, 49, 50, 59, 10,125, 10, 10,118, -111,105,100, 32,115,104, 97,100,101, 95,111,110,108,121, 95,115,104, 97,100,111,119, 40,102,108,111, 97,116, 32,105, 44, 32,102, -108,111, 97,116, 32,115,104, 97,100,102, 97, 99, 44, 32,102,108,111, 97,116, 32,101,110,101,114,103,121, 44, 32,111,117,116, 32, -102,108,111, 97,116, 32,111,117,116,115,104, 97,100,102, 97, 99, 41, 10,123, 10, 9,111,117,116,115,104, 97,100,102, 97, 99, 32, - 61, 32,105, 42,101,110,101,114,103,121, 42, 40, 49, 46, 48, 32, 45, 32,115,104, 97,100,102, 97, 99, 41, 59, 10,125, 10, 10,118, -111,105,100, 32,115,104, 97,100,101, 95,111,110,108,121, 95,115,104, 97,100,111,119, 95,100,105,102,102,117,115,101, 40,102,108, -111, 97,116, 32,115,104, 97,100,102, 97, 99, 44, 32,118,101, 99, 51, 32,114,103, 98, 44, 32,118,101, 99, 52, 32,100,105,102,102, - 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116,100,105,102,102, 41, 10,123, 10, 9,111,117,116,100,105,102,102, 32, 61, - 32,100,105,102,102, 32, 45, 32,118,101, 99, 52, 40,114,103, 98, 42,115,104, 97,100,102, 97, 99, 44, 32, 48, 46, 48, 41, 59, 10, -125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,111,110,108,121, 95,115,104, 97,100,111,119, 95,115,112,101, 99,117,108, - 97,114, 40,102,108,111, 97,116, 32,115,104, 97,100,102, 97, 99, 44, 32,118,101, 99, 51, 32,115,112,101, 99,114,103, 98, 44, 32, -118,101, 99, 52, 32,115,112,101, 99, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116,115,112,101, 99, 41, 10,123, 10, 9, -111,117,116,115,112,101, 99, 32, 61, 32,115,112,101, 99, 32, 45, 32,118,101, 99, 52, 40,115,112,101, 99,114,103, 98, 42,115,104, - 97,100,102, 97, 99, 44, 32, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,115,116, 95,115,104, 97,100,111,119, - 98,117,102, 40,118,101, 99, 51, 32,114, 99,111, 44, 32,115, 97,109,112,108,101,114, 50, 68, 83,104, 97,100,111,119, 32,115,104, - 97,100,111,119,109, 97,112, 44, 32,109, 97,116, 52, 32,115,104, 97,100,111,119,112,101,114,115,109, 97,116, 44, 32,102,108,111, - 97,116, 32,115,104, 97,100,111,119, 98,105, 97,115, 44, 32,102,108,111, 97,116, 32,105,110,112, 44, 32,111,117,116, 32,102,108, -111, 97,116, 32,114,101,115,117,108,116, 41, 10,123, 10, 9,105,102, 40,105,110,112, 32, 60, 61, 32, 48, 46, 48, 41, 32,123, 10, - 9, 9,114,101,115,117,108,116, 32, 61, 32, 48, 46, 48, 59, 10, 9,125, 10, 9,101,108,115,101, 32,123, 10, 9, 9,118,101, 99, - 52, 32, 99,111, 32, 61, 32,115,104, 97,100,111,119,112,101,114,115,109, 97,116, 42,118,101, 99, 52, 40,114, 99,111, 44, 32, 49, - 46, 48, 41, 59, 10, 10, 9, 9, 47, 47,102,108,111, 97,116, 32, 98,105, 97,115, 32, 61, 32, 40, 49, 46, 53, 32, 45, 32,105,110, -112, 42,105,110,112, 41, 42,115,104, 97,100,111,119, 98,105, 97,115, 59, 10, 9, 9, 99,111, 46,122, 32, 45, 61, 32,115,104, 97, -100,111,119, 98,105, 97,115, 42, 99,111, 46,119, 59, 10, 10, 9, 9,114,101,115,117,108,116, 32, 61, 32,115,104, 97,100,111,119, - 50, 68, 80,114,111,106, 40,115,104, 97,100,111,119,109, 97,112, 44, 32, 99,111, 41, 46,120, 59, 10, 9,125, 10,125, 10, 10,118, -111,105,100, 32,115,104, 97,100,101, 95,101,120,112,111,115,117,114,101, 95, 99,111,114,114,101, 99,116, 40,118,101, 99, 51, 32, - 99,111,108, 44, 32,102,108,111, 97,116, 32,108,105,110,102, 97, 99, 44, 32,102,108,111, 97,116, 32,108,111,103,102, 97, 99, 44, - 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32,108,105, -110,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32,101,120,112, 40, 99,111,108, 42,108,111,103,102, 97, 99, 41, 41, 59, 10,125, 10, - 10,118,111,105,100, 32,115,104, 97,100,101, 95,109,105,115,116, 95,102, 97, 99,116,111,114, 40,118,101, 99, 51, 32, 99,111, 44, - 32,102,108,111, 97,116, 32,109,105,115,116,115,116, 97, 44, 32,102,108,111, 97,116, 32,109,105,115,116,100,105,115,116, 44, 32, -102,108,111, 97,116, 32,109,105,115,116,116,121,112,101, 44, 32,102,108,111, 97,116, 32,109,105,115,105, 44, 32,111,117,116, 32, -102,108,111, 97,116, 32,111,117,116,102, 97, 99, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99, 44, 32,122, 99,111,114, - 59, 10, 10, 9,122, 99,111,114, 32, 61, 32, 40,103,108, 95, 80,114,111,106,101, 99,116,105,111,110, 77, 97,116,114,105,120, 91, - 51, 93, 91, 51, 93, 32, 61, 61, 32, 48, 46, 48, 41, 63, 32,108,101,110,103,116,104, 40, 99,111, 41, 58, 32, 45, 99,111, 91, 50, - 93, 59, 10, 9, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40, 40,122, 99,111,114, 45,109,105,115,116,115,116, 97, 41, - 47,109,105,115,116,100,105,115,116, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,105,102, 40,109,105,115,116,116,121, -112,101, 32, 61, 61, 32, 48, 46, 48, 41, 32,102, 97, 99, 32, 42, 61, 32,102, 97, 99, 59, 10, 9,101,108,115,101, 32,105,102, 40, -109,105,115,116,116,121,112,101, 32, 61, 61, 32, 49, 46, 48, 41, 59, 10, 9,101,108,115,101, 32,102, 97, 99, 32, 61, 32,115,113, -114,116, 40,102, 97, 99, 41, 59, 10, 10, 9,111,117,116,102, 97, 99, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40, 49, 46, 48, 45,102, - 97, 99, 41, 42, 40, 49, 46, 48, 45,109,105,115,105, 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,119,111, -114,108,100, 95,109,105,120, 40,118,101, 99, 51, 32,104,111,114, 44, 32,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32, -118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99, 32, 61, 32, 99,108, 97,109, -112, 40, 99,111,108, 46, 97, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, - 99, 52, 40,109,105,120, 40,104,111,114, 44, 32, 99,111,108, 46,114,103, 98, 44, 32,102, 97, 99, 41, 44, 32, 99,111,108, 46, 97, - 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95, 97,108,112,104, 97, 95,111,112, 97,113,117,101, 40,118,101, - 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99, -111,108, 32, 61, 32,118,101, 99, 52, 40, 99,111,108, 46,114,103, 98, 44, 32, 49, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, - 32,115,104, 97,100,101, 95, 97,108,112,104, 97, 95,111, 98, 99,111,108,111,114, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,118, -101, 99, 52, 32,111, 98, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111, -117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40, 99,111,108, 46,114,103, 98, 44, 32, 99,111,108, 46, 97, 42,111, 98, 99,111, -108, 46, 97, 41, 59, 10,125, 10, 10, 47, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, 78, 69, 87, 32, 83, 72, 65, 68, 69, 82, - 32, 85, 84, 73, 76, 73, 84, 73, 69, 83, 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 10, 10,102,108,111, 97, -116, 32,102,114,101,115,110,101,108, 95,100,105,101,108,101, 99,116,114,105, 99, 40,118,101, 99, 51, 32, 73,110, 99,111,109,105, -110,103, 44, 32,118,101, 99, 51, 32, 78,111,114,109, 97,108, 44, 32,102,108,111, 97,116, 32,101,116, 97, 41, 10,123, 10, 32, 32, - 32, 32, 47, 42, 32, 99,111,109,112,117,116,101, 32,102,114,101,115,110,101,108, 32,114,101,102,108,101, 99,116, 97,110, 99,101, - 32,119,105,116,104,111,117,116, 32,101,120,112,108,105, 99,105,116,108,121, 32, 99,111,109,112,117,116,105,110,103, 10, 32, 32, - 32, 32, 32, 32, 32,116,104,101, 32,114,101,102,114, 97, 99,116,101,100, 32,100,105,114,101, 99,116,105,111,110, 32, 42, 47, 10, - 32, 32, 32, 32,102,108,111, 97,116, 32, 99, 32, 61, 32, 97, 98,115, 40,100,111,116, 40, 73,110, 99,111,109,105,110,103, 44, 32, - 78,111,114,109, 97,108, 41, 41, 59, 10, 32, 32, 32, 32,102,108,111, 97,116, 32,103, 32, 61, 32,101,116, 97, 32, 42, 32,101,116, - 97, 32, 45, 32, 49, 46, 48, 32, 43, 32, 99, 32, 42, 32, 99, 59, 10, 32, 32, 32, 32,102,108,111, 97,116, 32,114,101,115,117,108, -116, 59, 10, 10, 32, 32, 32, 32,105,102, 40,103, 32, 62, 32, 48, 46, 48, 41, 32,123, 10, 32, 32, 32, 32, 32, 32, 32, 32,103, 32, - 61, 32,115,113,114,116, 40,103, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32,102,108,111, 97,116, 32, 65, 32, 61, 40,103, 32, 45, - 32, 99, 41, 47, 40,103, 32, 43, 32, 99, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32,102,108,111, 97,116, 32, 66, 32, 61, 40, 99, - 32, 42, 40,103, 32, 43, 32, 99, 41, 45, 32, 49, 46, 48, 41, 47, 40, 99, 32, 42, 40,103, 32, 45, 32, 99, 41, 43, 32, 49, 46, 48, - 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32,114,101,115,117,108,116, 32, 61, 32, 48, 46, 53, 32, 42, 32, 65, 32, 42, 32, 65, 32, - 42, 40, 49, 46, 48, 32, 43, 32, 66, 32, 42, 32, 66, 41, 59, 10, 32, 32, 32, 32,125, 10, 32, 32, 32, 32,101,108,115,101, 10, 32, - 32, 32, 32, 32, 32, 32, 32,114,101,115,117,108,116, 32, 61, 32, 49, 46, 48, 59, 32, 32, 47, 42, 32, 84, 73, 82, 32, 40,110,111, - 32,114,101,102,114, 97, 99,116,101,100, 32, 99,111,109,112,111,110,101,110,116, 41, 32, 42, 47, 10, 10, 32, 32, 32, 32,114,101, -116,117,114,110, 32,114,101,115,117,108,116, 59, 10,125, 10, 10,102,108,111, 97,116, 32,104,121,112,111,116, 40,102,108,111, 97, -116, 32,120, 44, 32,102,108,111, 97,116, 32,121, 41, 10,123, 10, 9,114,101,116,117,114,110, 32,115,113,114,116, 40,120, 42,120, - 32, 43, 32,121, 42,121, 41, 59, 10,125, 10, 10, 47, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, 78, 69, 87, 32, 83, 72, 65, - 68, 69, 82, 32, 78, 79, 68, 69, 83, 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 10, 10, 35,100,101,102, -105,110,101, 32, 78, 85, 77, 95, 76, 73, 71, 72, 84, 83, 32, 51, 10, 10, 47, 42, 32, 98,115,100,102,115, 32, 42, 47, 10, 10,118, -111,105,100, 32,110,111,100,101, 95, 98,115,100,102, 95,100,105,102,102,117,115,101, 40,118,101, 99, 52, 32, 99,111,108,111,114, - 44, 32,102,108,111, 97,116, 32,114,111,117,103,104,110,101,115,115, 44, 32,118,101, 99, 51, 32, 78, 44, 32,111,117,116, 32,118, -101, 99, 52, 32,114,101,115,117,108,116, 41, 10,123, 10, 9, 47, 42, 32, 97,109, 98,105,101,110,116, 32,108,105,103,104,116, 32, - 42, 47, 10, 9,118,101, 99, 51, 32, 76, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 50, 41, 59, 10, 10, 9, 47, 42, 32,100,105,114, -101, 99,116,105,111,110, 97,108, 32,108,105,103,104,116,115, 32, 42, 47, 10, 9,102,111,114, 40,105,110,116, 32,105, 32, 61, 32, - 48, 59, 32,105, 32, 60, 32, 78, 85, 77, 95, 76, 73, 71, 72, 84, 83, 59, 32,105, 43, 43, 41, 32,123, 10, 9, 9,118,101, 99, 51, - 32,108,105,103,104,116, 95,112,111,115,105,116,105,111,110, 32, 61, 32,103,108, 95, 76,105,103,104,116, 83,111,117,114, 99,101, - 91,105, 93, 46,112,111,115,105,116,105,111,110, 46,120,121,122, 59, 10, 9, 9,118,101, 99, 51, 32,108,105,103,104,116, 95,100, -105,102,102,117,115,101, 32, 61, 32,103,108, 95, 76,105,103,104,116, 83,111,117,114, 99,101, 91,105, 93, 46,100,105,102,102,117, -115,101, 46,114,103, 98, 59, 10, 10, 9, 9,102,108,111, 97,116, 32, 98,115,100,102, 32, 61, 32,109, 97,120, 40,100,111,116, 40, - 78, 44, 32,108,105,103,104,116, 95,112,111,115,105,116,105,111,110, 41, 44, 32, 48, 46, 48, 41, 59, 10, 9, 9, 76, 32, 43, 61, - 32,108,105,103,104,116, 95,100,105,102,102,117,115,101, 42, 98,115,100,102, 59, 10, 9,125, 10, 10, 9,114,101,115,117,108,116, - 32, 61, 32,118,101, 99, 52, 40, 76, 42, 99,111,108,111,114, 46,114,103, 98, 44, 32, 49, 46, 48, 41, 59, 10,125, 10, 10,118,111, -105,100, 32,110,111,100,101, 95, 98,115,100,102, 95,103,108,111,115,115,121, 40,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32, -102,108,111, 97,116, 32,114,111,117,103,104,110,101,115,115, 44, 32,118,101, 99, 51, 32, 78, 44, 32,118,101, 99, 51, 32, 73, 44, - 32,111,117,116, 32,118,101, 99, 52, 32,114,101,115,117,108,116, 41, 10,123, 10, 9, 47, 42, 32, 97,109, 98,105,101,110,116, 32, -108,105,103,104,116, 32, 42, 47, 10, 9,118,101, 99, 51, 32, 76, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 50, 41, 59, 10, 10, 9, - 47, 42, 32,100,105,114,101, 99,116,105,111,110, 97,108, 32,108,105,103,104,116,115, 32, 42, 47, 10, 9,102,111,114, 40,105,110, -116, 32,105, 32, 61, 32, 48, 59, 32,105, 32, 60, 32, 78, 85, 77, 95, 76, 73, 71, 72, 84, 83, 59, 32,105, 43, 43, 41, 32,123, 10, - 9, 9,118,101, 99, 51, 32,108,105,103,104,116, 95,112,111,115,105,116,105,111,110, 32, 61, 32,103,108, 95, 76,105,103,104,116, - 83,111,117,114, 99,101, 91,105, 93, 46,112,111,115,105,116,105,111,110, 46,120,121,122, 59, 10, 9, 9,118,101, 99, 51, 32, 72, - 32, 61, 32,103,108, 95, 76,105,103,104,116, 83,111,117,114, 99,101, 91,105, 93, 46,104, 97,108,102, 86,101, 99,116,111,114, 46, -120,121,122, 59, 10, 9, 9,118,101, 99, 51, 32,108,105,103,104,116, 95,100,105,102,102,117,115,101, 32, 61, 32,103,108, 95, 76, -105,103,104,116, 83,111,117,114, 99,101, 91,105, 93, 46,100,105,102,102,117,115,101, 46,114,103, 98, 59, 10, 9, 9,118,101, 99, - 51, 32,108,105,103,104,116, 95,115,112,101, 99,117,108, 97,114, 32, 61, 32,103,108, 95, 76,105,103,104,116, 83,111,117,114, 99, -101, 91,105, 93, 46,115,112,101, 99,117,108, 97,114, 46,114,103, 98, 59, 10, 10, 9, 9, 47, 42, 32,119,101, 32,109,105,120, 32, -105,110, 32,115,111,109,101, 32,100,105,102,102,117,115,101, 32,115,111, 32,108,111,119, 32,114,111,117,103,104,110,101,115,115, - 32,115,116,105,108,108, 32,115,104,111,119,115, 32,117,112, 32, 42, 47, 10, 9, 9,102,108,111, 97,116, 32, 98,115,100,102, 32, - 61, 32, 48, 46, 53, 42,112,111,119, 40,109, 97,120, 40,100,111,116, 40, 78, 44, 32, 72, 41, 44, 32, 48, 46, 48, 41, 44, 32, 49, - 46, 48, 47,114,111,117,103,104,110,101,115,115, 41, 59, 10, 9, 9, 98,115,100,102, 32, 43, 61, 32, 48, 46, 53, 42,109, 97,120, - 40,100,111,116, 40, 78, 44, 32,108,105,103,104,116, 95,112,111,115,105,116,105,111,110, 41, 44, 32, 48, 46, 48, 41, 59, 10, 9, - 9, 76, 32, 43, 61, 32,108,105,103,104,116, 95,115,112,101, 99,117,108, 97,114, 42, 98,115,100,102, 59, 10, 9,125, 10, 10, 9, -114,101,115,117,108,116, 32, 61, 32,118,101, 99, 52, 40, 76, 42, 99,111,108,111,114, 46,114,103, 98, 44, 32, 49, 46, 48, 41, 59, - 10,125, 10, 10,118,111,105,100, 32,110,111,100,101, 95, 98,115,100,102, 95, 97,110,105,115,111,116,114,111,112,105, 99, 40,118, -101, 99, 52, 32, 99,111,108,111,114, 44, 32,102,108,111, 97,116, 32,114,111,117,103,104,110,101,115,115, 85, 44, 32,102,108,111, - 97,116, 32,114,111,117,103,104,110,101,115,115, 86, 44, 32,118,101, 99, 51, 32, 78, 44, 32,118,101, 99, 51, 32, 73, 44, 32,111, -117,116, 32,118,101, 99, 52, 32,114,101,115,117,108,116, 41, 10,123, 10, 9,110,111,100,101, 95, 98,115,100,102, 95,100,105,102, -102,117,115,101, 40, 99,111,108,111,114, 44, 32, 48, 46, 48, 44, 32, 78, 44, 32,114,101,115,117,108,116, 41, 59, 10,125, 10, 10, -118,111,105,100, 32,110,111,100,101, 95, 98,115,100,102, 95,103,108, 97,115,115, 40,118,101, 99, 52, 32, 99,111,108,111,114, 44, - 32,102,108,111, 97,116, 32,114,111,117,103,104,110,101,115,115, 44, 32,102,108,111, 97,116, 32,105,111,114, 44, 32,118,101, 99, - 51, 32, 78, 44, 32,118,101, 99, 51, 32, 73, 44, 32,111,117,116, 32,118,101, 99, 52, 32,114,101,115,117,108,116, 41, 10,123, 10, + 44, 32, 48, 46, 48, 41, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,109, 97,100,100,102, 40, +118,101, 99, 52, 32, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,111,117, +116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, + 32, 43, 32,102, 42, 99,111,108, 49, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,109,117,108, 40, +118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111, +117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 42, 99,111,108, 50, 59, 13, + 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,109,117,108, 95,118, 97,108,117,101, 40,102,108,111, 97,116, + 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, + 13, 10,123, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 42,102, 97, 99, 59, 13, 10,125, 13, 10, 13, 10,118,111, +105,100, 32,115,104, 97,100,101, 95,111, 98, 99,111,108,111,114, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,118,101, 99, 52, 32, +111, 98, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,111,117,116, + 99,111,108, 32, 61, 32,118,101, 99, 52, 40, 99,111,108, 46,114,103, 98, 42,111, 98, 99,111,108, 46,114,103, 98, 44, 32, 99,111, +108, 46, 97, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,114, 97,109,112, 95,114,103, 98,116,111, 98,119, 40,118,101, + 99, 51, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 13, 10,123, 13, 10, + 9,111,117,116,118, 97,108, 32, 61, 32, 99,111,108,111,114, 46,114, 42, 48, 46, 51, 32, 43, 32, 99,111,108,111,114, 46,103, 42, + 48, 46, 53, 56, 32, 43, 32, 99,111,108,111,114, 46, 98, 42, 48, 46, 49, 50, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32, +115,104, 97,100,101, 95,111,110,108,121, 95,115,104, 97,100,111,119, 40,102,108,111, 97,116, 32,105, 44, 32,102,108,111, 97,116, + 32,115,104, 97,100,102, 97, 99, 44, 32,102,108,111, 97,116, 32,101,110,101,114,103,121, 44, 32,111,117,116, 32,102,108,111, 97, +116, 32,111,117,116,115,104, 97,100,102, 97, 99, 41, 13, 10,123, 13, 10, 9,111,117,116,115,104, 97,100,102, 97, 99, 32, 61, 32, +105, 42,101,110,101,114,103,121, 42, 40, 49, 46, 48, 32, 45, 32,115,104, 97,100,102, 97, 99, 41, 59, 13, 10,125, 13, 10, 13, 10, +118,111,105,100, 32,115,104, 97,100,101, 95,111,110,108,121, 95,115,104, 97,100,111,119, 95,100,105,102,102,117,115,101, 40,102, +108,111, 97,116, 32,115,104, 97,100,102, 97, 99, 44, 32,118,101, 99, 51, 32,114,103, 98, 44, 32,118,101, 99, 52, 32,100,105,102, +102, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116,100,105,102,102, 41, 13, 10,123, 13, 10, 9,111,117,116,100,105,102, +102, 32, 61, 32,100,105,102,102, 32, 45, 32,118,101, 99, 52, 40,114,103, 98, 42,115,104, 97,100,102, 97, 99, 44, 32, 48, 46, 48, + 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95,111,110,108,121, 95,115,104, 97,100,111,119, 95, +115,112,101, 99,117,108, 97,114, 40,102,108,111, 97,116, 32,115,104, 97,100,102, 97, 99, 44, 32,118,101, 99, 51, 32,115,112,101, + 99,114,103, 98, 44, 32,118,101, 99, 52, 32,115,112,101, 99, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116,115,112,101, + 99, 41, 13, 10,123, 13, 10, 9,111,117,116,115,112,101, 99, 32, 61, 32,115,112,101, 99, 32, 45, 32,118,101, 99, 52, 40,115,112, +101, 99,114,103, 98, 42,115,104, 97,100,102, 97, 99, 44, 32, 48, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32, +116,101,115,116, 95,115,104, 97,100,111,119, 98,117,102, 40,118,101, 99, 51, 32,114, 99,111, 44, 32,115, 97,109,112,108,101,114, + 50, 68, 83,104, 97,100,111,119, 32,115,104, 97,100,111,119,109, 97,112, 44, 32,109, 97,116, 52, 32,115,104, 97,100,111,119,112, +101,114,115,109, 97,116, 44, 32,102,108,111, 97,116, 32,115,104, 97,100,111,119, 98,105, 97,115, 44, 32,102,108,111, 97,116, 32, +105,110,112, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,114,101,115,117,108,116, 41, 13, 10,123, 13, 10, 9,105,102, 40,105, +110,112, 32, 60, 61, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9,114,101,115,117,108,116, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9, +125, 13, 10, 9,101,108,115,101, 32,123, 13, 10, 9, 9,118,101, 99, 52, 32, 99,111, 32, 61, 32,115,104, 97,100,111,119,112,101, +114,115,109, 97,116, 42,118,101, 99, 52, 40,114, 99,111, 44, 32, 49, 46, 48, 41, 59, 13, 10, 13, 10, 9, 9, 47, 47,102,108,111, + 97,116, 32, 98,105, 97,115, 32, 61, 32, 40, 49, 46, 53, 32, 45, 32,105,110,112, 42,105,110,112, 41, 42,115,104, 97,100,111,119, + 98,105, 97,115, 59, 13, 10, 9, 9, 99,111, 46,122, 32, 45, 61, 32,115,104, 97,100,111,119, 98,105, 97,115, 42, 99,111, 46,119, + 59, 13, 10, 13, 10, 9, 9,114,101,115,117,108,116, 32, 61, 32,115,104, 97,100,111,119, 50, 68, 80,114,111,106, 40,115,104, 97, +100,111,119,109, 97,112, 44, 32, 99,111, 41, 46,120, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, + 97,100,101, 95,101,120,112,111,115,117,114,101, 95, 99,111,114,114,101, 99,116, 40,118,101, 99, 51, 32, 99,111,108, 44, 32,102, +108,111, 97,116, 32,108,105,110,102, 97, 99, 44, 32,102,108,111, 97,116, 32,108,111,103,102, 97, 99, 44, 32,111,117,116, 32,118, +101, 99, 51, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32,108,105,110,102, 97, 99, + 42, 40, 49, 46, 48, 32, 45, 32,101,120,112, 40, 99,111,108, 42,108,111,103,102, 97, 99, 41, 41, 59, 13, 10,125, 13, 10, 13, 10, +118,111,105,100, 32,115,104, 97,100,101, 95,109,105,115,116, 95,102, 97, 99,116,111,114, 40,118,101, 99, 51, 32, 99,111, 44, 32, +102,108,111, 97,116, 32,109,105,115,116,115,116, 97, 44, 32,102,108,111, 97,116, 32,109,105,115,116,100,105,115,116, 44, 32,102, +108,111, 97,116, 32,109,105,115,116,116,121,112,101, 44, 32,102,108,111, 97,116, 32,109,105,115,105, 44, 32,111,117,116, 32,102, +108,111, 97,116, 32,111,117,116,102, 97, 99, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99, 44, 32,122, 99,111, +114, 59, 13, 10, 13, 10, 9,122, 99,111,114, 32, 61, 32, 40,103,108, 95, 80,114,111,106,101, 99,116,105,111,110, 77, 97,116,114, +105,120, 91, 51, 93, 91, 51, 93, 32, 61, 61, 32, 48, 46, 48, 41, 63, 32,108,101,110,103,116,104, 40, 99,111, 41, 58, 32, 45, 99, +111, 91, 50, 93, 59, 13, 10, 9, 13, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40, 40,122, 99,111,114, 45,109,105,115, +116,115,116, 97, 41, 47,109,105,115,116,100,105,115,116, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,105,102, 40, +109,105,115,116,116,121,112,101, 32, 61, 61, 32, 48, 46, 48, 41, 32,102, 97, 99, 32, 42, 61, 32,102, 97, 99, 59, 13, 10, 9,101, +108,115,101, 32,105,102, 40,109,105,115,116,116,121,112,101, 32, 61, 61, 32, 49, 46, 48, 41, 59, 13, 10, 9,101,108,115,101, 32, +102, 97, 99, 32, 61, 32,115,113,114,116, 40,102, 97, 99, 41, 59, 13, 10, 13, 10, 9,111,117,116,102, 97, 99, 32, 61, 32, 49, 46, + 48, 32, 45, 32, 40, 49, 46, 48, 45,102, 97, 99, 41, 42, 40, 49, 46, 48, 45,109,105,115,105, 41, 59, 13, 10,125, 13, 10, 13, 10, +118,111,105,100, 32,115,104, 97,100,101, 95,119,111,114,108,100, 95,109,105,120, 40,118,101, 99, 51, 32,104,111,114, 44, 32,118, +101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,102, +108,111, 97,116, 32,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40, 99,111,108, 46, 97, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, + 41, 59, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40,109,105,120, 40,104,111,114, 44, 32, 99,111,108, 46, +114,103, 98, 44, 32,102, 97, 99, 41, 44, 32, 99,111,108, 46, 97, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, + 97,100,101, 95, 97,108,112,104, 97, 95,111,112, 97,113,117,101, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,118, +101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40, 99, +111,108, 46,114,103, 98, 44, 32, 49, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,115,104, 97,100,101, 95, 97, +108,112,104, 97, 95,111, 98, 99,111,108,111,114, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,118,101, 99, 52, 32,111, 98, 99,111, +108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 13, 10,123, 13, 10, 9,111,117,116, 99,111,108, 32, + 61, 32,118,101, 99, 52, 40, 99,111,108, 46,114,103, 98, 44, 32, 99,111,108, 46, 97, 42,111, 98, 99,111,108, 46, 97, 41, 59, 13, + 10,125, 13, 10, 13, 10, 47, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, 78, 69, 87, 32, 83, 72, 65, 68, 69, 82, 32, 85, 84, + 73, 76, 73, 84, 73, 69, 83, 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 13, 10, 13, 10,102,108,111, 97,116, + 32,102,114,101,115,110,101,108, 95,100,105,101,108,101, 99,116,114,105, 99, 40,118,101, 99, 51, 32, 73,110, 99,111,109,105,110, +103, 44, 32,118,101, 99, 51, 32, 78,111,114,109, 97,108, 44, 32,102,108,111, 97,116, 32,101,116, 97, 41, 13, 10,123, 13, 10, 32, + 32, 32, 32, 47, 42, 32, 99,111,109,112,117,116,101, 32,102,114,101,115,110,101,108, 32,114,101,102,108,101, 99,116, 97,110, 99, +101, 32,119,105,116,104,111,117,116, 32,101,120,112,108,105, 99,105,116,108,121, 32, 99,111,109,112,117,116,105,110,103, 13, 10, + 32, 32, 32, 32, 32, 32, 32,116,104,101, 32,114,101,102,114, 97, 99,116,101,100, 32,100,105,114,101, 99,116,105,111,110, 32, 42, + 47, 13, 10, 32, 32, 32, 32,102,108,111, 97,116, 32, 99, 32, 61, 32, 97, 98,115, 40,100,111,116, 40, 73,110, 99,111,109,105,110, +103, 44, 32, 78,111,114,109, 97,108, 41, 41, 59, 13, 10, 32, 32, 32, 32,102,108,111, 97,116, 32,103, 32, 61, 32,101,116, 97, 32, + 42, 32,101,116, 97, 32, 45, 32, 49, 46, 48, 32, 43, 32, 99, 32, 42, 32, 99, 59, 13, 10, 32, 32, 32, 32,102,108,111, 97,116, 32, +114,101,115,117,108,116, 59, 13, 10, 13, 10, 32, 32, 32, 32,105,102, 40,103, 32, 62, 32, 48, 46, 48, 41, 32,123, 13, 10, 32, 32, + 32, 32, 32, 32, 32, 32,103, 32, 61, 32,115,113,114,116, 40,103, 41, 59, 13, 10, 32, 32, 32, 32, 32, 32, 32, 32,102,108,111, 97, +116, 32, 65, 32, 61, 40,103, 32, 45, 32, 99, 41, 47, 40,103, 32, 43, 32, 99, 41, 59, 13, 10, 32, 32, 32, 32, 32, 32, 32, 32,102, +108,111, 97,116, 32, 66, 32, 61, 40, 99, 32, 42, 40,103, 32, 43, 32, 99, 41, 45, 32, 49, 46, 48, 41, 47, 40, 99, 32, 42, 40,103, + 32, 45, 32, 99, 41, 43, 32, 49, 46, 48, 41, 59, 13, 10, 32, 32, 32, 32, 32, 32, 32, 32,114,101,115,117,108,116, 32, 61, 32, 48, + 46, 53, 32, 42, 32, 65, 32, 42, 32, 65, 32, 42, 40, 49, 46, 48, 32, 43, 32, 66, 32, 42, 32, 66, 41, 59, 13, 10, 32, 32, 32, 32, +125, 13, 10, 32, 32, 32, 32,101,108,115,101, 13, 10, 32, 32, 32, 32, 32, 32, 32, 32,114,101,115,117,108,116, 32, 61, 32, 49, 46, + 48, 59, 32, 32, 47, 42, 32, 84, 73, 82, 32, 40,110,111, 32,114,101,102,114, 97, 99,116,101,100, 32, 99,111,109,112,111,110,101, +110,116, 41, 32, 42, 47, 13, 10, 13, 10, 32, 32, 32, 32,114,101,116,117,114,110, 32,114,101,115,117,108,116, 59, 13, 10,125, 13, + 10, 13, 10,102,108,111, 97,116, 32,104,121,112,111,116, 40,102,108,111, 97,116, 32,120, 44, 32,102,108,111, 97,116, 32,121, 41, + 13, 10,123, 13, 10, 9,114,101,116,117,114,110, 32,115,113,114,116, 40,120, 42,120, 32, 43, 32,121, 42,121, 41, 59, 13, 10,125, + 13, 10, 13, 10, 47, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, 78, 69, 87, 32, 83, 72, 65, 68, 69, 82, 32, 78, 79, 68, 69, + 83, 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 13, 10, 13, 10, 35,100,101,102,105,110,101, 32, 78, 85, + 77, 95, 76, 73, 71, 72, 84, 83, 32, 51, 13, 10, 13, 10, 47, 42, 32, 98,115,100,102,115, 32, 42, 47, 13, 10, 13, 10,118,111,105, +100, 32,110,111,100,101, 95, 98,115,100,102, 95,100,105,102,102,117,115,101, 40,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32, +102,108,111, 97,116, 32,114,111,117,103,104,110,101,115,115, 44, 32,118,101, 99, 51, 32, 78, 44, 32,111,117,116, 32,118,101, 99, + 52, 32,114,101,115,117,108,116, 41, 13, 10,123, 13, 10, 9, 47, 42, 32, 97,109, 98,105,101,110,116, 32,108,105,103,104,116, 32, + 42, 47, 13, 10, 9,118,101, 99, 51, 32, 76, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 50, 41, 59, 13, 10, 13, 10, 9, 47, 42, 32, +100,105,114,101, 99,116,105,111,110, 97,108, 32,108,105,103,104,116,115, 32, 42, 47, 13, 10, 9,102,111,114, 40,105,110,116, 32, +105, 32, 61, 32, 48, 59, 32,105, 32, 60, 32, 78, 85, 77, 95, 76, 73, 71, 72, 84, 83, 59, 32,105, 43, 43, 41, 32,123, 13, 10, 9, + 9,118,101, 99, 51, 32,108,105,103,104,116, 95,112,111,115,105,116,105,111,110, 32, 61, 32,103,108, 95, 76,105,103,104,116, 83, +111,117,114, 99,101, 91,105, 93, 46,112,111,115,105,116,105,111,110, 46,120,121,122, 59, 13, 10, 9, 9,118,101, 99, 51, 32,108, +105,103,104,116, 95,100,105,102,102,117,115,101, 32, 61, 32,103,108, 95, 76,105,103,104,116, 83,111,117,114, 99,101, 91,105, 93, + 46,100,105,102,102,117,115,101, 46,114,103, 98, 59, 13, 10, 13, 10, 9, 9,102,108,111, 97,116, 32, 98,115,100,102, 32, 61, 32, +109, 97,120, 40,100,111,116, 40, 78, 44, 32,108,105,103,104,116, 95,112,111,115,105,116,105,111,110, 41, 44, 32, 48, 46, 48, 41, + 59, 13, 10, 9, 9, 76, 32, 43, 61, 32,108,105,103,104,116, 95,100,105,102,102,117,115,101, 42, 98,115,100,102, 59, 13, 10, 9, +125, 13, 10, 13, 10, 9,114,101,115,117,108,116, 32, 61, 32,118,101, 99, 52, 40, 76, 42, 99,111,108,111,114, 46,114,103, 98, 44, + 32, 49, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95, 98,115,100,102, 95,103,108,111,115, +115,121, 40,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,102,108,111, 97,116, 32,114,111,117,103,104,110,101,115,115, 44, 32, +118,101, 99, 51, 32, 78, 44, 32,118,101, 99, 51, 32, 73, 44, 32,111,117,116, 32,118,101, 99, 52, 32,114,101,115,117,108,116, 41, + 13, 10,123, 13, 10, 9, 47, 42, 32, 97,109, 98,105,101,110,116, 32,108,105,103,104,116, 32, 42, 47, 13, 10, 9,118,101, 99, 51, + 32, 76, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 50, 41, 59, 13, 10, 13, 10, 9, 47, 42, 32,100,105,114,101, 99,116,105,111,110, + 97,108, 32,108,105,103,104,116,115, 32, 42, 47, 13, 10, 9,102,111,114, 40,105,110,116, 32,105, 32, 61, 32, 48, 59, 32,105, 32, + 60, 32, 78, 85, 77, 95, 76, 73, 71, 72, 84, 83, 59, 32,105, 43, 43, 41, 32,123, 13, 10, 9, 9,118,101, 99, 51, 32,108,105,103, +104,116, 95,112,111,115,105,116,105,111,110, 32, 61, 32,103,108, 95, 76,105,103,104,116, 83,111,117,114, 99,101, 91,105, 93, 46, +112,111,115,105,116,105,111,110, 46,120,121,122, 59, 13, 10, 9, 9,118,101, 99, 51, 32, 72, 32, 61, 32,103,108, 95, 76,105,103, +104,116, 83,111,117,114, 99,101, 91,105, 93, 46,104, 97,108,102, 86,101, 99,116,111,114, 46,120,121,122, 59, 13, 10, 9, 9,118, +101, 99, 51, 32,108,105,103,104,116, 95,100,105,102,102,117,115,101, 32, 61, 32,103,108, 95, 76,105,103,104,116, 83,111,117,114, + 99,101, 91,105, 93, 46,100,105,102,102,117,115,101, 46,114,103, 98, 59, 13, 10, 9, 9,118,101, 99, 51, 32,108,105,103,104,116, + 95,115,112,101, 99,117,108, 97,114, 32, 61, 32,103,108, 95, 76,105,103,104,116, 83,111,117,114, 99,101, 91,105, 93, 46,115,112, +101, 99,117,108, 97,114, 46,114,103, 98, 59, 13, 10, 13, 10, 9, 9, 47, 42, 32,119,101, 32,109,105,120, 32,105,110, 32,115,111, +109,101, 32,100,105,102,102,117,115,101, 32,115,111, 32,108,111,119, 32,114,111,117,103,104,110,101,115,115, 32,115,116,105,108, +108, 32,115,104,111,119,115, 32,117,112, 32, 42, 47, 13, 10, 9, 9,102,108,111, 97,116, 32, 98,115,100,102, 32, 61, 32, 48, 46, + 53, 42,112,111,119, 40,109, 97,120, 40,100,111,116, 40, 78, 44, 32, 72, 41, 44, 32, 48, 46, 48, 41, 44, 32, 49, 46, 48, 47,114, +111,117,103,104,110,101,115,115, 41, 59, 13, 10, 9, 9, 98,115,100,102, 32, 43, 61, 32, 48, 46, 53, 42,109, 97,120, 40,100,111, +116, 40, 78, 44, 32,108,105,103,104,116, 95,112,111,115,105,116,105,111,110, 41, 44, 32, 48, 46, 48, 41, 59, 13, 10, 9, 9, 76, + 32, 43, 61, 32,108,105,103,104,116, 95,115,112,101, 99,117,108, 97,114, 42, 98,115,100,102, 59, 13, 10, 9,125, 13, 10, 13, 10, + 9,114,101,115,117,108,116, 32, 61, 32,118,101, 99, 52, 40, 76, 42, 99,111,108,111,114, 46,114,103, 98, 44, 32, 49, 46, 48, 41, + 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95, 98,115,100,102, 95, 97,110,105,115,111,116,114,111,112, +105, 99, 40,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,102,108,111, 97,116, 32,114,111,117,103,104,110,101,115,115, 85, 44, + 32,102,108,111, 97,116, 32,114,111,117,103,104,110,101,115,115, 86, 44, 32,118,101, 99, 51, 32, 78, 44, 32,118,101, 99, 51, 32, + 73, 44, 32,111,117,116, 32,118,101, 99, 52, 32,114,101,115,117,108,116, 41, 13, 10,123, 13, 10, 9,110,111,100,101, 95, 98,115, +100,102, 95,100,105,102,102,117,115,101, 40, 99,111,108,111,114, 44, 32, 48, 46, 48, 44, 32, 78, 44, 32,114,101,115,117,108,116, + 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95, 98,115,100,102, 95,103,108, 97,115,115, 40,118,101, + 99, 52, 32, 99,111,108,111,114, 44, 32,102,108,111, 97,116, 32,114,111,117,103,104,110,101,115,115, 44, 32,102,108,111, 97,116, + 32,105,111,114, 44, 32,118,101, 99, 51, 32, 78, 44, 32,118,101, 99, 51, 32, 73, 44, 32,111,117,116, 32,118,101, 99, 52, 32,114, +101,115,117,108,116, 41, 13, 10,123, 13, 10, 9,110,111,100,101, 95, 98,115,100,102, 95,100,105,102,102,117,115,101, 40, 99,111, +108,111,114, 44, 32, 48, 46, 48, 44, 32, 78, 44, 32,114,101,115,117,108,116, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, + 32,110,111,100,101, 95, 98,115,100,102, 95,116,114, 97,110,115,108,117, 99,101,110,116, 40,118,101, 99, 52, 32, 99,111,108,111, +114, 44, 32,118,101, 99, 51, 32, 78, 44, 32,111,117,116, 32,118,101, 99, 52, 32,114,101,115,117,108,116, 41, 13, 10,123, 13, 10, 9,110,111,100,101, 95, 98,115,100,102, 95,100,105,102,102,117,115,101, 40, 99,111,108,111,114, 44, 32, 48, 46, 48, 44, 32, 78, - 44, 32,114,101,115,117,108,116, 41, 59, 10,125, 10, 10,118,111,105,100, 32,110,111,100,101, 95, 98,115,100,102, 95,116,114, 97, -110,115,108,117, 99,101,110,116, 40,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,118,101, 99, 51, 32, 78, 44, 32,111,117,116, - 32,118,101, 99, 52, 32,114,101,115,117,108,116, 41, 10,123, 10, 9,110,111,100,101, 95, 98,115,100,102, 95,100,105,102,102,117, -115,101, 40, 99,111,108,111,114, 44, 32, 48, 46, 48, 44, 32, 78, 44, 32,114,101,115,117,108,116, 41, 59, 10,125, 10, 10,118,111, -105,100, 32,110,111,100,101, 95, 98,115,100,102, 95,116,114, 97,110,115,112, 97,114,101,110,116, 40,118,101, 99, 52, 32, 99,111, -108,111,114, 44, 32,111,117,116, 32,118,101, 99, 52, 32,114,101,115,117,108,116, 41, 10,123, 10, 9, 47, 42, 32,116,104,105,115, - 32,105,115,110, 39,116, 32,114,105,103,104,116, 32, 42, 47, 10, 9,114,101,115,117,108,116, 46,114, 32, 61, 32, 99,111,108,111, -114, 46,114, 59, 10, 9,114,101,115,117,108,116, 46,103, 32, 61, 32, 99,111,108,111,114, 46,103, 59, 10, 9,114,101,115,117,108, -116, 46, 98, 32, 61, 32, 99,111,108,111,114, 46, 98, 59, 10, 9,114,101,115,117,108,116, 46, 97, 32, 61, 32, 48, 46, 48, 59, 10, -125, 10, 10,118,111,105,100, 32,110,111,100,101, 95, 98,115,100,102, 95,118,101,108,118,101,116, 40,118,101, 99, 52, 32, 99,111, -108,111,114, 44, 32,102,108,111, 97,116, 32,115,105,103,109, 97, 44, 32,118,101, 99, 51, 32, 78, 44, 32,111,117,116, 32,118,101, - 99, 52, 32,114,101,115,117,108,116, 41, 10,123, 10, 9,110,111,100,101, 95, 98,115,100,102, 95,100,105,102,102,117,115,101, 40, - 99,111,108,111,114, 44, 32, 48, 46, 48, 44, 32, 78, 44, 32,114,101,115,117,108,116, 41, 59, 10,125, 10, 10, 47, 42, 32,101,109, -105,115,115,105,111,110, 32, 42, 47, 10, 10,118,111,105,100, 32,110,111,100,101, 95,101,109,105,115,115,105,111,110, 40,118,101, - 99, 52, 32, 99,111,108,111,114, 44, 32,102,108,111, 97,116, 32,115,116,114,101,110,103,116,104, 44, 32,118,101, 99, 51, 32, 78, - 44, 32,111,117,116, 32,118,101, 99, 52, 32,114,101,115,117,108,116, 41, 10,123, 10, 9,114,101,115,117,108,116, 32, 61, 32, 99, -111,108,111,114, 42,115,116,114,101,110,103,116,104, 59, 10,125, 10, 10, 47, 42, 32, 99,108,111,115,117,114,101,115, 32, 42, 47, - 10, 10,118,111,105,100, 32,110,111,100,101, 95,109,105,120, 95,115,104, 97,100,101,114, 40,102,108,111, 97,116, 32,102, 97, 99, - 44, 32,118,101, 99, 52, 32,115,104, 97,100,101,114, 49, 44, 32,118,101, 99, 52, 32,115,104, 97,100,101,114, 50, 44, 32,111,117, -116, 32,118,101, 99, 52, 32,115,104, 97,100,101,114, 41, 10,123, 10, 9,115,104, 97,100,101,114, 32, 61, 32,109,105,120, 40,115, -104, 97,100,101,114, 49, 44, 32,115,104, 97,100,101,114, 50, 44, 32,102, 97, 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32,110, -111,100,101, 95, 97,100,100, 95,115,104, 97,100,101,114, 40,118,101, 99, 52, 32,115,104, 97,100,101,114, 49, 44, 32,118,101, 99, - 52, 32,115,104, 97,100,101,114, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,115,104, 97,100,101,114, 41, 10,123, 10, 9,115, -104, 97,100,101,114, 32, 61, 32,115,104, 97,100,101,114, 49, 32, 43, 32,115,104, 97,100,101,114, 50, 59, 10,125, 10, 10, 47, 42, - 32,102,114,101,115,110,101,108, 32, 42, 47, 10, 10,118,111,105,100, 32,110,111,100,101, 95,102,114,101,115,110,101,108, 40,102, -108,111, 97,116, 32,105,111,114, 44, 32,118,101, 99, 51, 32, 78, 44, 32,118,101, 99, 51, 32, 73, 44, 32,111,117,116, 32,102,108, -111, 97,116, 32,114,101,115,117,108,116, 41, 10,123, 10, 9,102,108,111, 97,116, 32,101,116, 97, 32, 61, 32,109, 97,120, 40,105, -111,114, 44, 32, 48, 46, 48, 48, 48, 48, 49, 41, 59, 10, 9,114,101,115,117,108,116, 32, 61, 32,102,114,101,115,110,101,108, 95, -100,105,101,108,101, 99,116,114,105, 99, 40, 73, 44, 32, 78, 44, 32,101,116, 97, 41, 59, 32, 47, 47, 98, 97, 99,107,102, 97, 99, -105,110,103, 40, 41, 63, 32, 49, 46, 48, 47,101,116, 97, 58, 32,101,116, 97, 41, 59, 10,125, 10, 10, 47, 42, 32,103,101,111,109, -101,116,114,121, 32, 42, 47, 10, 10,118,111,105,100, 32,110,111,100,101, 95,103,101,111,109,101,116,114,121, 40,118,101, 99, 51, - 32, 73, 44, 32,118,101, 99, 51, 32, 78, 44, 32,109, 97,116, 52, 32,116,111,119,111,114,108,100, 44, 10, 9,111,117,116, 32,118, -101, 99, 51, 32,112,111,115,105,116,105,111,110, 44, 32,111,117,116, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111, -117,116, 32,118,101, 99, 51, 32,116, 97,110,103,101,110,116, 44, 10, 9,111,117,116, 32,118,101, 99, 51, 32,116,114,117,101, 95, + 44, 32,114,101,115,117,108,116, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95, 98,115,100,102, 95, +116,114, 97,110,115,112, 97,114,101,110,116, 40,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,118,101, 99, 52, + 32,114,101,115,117,108,116, 41, 13, 10,123, 13, 10, 9, 47, 42, 32,116,104,105,115, 32,105,115,110, 39,116, 32,114,105,103,104, +116, 32, 42, 47, 13, 10, 9,114,101,115,117,108,116, 46,114, 32, 61, 32, 99,111,108,111,114, 46,114, 59, 13, 10, 9,114,101,115, +117,108,116, 46,103, 32, 61, 32, 99,111,108,111,114, 46,103, 59, 13, 10, 9,114,101,115,117,108,116, 46, 98, 32, 61, 32, 99,111, +108,111,114, 46, 98, 59, 13, 10, 9,114,101,115,117,108,116, 46, 97, 32, 61, 32, 48, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118, +111,105,100, 32,110,111,100,101, 95, 98,115,100,102, 95,118,101,108,118,101,116, 40,118,101, 99, 52, 32, 99,111,108,111,114, 44, + 32,102,108,111, 97,116, 32,115,105,103,109, 97, 44, 32,118,101, 99, 51, 32, 78, 44, 32,111,117,116, 32,118,101, 99, 52, 32,114, +101,115,117,108,116, 41, 13, 10,123, 13, 10, 9,110,111,100,101, 95, 98,115,100,102, 95,100,105,102,102,117,115,101, 40, 99,111, +108,111,114, 44, 32, 48, 46, 48, 44, 32, 78, 44, 32,114,101,115,117,108,116, 41, 59, 13, 10,125, 13, 10, 13, 10, 47, 42, 32,101, +109,105,115,115,105,111,110, 32, 42, 47, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,101,109,105,115,115,105,111,110, + 40,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,102,108,111, 97,116, 32,115,116,114,101,110,103,116,104, 44, 32,118,101, 99, + 51, 32, 78, 44, 32,111,117,116, 32,118,101, 99, 52, 32,114,101,115,117,108,116, 41, 13, 10,123, 13, 10, 9,114,101,115,117,108, +116, 32, 61, 32, 99,111,108,111,114, 42,115,116,114,101,110,103,116,104, 59, 13, 10,125, 13, 10, 13, 10, 47, 42, 32, 99,108,111, +115,117,114,101,115, 32, 42, 47, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,109,105,120, 95,115,104, 97,100,101,114, + 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32,115,104, 97,100,101,114, 49, 44, 32,118,101, 99, 52, 32,115, +104, 97,100,101,114, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,115,104, 97,100,101,114, 41, 13, 10,123, 13, 10, 9,115,104, + 97,100,101,114, 32, 61, 32,109,105,120, 40,115,104, 97,100,101,114, 49, 44, 32,115,104, 97,100,101,114, 50, 44, 32,102, 97, 99, + 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95, 97,100,100, 95,115,104, 97,100,101,114, 40,118,101, + 99, 52, 32,115,104, 97,100,101,114, 49, 44, 32,118,101, 99, 52, 32,115,104, 97,100,101,114, 50, 44, 32,111,117,116, 32,118,101, + 99, 52, 32,115,104, 97,100,101,114, 41, 13, 10,123, 13, 10, 9,115,104, 97,100,101,114, 32, 61, 32,115,104, 97,100,101,114, 49, + 32, 43, 32,115,104, 97,100,101,114, 50, 59, 13, 10,125, 13, 10, 13, 10, 47, 42, 32,102,114,101,115,110,101,108, 32, 42, 47, 13, + 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,102,114,101,115,110,101,108, 40,102,108,111, 97,116, 32,105,111,114, 44, 32, +118,101, 99, 51, 32, 78, 44, 32,118,101, 99, 51, 32, 73, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,114,101,115,117,108,116, + 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,101,116, 97, 32, 61, 32,109, 97,120, 40,105,111,114, 44, 32, 48, 46, 48, 48, + 48, 48, 49, 41, 59, 13, 10, 9,114,101,115,117,108,116, 32, 61, 32,102,114,101,115,110,101,108, 95,100,105,101,108,101, 99,116, +114,105, 99, 40, 73, 44, 32, 78, 44, 32,101,116, 97, 41, 59, 32, 47, 47, 98, 97, 99,107,102, 97, 99,105,110,103, 40, 41, 63, 32, + 49, 46, 48, 47,101,116, 97, 58, 32,101,116, 97, 41, 59, 13, 10,125, 13, 10, 13, 10, 47, 42, 32,103,101,111,109,101,116,114,121, + 32, 42, 47, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,103,101,111,109,101,116,114,121, 40,118,101, 99, 51, 32, 73, + 44, 32,118,101, 99, 51, 32, 78, 44, 32,109, 97,116, 52, 32,116,111,119,111,114,108,100, 44, 13, 10, 9,111,117,116, 32,118,101, + 99, 51, 32,112,111,115,105,116,105,111,110, 44, 32,111,117,116, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111,117, +116, 32,118,101, 99, 51, 32,116, 97,110,103,101,110,116, 44, 13, 10, 9,111,117,116, 32,118,101, 99, 51, 32,116,114,117,101, 95, 110,111,114,109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,109,105,110,103, 44, 32,111,117,116, 32,118, -101, 99, 51, 32,112, 97,114, 97,109,101,116,114,105, 99, 44, 10, 9,111,117,116, 32,102,108,111, 97,116, 32, 98, 97, 99,107,102, - 97, 99,105,110,103, 41, 10,123, 10, 9,112,111,115,105,116,105,111,110, 32, 61, 32, 40,116,111,119,111,114,108,100, 42,118,101, - 99, 52, 40, 73, 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 10, 9,110,111,114,109, 97,108, 32, 61, 32, 78, 59, 10, 9,116, - 97,110,103,101,110,116, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 41, 59, 10, 9,116,114,117,101, 95,110,111,114,109, 97,108, - 32, 61, 32, 78, 59, 10, 9,105,110, 99,111,109,105,110,103, 32, 61, 32, 73, 59, 10, 9,112, 97,114, 97,109,101,116,114,105, 99, - 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 41, 59, 10, 9, 98, 97, 99,107,102, 97, 99,105,110,103, 32, 61, 32, 48, 46, 48, 59, - 10,125, 10, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95, 99,111,111,114,100, 40,118,101, 99, 51, 32, 73, 44, 32, -118,101, 99, 51, 32, 78, 44, 32,109, 97,116, 52, 32,116,111,119,111,114,108,100, 44, 10, 9,118,101, 99, 51, 32, 97,116,116,114, - 95,111,114, 99,111, 44, 32,118,101, 99, 51, 32, 97,116,116,114, 95,117,118, 44, 10, 9,111,117,116, 32,118,101, 99, 51, 32,103, -101,110,101,114, 97,116,101,100, 44, 32,111,117,116, 32,118,101, 99, 51, 32,117,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32, -111, 98,106,101, 99,116, 44, 10, 9,111,117,116, 32,118,101, 99, 51, 32, 99, 97,109,101,114, 97, 44, 32,111,117,116, 32,118,101, - 99, 51, 32,119,105,110,100,111,119, 44, 32,111,117,116, 32,118,101, 99, 51, 32,114,101,102,108,101, 99,116,105,111,110, 41, 10, -123, 10, 9,103,101,110,101,114, 97,116,101,100, 32, 61, 32, 97,116,116,114, 95,111,114, 99,111, 59, 10, 9,117,118, 32, 61, 32, - 97,116,116,114, 95,117,118, 59, 10, 9,111, 98,106,101, 99,116, 32, 61, 32, 73, 59, 10, 9, 99, 97,109,101,114, 97, 32, 61, 32, - 73, 59, 10, 9,119,105,110,100,111,119, 32, 61, 32,103,108, 95, 70,114, 97,103, 67,111,111,114,100, 46,120,121,122, 59, 10, 9, -114,101,102,108,101, 99,116,105,111,110, 32, 61, 32,114,101,102,108,101, 99,116, 40, 78, 44, 32, 73, 41, 59, 10, 10,125, 10, 10, - 47, 42, 32,116,101,120,116,117,114,101,115, 32, 42, 47, 10, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95, 98,108, -101,110,100, 40,118,101, 99, 51, 32, 99,111, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99, 41, 10,123, 10, 9,102, - 97, 99, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95, 99,108,111,117,100, -115, 40,118,101, 99, 51, 32, 99,111, 44, 32,102,108,111, 97,116, 32,115,105,122,101, 44, 32,111,117,116, 32,118,101, 99, 52, 32, - 99,111,108,111,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99, 41, 10,123, 10, 9, 99,111,108,111,114, 32, 61, - 32,118,101, 99, 52, 40, 49, 46, 48, 41, 59, 10, 9,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32, -110,111,100,101, 95,116,101,120, 95,100,105,115,116,110,111,105,115,101, 40,118,101, 99, 51, 32, 99,111, 44, 32,102,108,111, 97, -116, 32,115,105,122,101, 44, 32,102,108,111, 97,116, 32,100,105,115,116,111,114,116,105,111,110, 44, 32,111,117,116, 32,102,108, -111, 97,116, 32,102, 97, 99, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,110, -111,100,101, 95,116,101,120, 95,101,110,118,105,114,111,110,109,101,110,116, 40,118,101, 99, 51, 32, 99,111, 44, 32,115, 97,109, -112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 41, 10,123, 10, 9,102, -108,111, 97,116, 32,117, 32, 61, 32, 40, 97,116, 97,110, 40, 99,111, 46,121, 44, 32, 99,111, 46,120, 41, 32, 43, 32, 77, 95, 80, - 73, 41, 47, 40, 50, 46, 48, 42, 77, 95, 80, 73, 41, 59, 10, 9,102,108,111, 97,116, 32,118, 32, 61, 32, 97,116, 97,110, 40, 99, -111, 46,122, 44, 32,104,121,112,111,116, 40, 99,111, 46,120, 44, 32, 99,111, 46,121, 41, 41, 47, 77, 95, 80, 73, 32, 43, 32, 48, - 46, 53, 59, 10, 10, 9, 99,111,108,111,114, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32,118,101, 99, - 50, 40,117, 44, 32,118, 41, 41, 59, 10,125, 10, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95,105,109, 97,103,101, - 40,118,101, 99, 51, 32, 99,111, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,111,117,116, 32,118,101, 99, - 52, 32, 99,111,108,111,114, 41, 10,123, 10, 9, 99,111,108,111,114, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, - 97, 44, 32, 99,111, 46,120,121, 41, 59, 10,125, 10, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95,109, 97,103,105, - 99, 40,118,101, 99, 51, 32,112, 44, 32,102,108,111, 97,116, 32,116,117,114, 98,117,108,101,110, 99,101, 44, 32,102,108,111, 97, -116, 32,110, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 41, 10,123, 10, 9,102,108,111, 97,116, 32,116,117, -114, 98, 32, 61, 32,116,117,114, 98,117,108,101,110, 99,101, 47, 53, 46, 48, 59, 10, 10, 9,102,108,111, 97,116, 32,120, 32, 61, - 32,115,105,110, 40, 40,112, 46,120, 32, 43, 32,112, 46,121, 32, 43, 32,112, 46,122, 41, 42, 53, 46, 48, 41, 59, 10, 9,102,108, -111, 97,116, 32,121, 32, 61, 32, 99,111,115, 40, 40, 45,112, 46,120, 32, 43, 32,112, 46,121, 32, 45, 32,112, 46,122, 41, 42, 53, - 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,122, 32, 61, 32, 45, 99,111,115, 40, 40, 45,112, 46,120, 32, 45, 32,112, 46,121, - 32, 43, 32,112, 46,122, 41, 42, 53, 46, 48, 41, 59, 10, 10, 9,105,102, 40,110, 32, 62, 32, 48, 46, 48, 41, 32,123, 10, 9, 9, -120, 32, 42, 61, 32,116,117,114, 98, 59, 10, 9, 9,121, 32, 42, 61, 32,116,117,114, 98, 59, 10, 9, 9,122, 32, 42, 61, 32,116, -117,114, 98, 59, 10, 9, 9,121, 32, 61, 32, 45, 99,111,115, 40,120, 45,121, 43,122, 41, 59, 10, 9, 9,121, 32, 42, 61, 32,116, -117,114, 98, 59, 10, 10, 9, 9,105,102, 40,110, 32, 62, 32, 49, 46, 48, 41, 32,123, 10, 9, 9, 9,120, 61, 32, 99,111,115, 40, -120, 45,121, 45,122, 41, 59, 10, 9, 9, 9,120, 32, 42, 61, 32,116,117,114, 98, 59, 10, 10, 9, 9, 9,105,102, 40,110, 32, 62, - 32, 50, 46, 48, 41, 32,123, 10, 9, 9, 9, 9,122, 61, 32,115,105,110, 40, 45,120, 45,121, 45,122, 41, 59, 10, 9, 9, 9, 9, -122, 32, 42, 61, 32,116,117,114, 98, 59, 10, 10, 9, 9, 9, 9,105,102, 40,110, 32, 62, 32, 51, 46, 48, 41, 32,123, 10, 9, 9, - 9, 9, 9,120, 61, 32, 45, 99,111,115, 40, 45,120, 43,121, 45,122, 41, 59, 10, 9, 9, 9, 9, 9,120, 32, 42, 61, 32,116,117, -114, 98, 59, 10, 10, 9, 9, 9, 9, 9,105,102, 40,110, 32, 62, 32, 52, 46, 48, 41, 32,123, 10, 9, 9, 9, 9, 9, 9,121, 61, - 32, 45,115,105,110, 40, 45,120, 43,121, 43,122, 41, 59, 10, 9, 9, 9, 9, 9, 9,121, 32, 42, 61, 32,116,117,114, 98, 59, 10, - 10, 9, 9, 9, 9, 9, 9,105,102, 40,110, 32, 62, 32, 53, 46, 48, 41, 32,123, 10, 9, 9, 9, 9, 9, 9, 9,121, 61, 32, 45, - 99,111,115, 40, 45,120, 43,121, 43,122, 41, 59, 10, 9, 9, 9, 9, 9, 9, 9,121, 32, 42, 61, 32,116,117,114, 98, 59, 10, 10, - 9, 9, 9, 9, 9, 9, 9,105,102, 40,110, 32, 62, 32, 54, 46, 48, 41, 32,123, 10, 9, 9, 9, 9, 9, 9, 9, 9,120, 61, 32, - 99,111,115, 40,120, 43,121, 43,122, 41, 59, 10, 9, 9, 9, 9, 9, 9, 9, 9,120, 32, 42, 61, 32,116,117,114, 98, 59, 10, 10, - 9, 9, 9, 9, 9, 9, 9, 9,105,102, 40,110, 32, 62, 32, 55, 46, 48, 41, 32,123, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9,122, - 61, 32,115,105,110, 40,120, 43,121, 45,122, 41, 59, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9,122, 32, 42, 61, 32,116,117,114, 98, - 59, 10, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9,105,102, 40,110, 32, 62, 32, 56, 46, 48, 41, 32,123, 10, 9, 9, 9, 9, 9, 9, - 9, 9, 9, 9,120, 61, 32, 45, 99,111,115, 40, 45,120, 45,121, 43,122, 41, 59, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,120, - 32, 42, 61, 32,116,117,114, 98, 59, 10, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,105,102, 40,110, 32, 62, 32, 57, 46, 48, 41, - 32,123, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,121, 61, 32, 45,115,105,110, 40,120, 45,121, 43,122, 41, 59, 10, 9, 9, - 9, 9, 9, 9, 9, 9, 9, 9, 9,121, 32, 42, 61, 32,116,117,114, 98, 59, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,125, 10, - 9, 9, 9, 9, 9, 9, 9, 9, 9,125, 10, 9, 9, 9, 9, 9, 9, 9, 9,125, 10, 9, 9, 9, 9, 9, 9, 9,125, 10, 9, 9, - 9, 9, 9, 9,125, 10, 9, 9, 9, 9, 9,125, 10, 9, 9, 9, 9,125, 10, 9, 9, 9,125, 10, 9, 9,125, 10, 9,125, 10, 10, - 9,105,102, 40,116,117,114, 98, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,116,117,114, 98, 32, 42, 61, 32, 50, 46, 48, - 59, 10, 9, 9,120, 32, 47, 61, 32,116,117,114, 98, 59, 10, 9, 9,121, 32, 47, 61, 32,116,117,114, 98, 59, 10, 9, 9,122, 32, - 47, 61, 32,116,117,114, 98, 59, 10, 9,125, 10, 10, 9, 99,111,108,111,114, 32, 61, 32,118,101, 99, 52, 40, 48, 46, 53, 32, 45, - 32,120, 44, 32, 48, 46, 53, 32, 45, 32,121, 44, 32, 48, 46, 53, 32, 45, 32,122, 44, 32, 49, 46, 48, 41, 59, 10,125, 10, 10,118, +101, 99, 51, 32,112, 97,114, 97,109,101,116,114,105, 99, 44, 13, 10, 9,111,117,116, 32,102,108,111, 97,116, 32, 98, 97, 99,107, +102, 97, 99,105,110,103, 41, 13, 10,123, 13, 10, 9,112,111,115,105,116,105,111,110, 32, 61, 32, 40,116,111,119,111,114,108,100, + 42,118,101, 99, 52, 40, 73, 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 13, 10, 9,110,111,114,109, 97,108, 32, 61, 32, 78, + 59, 13, 10, 9,116, 97,110,103,101,110,116, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 41, 59, 13, 10, 9,116,114,117,101, 95, +110,111,114,109, 97,108, 32, 61, 32, 78, 59, 13, 10, 9,105,110, 99,111,109,105,110,103, 32, 61, 32, 73, 59, 13, 10, 9,112, 97, +114, 97,109,101,116,114,105, 99, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 41, 59, 13, 10, 9, 98, 97, 99,107,102, 97, 99,105, +110,103, 32, 61, 32, 48, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95, 99,111, +111,114,100, 40,118,101, 99, 51, 32, 73, 44, 32,118,101, 99, 51, 32, 78, 44, 32,109, 97,116, 52, 32,116,111,119,111,114,108,100, + 44, 13, 10, 9,118,101, 99, 51, 32, 97,116,116,114, 95,111,114, 99,111, 44, 32,118,101, 99, 51, 32, 97,116,116,114, 95,117,118, + 44, 13, 10, 9,111,117,116, 32,118,101, 99, 51, 32,103,101,110,101,114, 97,116,101,100, 44, 32,111,117,116, 32,118,101, 99, 51, + 32,117,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111, 98,106,101, 99,116, 44, 13, 10, 9,111,117,116, 32,118,101, 99, 51, + 32, 99, 97,109,101,114, 97, 44, 32,111,117,116, 32,118,101, 99, 51, 32,119,105,110,100,111,119, 44, 32,111,117,116, 32,118,101, + 99, 51, 32,114,101,102,108,101, 99,116,105,111,110, 41, 13, 10,123, 13, 10, 9,103,101,110,101,114, 97,116,101,100, 32, 61, 32, + 97,116,116,114, 95,111,114, 99,111, 59, 13, 10, 9,117,118, 32, 61, 32, 97,116,116,114, 95,117,118, 59, 13, 10, 9,111, 98,106, +101, 99,116, 32, 61, 32, 73, 59, 13, 10, 9, 99, 97,109,101,114, 97, 32, 61, 32, 73, 59, 13, 10, 9,119,105,110,100,111,119, 32, + 61, 32,103,108, 95, 70,114, 97,103, 67,111,111,114,100, 46,120,121,122, 59, 13, 10, 9,114,101,102,108,101, 99,116,105,111,110, + 32, 61, 32,114,101,102,108,101, 99,116, 40, 78, 44, 32, 73, 41, 59, 13, 10, 13, 10,125, 13, 10, 13, 10, 47, 42, 32,116,101,120, +116,117,114,101,115, 32, 42, 47, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95, 98,108,101,110,100, 40, +118,101, 99, 51, 32, 99,111, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99, 41, 13, 10,123, 13, 10, 9,102, 97, 99, + 32, 61, 32, 49, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95, 99,108,111,117, +100,115, 40,118,101, 99, 51, 32, 99,111, 44, 32,102,108,111, 97,116, 32,115,105,122,101, 44, 32,111,117,116, 32,118,101, 99, 52, + 32, 99,111,108,111,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99, 41, 13, 10,123, 13, 10, 9, 99,111,108,111, +114, 32, 61, 32,118,101, 99, 52, 40, 49, 46, 48, 41, 59, 13, 10, 9,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 13, 10,125, 13, 10, + 13, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95,100,105,115,116,110,111,105,115,101, 40,118,101, 99, 51, 32, 99, +111, 44, 32,102,108,111, 97,116, 32,115,105,122,101, 44, 32,102,108,111, 97,116, 32,100,105,115,116,111,114,116,105,111,110, 44, + 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 13, + 10,125, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95,101,110,118,105,114,111,110,109,101,110,116, 40, +118,101, 99, 51, 32, 99,111, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,111,117,116, 32,118,101, 99, 52, + 32, 99,111,108,111,114, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,117, 32, 61, 32, 40, 97,116, 97,110, 40, 99,111, 46, +121, 44, 32, 99,111, 46,120, 41, 32, 43, 32, 77, 95, 80, 73, 41, 47, 40, 50, 46, 48, 42, 77, 95, 80, 73, 41, 59, 13, 10, 9,102, +108,111, 97,116, 32,118, 32, 61, 32, 97,116, 97,110, 40, 99,111, 46,122, 44, 32,104,121,112,111,116, 40, 99,111, 46,120, 44, 32, + 99,111, 46,121, 41, 41, 47, 77, 95, 80, 73, 32, 43, 32, 48, 46, 53, 59, 13, 10, 13, 10, 9, 99,111,108,111,114, 32, 61, 32,116, +101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32,118,101, 99, 50, 40,117, 44, 32,118, 41, 41, 59, 13, 10,125, 13, 10, 13, + 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95,105,109, 97,103,101, 40,118,101, 99, 51, 32, 99,111, 44, 32,115, 97, +109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 41, 13, 10,123, 13, + 10, 9, 99,111,108,111,114, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, 99,111, 46,120,121, 41, 59, + 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95,109, 97,103,105, 99, 40,118,101, 99, 51, 32, +112, 44, 32,102,108,111, 97,116, 32,116,117,114, 98,117,108,101,110, 99,101, 44, 32,102,108,111, 97,116, 32,110, 44, 32,111,117, +116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,116,117,114, 98, 32, 61, 32, +116,117,114, 98,117,108,101,110, 99,101, 47, 53, 46, 48, 59, 13, 10, 13, 10, 9,102,108,111, 97,116, 32,120, 32, 61, 32,115,105, +110, 40, 40,112, 46,120, 32, 43, 32,112, 46,121, 32, 43, 32,112, 46,122, 41, 42, 53, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97, +116, 32,121, 32, 61, 32, 99,111,115, 40, 40, 45,112, 46,120, 32, 43, 32,112, 46,121, 32, 45, 32,112, 46,122, 41, 42, 53, 46, 48, + 41, 59, 13, 10, 9,102,108,111, 97,116, 32,122, 32, 61, 32, 45, 99,111,115, 40, 40, 45,112, 46,120, 32, 45, 32,112, 46,121, 32, + 43, 32,112, 46,122, 41, 42, 53, 46, 48, 41, 59, 13, 10, 13, 10, 9,105,102, 40,110, 32, 62, 32, 48, 46, 48, 41, 32,123, 13, 10, + 9, 9,120, 32, 42, 61, 32,116,117,114, 98, 59, 13, 10, 9, 9,121, 32, 42, 61, 32,116,117,114, 98, 59, 13, 10, 9, 9,122, 32, + 42, 61, 32,116,117,114, 98, 59, 13, 10, 9, 9,121, 32, 61, 32, 45, 99,111,115, 40,120, 45,121, 43,122, 41, 59, 13, 10, 9, 9, +121, 32, 42, 61, 32,116,117,114, 98, 59, 13, 10, 13, 10, 9, 9,105,102, 40,110, 32, 62, 32, 49, 46, 48, 41, 32,123, 13, 10, 9, + 9, 9,120, 61, 32, 99,111,115, 40,120, 45,121, 45,122, 41, 59, 13, 10, 9, 9, 9,120, 32, 42, 61, 32,116,117,114, 98, 59, 13, + 10, 13, 10, 9, 9, 9,105,102, 40,110, 32, 62, 32, 50, 46, 48, 41, 32,123, 13, 10, 9, 9, 9, 9,122, 61, 32,115,105,110, 40, + 45,120, 45,121, 45,122, 41, 59, 13, 10, 9, 9, 9, 9,122, 32, 42, 61, 32,116,117,114, 98, 59, 13, 10, 13, 10, 9, 9, 9, 9, +105,102, 40,110, 32, 62, 32, 51, 46, 48, 41, 32,123, 13, 10, 9, 9, 9, 9, 9,120, 61, 32, 45, 99,111,115, 40, 45,120, 43,121, + 45,122, 41, 59, 13, 10, 9, 9, 9, 9, 9,120, 32, 42, 61, 32,116,117,114, 98, 59, 13, 10, 13, 10, 9, 9, 9, 9, 9,105,102, + 40,110, 32, 62, 32, 52, 46, 48, 41, 32,123, 13, 10, 9, 9, 9, 9, 9, 9,121, 61, 32, 45,115,105,110, 40, 45,120, 43,121, 43, +122, 41, 59, 13, 10, 9, 9, 9, 9, 9, 9,121, 32, 42, 61, 32,116,117,114, 98, 59, 13, 10, 13, 10, 9, 9, 9, 9, 9, 9,105, +102, 40,110, 32, 62, 32, 53, 46, 48, 41, 32,123, 13, 10, 9, 9, 9, 9, 9, 9, 9,121, 61, 32, 45, 99,111,115, 40, 45,120, 43, +121, 43,122, 41, 59, 13, 10, 9, 9, 9, 9, 9, 9, 9,121, 32, 42, 61, 32,116,117,114, 98, 59, 13, 10, 13, 10, 9, 9, 9, 9, + 9, 9, 9,105,102, 40,110, 32, 62, 32, 54, 46, 48, 41, 32,123, 13, 10, 9, 9, 9, 9, 9, 9, 9, 9,120, 61, 32, 99,111,115, + 40,120, 43,121, 43,122, 41, 59, 13, 10, 9, 9, 9, 9, 9, 9, 9, 9,120, 32, 42, 61, 32,116,117,114, 98, 59, 13, 10, 13, 10, + 9, 9, 9, 9, 9, 9, 9, 9,105,102, 40,110, 32, 62, 32, 55, 46, 48, 41, 32,123, 13, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9, +122, 61, 32,115,105,110, 40,120, 43,121, 45,122, 41, 59, 13, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9,122, 32, 42, 61, 32,116,117, +114, 98, 59, 13, 10, 13, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9,105,102, 40,110, 32, 62, 32, 56, 46, 48, 41, 32,123, 13, 10, 9, + 9, 9, 9, 9, 9, 9, 9, 9, 9,120, 61, 32, 45, 99,111,115, 40, 45,120, 45,121, 43,122, 41, 59, 13, 10, 9, 9, 9, 9, 9, + 9, 9, 9, 9, 9,120, 32, 42, 61, 32,116,117,114, 98, 59, 13, 10, 13, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,105,102, 40, +110, 32, 62, 32, 57, 46, 48, 41, 32,123, 13, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,121, 61, 32, 45,115,105,110, 40,120, + 45,121, 43,122, 41, 59, 13, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,121, 32, 42, 61, 32,116,117,114, 98, 59, 13, 10, 9, + 9, 9, 9, 9, 9, 9, 9, 9, 9,125, 13, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9,125, 13, 10, 9, 9, 9, 9, 9, 9, 9, 9, +125, 13, 10, 9, 9, 9, 9, 9, 9, 9,125, 13, 10, 9, 9, 9, 9, 9, 9,125, 13, 10, 9, 9, 9, 9, 9,125, 13, 10, 9, 9, + 9, 9,125, 13, 10, 9, 9, 9,125, 13, 10, 9, 9,125, 13, 10, 9,125, 13, 10, 13, 10, 9,105,102, 40,116,117,114, 98, 32, 33, + 61, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9,116,117,114, 98, 32, 42, 61, 32, 50, 46, 48, 59, 13, 10, 9, 9,120, 32, 47, 61, + 32,116,117,114, 98, 59, 13, 10, 9, 9,121, 32, 47, 61, 32,116,117,114, 98, 59, 13, 10, 9, 9,122, 32, 47, 61, 32,116,117,114, + 98, 59, 13, 10, 9,125, 13, 10, 13, 10, 9, 99,111,108,111,114, 32, 61, 32,118,101, 99, 52, 40, 48, 46, 53, 32, 45, 32,120, 44, + 32, 48, 46, 53, 32, 45, 32,121, 44, 32, 48, 46, 53, 32, 45, 32,122, 44, 32, 49, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118, 111,105,100, 32,110,111,100,101, 95,116,101,120, 95,109, 97,114, 98,108,101, 40,118,101, 99, 51, 32, 99,111, 44, 32,102,108,111, 97,116, 32,115,105,122,101, 44, 32,102,108,111, 97,116, 32,116,117,114, 98,117,108,101,110, 99,101, 44, 32,111,117,116, 32,102, -108,111, 97,116, 32,102, 97, 99, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32, -110,111,100,101, 95,116,101,120, 95,109,117,115,103,114, 97,118,101, 40,118,101, 99, 51, 32, 99,111, 44, 32,102,108,111, 97,116, - 32,115,105,122,101, 44, 32,102,108,111, 97,116, 32,100,105,109,101,110,115,105,111,110, 44, 32,102,108,111, 97,116, 32,108, 97, - 99,117,110, 97,114,105,116,121, 44, 32,102,108,111, 97,116, 32,111, 99,116, 97,118,101,115, 44, 32,102,108,111, 97,116, 32,111, -102,102,115,101,116, 44, 32,102,108,111, 97,116, 32,103, 97,105,110, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99, - 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, - 95,110,111,105,115,101, 40,118,101, 99, 51, 32, 99,111, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32, -111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99, 41, 10,123, 10, 9, 99,111,108,111,114, 32, 61, 32,118,101, 99, 52, 40, 49, - 46, 48, 41, 59, 10, 9,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,110,111,100,101, 95,116,101, -120, 95,115,107,121, 40,118,101, 99, 51, 32, 99,111, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 41, 10,123, - 10, 9, 99,111,108,111,114, 32, 61, 32,118,101, 99, 52, 40, 49, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,110,111,100, -101, 95,116,101,120, 95,115,116,117, 99, 99,105, 40,118,101, 99, 51, 32, 99,111, 44, 32,102,108,111, 97,116, 32,115,105,122,101, - 44, 32,102,108,111, 97,116, 32,116,117,114, 98,117,108,101,110, 99,101, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, - 99, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,110,111,100,101, 95,116,101, -120, 95,118,111,114,111,110,111,105, 40,118,101, 99, 51, 32, 99,111, 44, 32,102,108,111, 97,116, 32,115,105,122,101, 44, 32,102, -108,111, 97,116, 32,119,101,105,103,104,116, 49, 44, 32,102,108,111, 97,116, 32,119,101,105,103,104,116, 50, 44, 32,102,108,111, - 97,116, 32,119,101,105,103,104,116, 51, 44, 32,102,108,111, 97,116, 32,119,101,105,103,104,116, 52, 44, 32,102,108,111, 97,116, - 32,101,120,112,111,110,101,110,116, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,102, -108,111, 97,116, 32,102, 97, 99, 41, 10,123, 10, 9, 99,111,108,111,114, 32, 61, 32,118,101, 99, 52, 40, 49, 46, 48, 41, 59, 10, - 9,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95,119,111,111, +108,111, 97,116, 32,102, 97, 99, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 13, 10,125, 13, 10, 13, 10, +118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95,109,117,115,103,114, 97,118,101, 40,118,101, 99, 51, 32, 99,111, 44, 32, +102,108,111, 97,116, 32,115,105,122,101, 44, 32,102,108,111, 97,116, 32,100,105,109,101,110,115,105,111,110, 44, 32,102,108,111, + 97,116, 32,108, 97, 99,117,110, 97,114,105,116,121, 44, 32,102,108,111, 97,116, 32,111, 99,116, 97,118,101,115, 44, 32,102,108, +111, 97,116, 32,111,102,102,115,101,116, 44, 32,102,108,111, 97,116, 32,103, 97,105,110, 44, 32,111,117,116, 32,102,108,111, 97, +116, 32,102, 97, 99, 41, 13, 10,123, 13, 10, 9,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105, +100, 32,110,111,100,101, 95,116,101,120, 95,110,111,105,115,101, 40,118,101, 99, 51, 32, 99,111, 44, 32,111,117,116, 32,118,101, + 99, 52, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99, 41, 13, 10,123, 13, 10, 9, 99,111, +108,111,114, 32, 61, 32,118,101, 99, 52, 40, 49, 46, 48, 41, 59, 13, 10, 9,102, 97, 99, 32, 61, 32, 49, 46, 48, 59, 13, 10,125, + 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95,115,107,121, 40,118,101, 99, 51, 32, 99,111, 44, 32,111, +117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 41, 13, 10,123, 13, 10, 9, 99,111,108,111,114, 32, 61, 32,118,101, 99, 52, + 40, 49, 46, 48, 41, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95,115,116,117, 99, 99, +105, 40,118,101, 99, 51, 32, 99,111, 44, 32,102,108,111, 97,116, 32,115,105,122,101, 44, 32,102,108,111, 97,116, 32,116,117,114, + 98,117,108,101,110, 99,101, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99, 41, 13, 10,123, 13, 10, 9,102, 97, 99, + 32, 61, 32, 49, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95,118,111,114,111, +110,111,105, 40,118,101, 99, 51, 32, 99,111, 44, 32,102,108,111, 97,116, 32,115,105,122,101, 44, 32,102,108,111, 97,116, 32,119, +101,105,103,104,116, 49, 44, 32,102,108,111, 97,116, 32,119,101,105,103,104,116, 50, 44, 32,102,108,111, 97,116, 32,119,101,105, +103,104,116, 51, 44, 32,102,108,111, 97,116, 32,119,101,105,103,104,116, 52, 44, 32,102,108,111, 97,116, 32,101,120,112,111,110, +101,110,116, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, + 97, 99, 41, 13, 10,123, 13, 10, 9, 99,111,108,111,114, 32, 61, 32,118,101, 99, 52, 40, 49, 46, 48, 41, 59, 13, 10, 9,102, 97, + 99, 32, 61, 32, 49, 46, 48, 59, 13, 10,125, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,116,101,120, 95,119,111,111, 100, 40,118,101, 99, 51, 32, 99,111, 44, 32,102,108,111, 97,116, 32,115,105,122,101, 44, 32,102,108,111, 97,116, 32,116,117,114, - 98,117,108,101,110, 99,101, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99, 41, 10,123, 10, 9,102, 97, 99, 32, 61, - 32, 49, 46, 48, 59, 10,125, 10, 10, 47, 42, 32,108,105,103,104,116, 32,112, 97,116,104, 32, 42, 47, 10, 10,118,111,105,100, 32, -110,111,100,101, 95,108,105,103,104,116, 95,112, 97,116,104, 40, 10, 9,111,117,116, 32,102,108,111, 97,116, 32,105,115, 95, 99, - 97,109,101,114, 97, 95,114, 97,121, 44, 10, 9,111,117,116, 32,102,108,111, 97,116, 32,105,115, 95,115,104, 97,100,111,119, 95, -114, 97,121, 44, 10, 9,111,117,116, 32,102,108,111, 97,116, 32,105,115, 95,100,105,102,102,117,115,101, 95,114, 97,121, 44, 10, - 9,111,117,116, 32,102,108,111, 97,116, 32,105,115, 95,103,108,111,115,115,121, 95,114, 97,121, 44, 10, 9,111,117,116, 32,102, -108,111, 97,116, 32,105,115, 95,115,105,110,103,117,108, 97,114, 95,114, 97,121, 44, 10, 9,111,117,116, 32,102,108,111, 97,116, - 32,105,115, 95,114,101,102,108,101, 99,116,105,111,110, 95,114, 97,121, 44, 10, 9,111,117,116, 32,102,108,111, 97,116, 32,105, -115, 95,116,114, 97,110,115,109,105,115,115,105,111,110, 95,114, 97,121, 41, 10,123, 10, 9,105,115, 95, 99, 97,109,101,114, 97, - 95,114, 97,121, 32, 61, 32, 49, 46, 48, 59, 10, 9,105,115, 95,115,104, 97,100,111,119, 95,114, 97,121, 32, 61, 32, 48, 46, 48, - 59, 10, 9,105,115, 95,100,105,102,102,117,115,101, 95,114, 97,121, 32, 61, 32, 48, 46, 48, 59, 10, 9,105,115, 95,103,108,111, -115,115,121, 95,114, 97,121, 32, 61, 32, 48, 46, 48, 59, 10, 9,105,115, 95,115,105,110,103,117,108, 97,114, 95,114, 97,121, 32, - 61, 32, 48, 46, 48, 59, 10, 9,105,115, 95,114,101,102,108,101, 99,116,105,111,110, 95,114, 97,121, 32, 61, 32, 48, 46, 48, 59, - 10, 9,105,115, 95,116,114, 97,110,115,109,105,115,115,105,111,110, 95,114, 97,121, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10, - 47, 42, 32,111,117,116,112,117,116, 32, 42, 47, 10, 10,118,111,105,100, 32,110,111,100,101, 95,111,117,116,112,117,116, 95,109, - 97,116,101,114,105, 97,108, 40,118,101, 99, 52, 32,115,117,114,102, 97, 99,101, 44, 32,118,101, 99, 52, 32,118,111,108,117,109, -101, 44, 32,102,108,111, 97,116, 32,100,105,115,112,108, 97, 99,101,109,101,110,116, 44, 32,111,117,116, 32,118,101, 99, 52, 32, -114,101,115,117,108,116, 41, 10,123, 10, 9,114,101,115,117,108,116, 32, 61, 32,115,117,114,102, 97, 99,101, 59, 10,125, 10, 10, + 98,117,108,101,110, 99,101, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99, 41, 13, 10,123, 13, 10, 9,102, 97, 99, + 32, 61, 32, 49, 46, 48, 59, 13, 10,125, 13, 10, 13, 10, 47, 42, 32,108,105,103,104,116, 32,112, 97,116,104, 32, 42, 47, 13, 10, + 13, 10,118,111,105,100, 32,110,111,100,101, 95,108,105,103,104,116, 95,112, 97,116,104, 40, 13, 10, 9,111,117,116, 32,102,108, +111, 97,116, 32,105,115, 95, 99, 97,109,101,114, 97, 95,114, 97,121, 44, 13, 10, 9,111,117,116, 32,102,108,111, 97,116, 32,105, +115, 95,115,104, 97,100,111,119, 95,114, 97,121, 44, 13, 10, 9,111,117,116, 32,102,108,111, 97,116, 32,105,115, 95,100,105,102, +102,117,115,101, 95,114, 97,121, 44, 13, 10, 9,111,117,116, 32,102,108,111, 97,116, 32,105,115, 95,103,108,111,115,115,121, 95, +114, 97,121, 44, 13, 10, 9,111,117,116, 32,102,108,111, 97,116, 32,105,115, 95,115,105,110,103,117,108, 97,114, 95,114, 97,121, + 44, 13, 10, 9,111,117,116, 32,102,108,111, 97,116, 32,105,115, 95,114,101,102,108,101, 99,116,105,111,110, 95,114, 97,121, 44, + 13, 10, 9,111,117,116, 32,102,108,111, 97,116, 32,105,115, 95,116,114, 97,110,115,109,105,115,115,105,111,110, 95,114, 97,121, + 41, 13, 10,123, 13, 10, 9,105,115, 95, 99, 97,109,101,114, 97, 95,114, 97,121, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9,105,115, + 95,115,104, 97,100,111,119, 95,114, 97,121, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,105,115, 95,100,105,102,102,117,115,101, 95, +114, 97,121, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,105,115, 95,103,108,111,115,115,121, 95,114, 97,121, 32, 61, 32, 48, 46, 48, + 59, 13, 10, 9,105,115, 95,115,105,110,103,117,108, 97,114, 95,114, 97,121, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,105,115, 95, +114,101,102,108,101, 99,116,105,111,110, 95,114, 97,121, 32, 61, 32, 48, 46, 48, 59, 13, 10, 9,105,115, 95,116,114, 97,110,115, +109,105,115,115,105,111,110, 95,114, 97,121, 32, 61, 32, 48, 46, 48, 59, 13, 10,125, 13, 10, 13, 10, 47, 42, 32,111,117,116,112, +117,116, 32, 42, 47, 13, 10, 13, 10,118,111,105,100, 32,110,111,100,101, 95,111,117,116,112,117,116, 95,109, 97,116,101,114,105, + 97,108, 40,118,101, 99, 52, 32,115,117,114,102, 97, 99,101, 44, 32,118,101, 99, 52, 32,118,111,108,117,109,101, 44, 32,102,108, +111, 97,116, 32,100,105,115,112,108, 97, 99,101,109,101,110,116, 44, 32,111,117,116, 32,118,101, 99, 52, 32,114,101,115,117,108, +116, 41, 13, 10,123, 13, 10, 9,114,101,115,117,108,116, 32, 61, 32,115,117,114,102, 97, 99,101, 59, 13, 10,125, 13, 10, 13, 10, 0}; diff --git a/source/blender/makesdna/DNA_texture_types.h b/source/blender/makesdna/DNA_texture_types.h index 8f7db2a570f..5d060f152aa 100644 --- a/source/blender/makesdna/DNA_texture_types.h +++ b/source/blender/makesdna/DNA_texture_types.h @@ -494,6 +494,7 @@ typedef struct ColorMapping { #define MTEX_BUMP_OBJECTSPACE 1024 #define MTEX_BUMP_TEXTURESPACE 2048 /* #define MTEX_BUMP_FLIPPED 4096 */ /* UNUSED */ +#define MTEX_BICUBIC_BUMP 8192 /* blendtype */ #define MTEX_BLEND 0 diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c index 35c720b5069..40b6d5b96e4 100644 --- a/source/blender/makesrna/intern/rna_material.c +++ b/source/blender/makesrna/intern/rna_material.c @@ -413,8 +413,10 @@ static void rna_def_material_mtex(BlenderRNA *brna) static EnumPropertyItem prop_bump_method_items[] = { {0, "BUMP_ORIGINAL", 0, "Original", ""}, {MTEX_COMPAT_BUMP, "BUMP_COMPATIBLE", 0, "Compatible", ""}, - {MTEX_3TAP_BUMP, "BUMP_DEFAULT", 0, "Default", ""}, - {MTEX_5TAP_BUMP, "BUMP_BEST_QUALITY", 0, "Best Quality", ""}, + {MTEX_3TAP_BUMP, "BUMP_LOW_QUALITY", 0, "Low Quality", "Use 3 tap filtering"}, + {MTEX_5TAP_BUMP, "BUMP_MEDIUM_QUALITY", 0, "Medium Quality", "Use 5 tap filtering"}, + {MTEX_BICUBIC_BUMP, "BUMP_BEST_QUALITY", 0, "Best Quality", "Use bicubic filtering. Requires OpenGL 3.0+. " + "It will fall back on medium setting for other systems"}, {0, NULL, 0, NULL, NULL}}; static EnumPropertyItem prop_bump_space_items[] = { diff --git a/source/blender/render/intern/source/render_texture.c b/source/blender/render/intern/source/render_texture.c index fe9312e37d5..07e2cc3a701 100644 --- a/source/blender/render/intern/source/render_texture.c +++ b/source/blender/render/intern/source/render_texture.c @@ -2191,7 +2191,7 @@ void do_material_tex(ShadeInput *shi, Render *re) found_deriv_map = (tex->type==TEX_IMAGE) && (tex->imaflag & TEX_DERIVATIVEMAP); use_compat_bump= (mtex->texflag & MTEX_COMPAT_BUMP); - use_ntap_bump= ((mtex->texflag & (MTEX_3TAP_BUMP|MTEX_5TAP_BUMP))!=0 || found_deriv_map!=0) ? 1 : 0; + use_ntap_bump= ((mtex->texflag & (MTEX_3TAP_BUMP|MTEX_5TAP_BUMP|MTEX_BICUBIC_BUMP))!=0 || found_deriv_map!=0) ? 1 : 0; /* XXX texture node trees don't work for this yet */ if(tex->nodetree && tex->use_nodes) { diff --git a/source/blender/windowmanager/intern/wm_init_exit.c b/source/blender/windowmanager/intern/wm_init_exit.c index 2695f3d680d..7026323bf97 100644 --- a/source/blender/windowmanager/intern/wm_init_exit.c +++ b/source/blender/windowmanager/intern/wm_init_exit.c @@ -176,6 +176,7 @@ void WM_init(bContext *C, int argc, const char **argv) GPU_extensions_init(); GPU_set_mipmap(!(U.gameflags & USER_DISABLE_MIPMAP)); GPU_set_anisotropic(U.anisotropic_filter); + GPU_code_generate_glsl_lib(); UI_init(); } From 490536561dd353e8083ce5671d0f40c86f50cf04 Mon Sep 17 00:00:00 2001 From: Morten Mikkelsen Date: Thu, 15 Dec 2011 15:48:44 +0000 Subject: [PATCH 44/70] reenabled auto scale for derivative maps --- source/blender/blenkernel/intern/DerivedMesh.c | 5 ----- source/blender/render/intern/source/render_texture.c | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/source/blender/blenkernel/intern/DerivedMesh.c b/source/blender/blenkernel/intern/DerivedMesh.c index 0087b91c615..06f29b95825 100644 --- a/source/blender/blenkernel/intern/DerivedMesh.c +++ b/source/blender/blenkernel/intern/DerivedMesh.c @@ -2006,13 +2006,8 @@ void DM_vertex_attributes_from_gpu(DerivedMesh *dm, GPUVertexAttribs *gattribs, tfdata = fdata; /* calc auto bump scale if necessary */ -#if 0 if(dm->auto_bump_scale<=0.0f) DM_calc_auto_bump_scale(dm); -#else - dm->auto_bump_scale = 1.0f; // will revert this after release -#endif - /* add a tangent layer if necessary */ for(b = 0; b < gattribs->totlayer; b++) diff --git a/source/blender/render/intern/source/render_texture.c b/source/blender/render/intern/source/render_texture.c index 07e2cc3a701..202c7dcfada 100644 --- a/source/blender/render/intern/source/render_texture.c +++ b/source/blender/render/intern/source/render_texture.c @@ -1968,8 +1968,8 @@ static int ntap_bump_compute(NTapBump *ntap_bump, ShadeInput *shi, MTex *mtex, T if(shi->obr->ob->derivedFinal) { auto_bump = shi->obr->ob->derivedFinal->auto_bump_scale; - auto_bump /= sqrtf((float) (dimx*dimy)); } + auto_bump /= sqrtf((float) (dimx*dimy)); // this variant using a derivative map is described here // http://mmikkelsen3d.blogspot.com/2011/07/derivative-maps.html From 0dbd9ea73f7f86e02d9aae6c65c3ce5e3c4ecd4b Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 15 Dec 2011 19:32:57 +0000 Subject: [PATCH 45/70] CURVE_OT_extrude doesn't have type property, not sure where it came from here. --- source/blender/editors/curve/curve_ops.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/blender/editors/curve/curve_ops.c b/source/blender/editors/curve/curve_ops.c index 8df54670bd4..8b2e1bba6cf 100644 --- a/source/blender/editors/curve/curve_ops.c +++ b/source/blender/editors/curve/curve_ops.c @@ -151,8 +151,7 @@ void ED_operatormacros_curve(void) ot= WM_operatortype_append_macro("CURVE_OT_extrude_move", "Extrude Curve and Move", OPTYPE_UNDO|OPTYPE_REGISTER); ot->description = "Extrude curve and move result"; - otmacro= WM_operatortype_macro_define(ot, "CURVE_OT_extrude"); - RNA_enum_set(otmacro->ptr, "type", 1); + WM_operatortype_macro_define(ot, "CURVE_OT_extrude"); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_enum_set(otmacro->ptr, "proportional", 0); RNA_boolean_set(otmacro->ptr, "mirror", 0); From dbebf4ff5370a5b99899c71d2911c8e0835acdc6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Dec 2011 00:06:01 +0000 Subject: [PATCH 46/70] fix [#29635] Attempts to import the site module are met with a TypeError exception. --- source/blender/python/intern/bpy_app.c | 1 + source/blender/python/intern/bpy_app_handlers.c | 1 + 2 files changed, 2 insertions(+) diff --git a/source/blender/python/intern/bpy_app.c b/source/blender/python/intern/bpy_app.c index 1f99503202a..a10be098a61 100644 --- a/source/blender/python/intern/bpy_app.c +++ b/source/blender/python/intern/bpy_app.c @@ -260,6 +260,7 @@ PyObject *BPY_app_struct(void) /* prevent user from creating new instances */ BlenderAppType.tp_init= NULL; BlenderAppType.tp_new= NULL; + BlenderAppType.tp_hash= (hashfunc)_Py_HashPointer; /* without this we can't do set(sys.modules) [#29635] */ /* kindof a hack ontop of PyStructSequence */ py_struct_seq_getset_init(); diff --git a/source/blender/python/intern/bpy_app_handlers.c b/source/blender/python/intern/bpy_app_handlers.c index edab92b295b..dd512791e85 100644 --- a/source/blender/python/intern/bpy_app_handlers.c +++ b/source/blender/python/intern/bpy_app_handlers.c @@ -210,6 +210,7 @@ PyObject *BPY_app_handlers_struct(void) /* prevent user from creating new instances */ BlenderAppCbType.tp_init= NULL; BlenderAppCbType.tp_new= NULL; + BlenderAppCbType.tp_hash= (hashfunc)_Py_HashPointer; /* without this we can't do set(sys.modules) [#29635] */ /* assign the C callbacks */ if (ret) { From cad9cb563d48bd6787eb7ac8bc773ce625a8ae1a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Dec 2011 03:06:56 +0000 Subject: [PATCH 47/70] fix own error [#29631] frame is lost from driver namespace after reload --- source/blender/python/intern/bpy_driver.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/blender/python/intern/bpy_driver.c b/source/blender/python/intern/bpy_driver.c index db408374b7f..e628cb891d8 100644 --- a/source/blender/python/intern/bpy_driver.c +++ b/source/blender/python/intern/bpy_driver.c @@ -94,13 +94,12 @@ int bpy_pydriver_create_dict(void) /* note, this function should do nothing most runs, only when changing frame */ static PyObject *bpy_pydriver_InternStr__frame= NULL; +/* not thread safe but neither is python */ +static float bpy_pydriver_evaltime_prev= FLT_MAX; static void bpy_pydriver_update_dict(const float evaltime) { - /* not thread safe but neither is python */ - static float evaltime_prev= FLT_MAX; - - if (evaltime_prev != evaltime) { + if (bpy_pydriver_evaltime_prev != evaltime) { /* currently only update the frame */ if (bpy_pydriver_InternStr__frame == NULL) { @@ -111,7 +110,7 @@ static void bpy_pydriver_update_dict(const float evaltime) bpy_pydriver_InternStr__frame, PyFloat_FromDouble(evaltime)); - evaltime_prev= evaltime; + bpy_pydriver_evaltime_prev= evaltime; } } @@ -137,6 +136,7 @@ void BPY_driver_reset(void) if (bpy_pydriver_InternStr__frame) { Py_DECREF(bpy_pydriver_InternStr__frame); bpy_pydriver_InternStr__frame= NULL; + bpy_pydriver_evaltime_prev= FLT_MAX; } if (use_gil) From eb09043411eb5c1b5e08ecc7a7087d8bfdc3d8d6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Dec 2011 03:45:44 +0000 Subject: [PATCH 48/70] fix [#29626] Warp tool: stuck Angle value --- source/blender/editors/transform/transform_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/transform/transform_ops.c b/source/blender/editors/transform/transform_ops.c index 7951fe0ee02..90f95bea696 100644 --- a/source/blender/editors/transform/transform_ops.c +++ b/source/blender/editors/transform/transform_ops.c @@ -632,7 +632,7 @@ void TRANSFORM_OT_warp(struct wmOperatorType *ot) ot->cancel = transform_cancel; ot->poll = ED_operator_screenactive; - RNA_def_float_rotation(ot->srna, "value", 1, NULL, -FLT_MAX, FLT_MAX, "Angle", "", 0, 1); + RNA_def_float_rotation(ot->srna, "value", 1, NULL, -FLT_MAX, FLT_MAX, "Angle", "", -M_PI*2, M_PI*2); Transform_Properties(ot, P_PROPORTIONAL|P_MIRROR|P_SNAP); // XXX Warp axis? From 724868b400882c93c83e42f17884426b23a09104 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Dec 2011 04:01:08 +0000 Subject: [PATCH 49/70] fix [#29620] Topology Mirror: not refreshing vertex UUIDs --- source/blender/editors/mesh/meshtools.c | 26 +++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/source/blender/editors/mesh/meshtools.c b/source/blender/editors/mesh/meshtools.c index 707936351cf..3ea872a93de 100644 --- a/source/blender/editors/mesh/meshtools.c +++ b/source/blender/editors/mesh/meshtools.c @@ -873,7 +873,8 @@ static int MirrTopo_item_sort(const void *v1, const void *v2) } static long *mesh_topo_lookup = NULL; -static int mesh_topo_lookup_tot = -1; +static int mesh_topo_lookup_vert_tot = -1; +static int mesh_topo_lookup_edge_tot = -1; static int mesh_topo_lookup_mode = -1; /* mode is 's' start, or 'e' end, or 'u' use */ @@ -884,8 +885,10 @@ long mesh_mirrtopo_table(Object *ob, char mode) Mesh *me= ob->data; if( (mesh_topo_lookup==NULL) || (mesh_topo_lookup_mode != ob->mode) || - (me->edit_mesh && me->edit_mesh->totvert != mesh_topo_lookup_tot) || - (me->edit_mesh==NULL && me->totvert != mesh_topo_lookup_tot) + (me->edit_mesh && (me->edit_mesh->totvert != mesh_topo_lookup_vert_tot)) || + (me->edit_mesh && (me->edit_mesh->totedge != mesh_topo_lookup_edge_tot)) || + (me->edit_mesh==NULL && me->totvert != mesh_topo_lookup_vert_tot) || + (me->edit_mesh==NULL && me->totedge != mesh_topo_lookup_edge_tot) ) { mesh_mirrtopo_table(ob, 's'); } @@ -899,7 +902,8 @@ long mesh_mirrtopo_table(Object *ob, char mode) /* editmode*/ EditEdge *eed; - int a, last, totvert; + int a, last; + int totvert, totedge; int totUnique= -1, totUniqueOld= -1; MIRRHASH_TYPE *MirrTopoHash = NULL; @@ -930,12 +934,16 @@ long mesh_mirrtopo_table(Object *ob, char mode) /* Initialize the vert-edge-user counts used to detect unique topology */ if(em) { - for(eed=em->edges.first; eed; eed= eed->next) { + totedge= 0; + + for(eed=em->edges.first; eed; eed= eed->next, totedge++) { MirrTopoHash[eed->v1->tmp.l]++; MirrTopoHash[eed->v2->tmp.l]++; } } else { - for(a=0, medge=me->medge; atotedge; a++, medge++) { + totedge= me->totedge; + + for(a=0, medge=me->medge; a < me->totedge; a++, medge++) { MirrTopoHash[medge->v1]++; MirrTopoHash[medge->v2]++; } @@ -1046,14 +1054,16 @@ long mesh_mirrtopo_table(Object *ob, char mode) MEM_freeN( MirrTopoHash ); MEM_freeN( MirrTopoHash_Prev ); - mesh_topo_lookup_tot = totvert; + mesh_topo_lookup_vert_tot = totvert; + mesh_topo_lookup_edge_tot = totedge; } else if(mode=='e') { /* end table */ if (mesh_topo_lookup) { MEM_freeN(mesh_topo_lookup); } mesh_topo_lookup = NULL; - mesh_topo_lookup_tot= -1; + mesh_topo_lookup_vert_tot= -1; + mesh_topo_lookup_edge_tot= -1; } return 0; } From d39adcb478955ed26a9705be87bf94f5eacd6957 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Dec 2011 07:27:56 +0000 Subject: [PATCH 50/70] minor cleanup to mirror code - MirrTopoPair.hash was 'long' when only needed to be 'int' - use 'intptr_t' rather than 'long' when the value is cast back to a pointer. --- source/blender/editors/include/ED_mesh.h | 4 +- source/blender/editors/mesh/meshtools.c | 109 ++++++++++++----------- 2 files changed, 57 insertions(+), 56 deletions(-) diff --git a/source/blender/editors/include/ED_mesh.h b/source/blender/editors/include/ED_mesh.h index 2cd610e1fe4..f75f2921e51 100644 --- a/source/blender/editors/include/ED_mesh.h +++ b/source/blender/editors/include/ED_mesh.h @@ -87,8 +87,8 @@ struct rcti; /* meshtools.c */ -intptr_t mesh_octree_table(struct Object *ob, struct EditMesh *em, float *co, char mode); -long mesh_mirrtopo_table(struct Object *ob, char mode); +intptr_t mesh_octree_table(struct Object *ob, struct EditMesh *em, float *co, char mode); +int mesh_mirrtopo_table(struct Object *ob, char mode); struct EditVert *editmesh_get_x_mirror_vert(struct Object *ob, struct EditMesh *em, struct EditVert *eve, float *co, int index); int mesh_get_x_mirror_vert(struct Object *ob, int index); diff --git a/source/blender/editors/mesh/meshtools.c b/source/blender/editors/mesh/meshtools.c index 3ea872a93de..1022d247d68 100644 --- a/source/blender/editors/mesh/meshtools.c +++ b/source/blender/editors/mesh/meshtools.c @@ -671,17 +671,17 @@ static void mesh_octree_free_node(MocNode **bt) /* temporal define, just to make nicer code below */ -#define MOC_ADDNODE(vx, vy, vz) mesh_octree_add_node(basetable + ((vx)*MOC_RES*MOC_RES) + (vy)*MOC_RES + (vz), index) +#define MOC_INDEX(vx, vy, vz) (((vx)*MOC_RES*MOC_RES) + (vy)*MOC_RES + (vz)) static void mesh_octree_add_nodes(MocNode **basetable, float *co, float *offs, float *div, intptr_t index) { float fx, fy, fz; int vx, vy, vz; - if (!finite(co[0]) || - !finite(co[1]) || - !finite(co[2]) - ) { + if ( !finite(co[0]) || + !finite(co[1]) || + !finite(co[2])) + { return; } @@ -692,33 +692,33 @@ static void mesh_octree_add_nodes(MocNode **basetable, float *co, float *offs, f CLAMP(fy, 0.0f, MOC_RES-MOC_THRESH); CLAMP(fz, 0.0f, MOC_RES-MOC_THRESH); - vx= floor(fx); - vy= floor(fy); - vz= floor(fz); - - MOC_ADDNODE(vx, vy, vz); - - if( vx>0 ) - if( fx-((float)vx)-MOC_THRESH < 0.0f) - MOC_ADDNODE(vx-1, vy, vz); - if( vx 1.0f) - MOC_ADDNODE(vx+1, vy, vz); + vx= (int)floorf(fx); + vy= (int)floorf(fy); + vz= (int)floorf(fz); - if( vy>0 ) - if( fy-((float)vy)-MOC_THRESH < 0.0f) - MOC_ADDNODE(vx, vy-1, vz); - if( vy 1.0f) - MOC_ADDNODE(vx, vy+1, vz); + mesh_octree_add_node(basetable + MOC_INDEX(vx, vy, vz), index); + + if (vx > 0) + if (fx-((float)vx)-MOC_THRESH < 0.0f) + mesh_octree_add_node(basetable + MOC_INDEX(vx - 1, vy, vz), index); + if (vx < MOC_RES - 2) + if (fx-((float)vx)+MOC_THRESH > 1.0f) + mesh_octree_add_node(basetable + MOC_INDEX(vx + 1, vy, vz), index); + + if (vy > 0) + if (fy-((float)vy)-MOC_THRESH < 0.0f) + mesh_octree_add_node(basetable + MOC_INDEX(vx, vy - 1, vz), index); + if (vy < MOC_RES - 2) + if (fy-((float)vy)+MOC_THRESH > 1.0f) + mesh_octree_add_node(basetable + MOC_INDEX(vx, vy + 1, vz), index); + + if (vz > 0) + if (fz-((float)vz)-MOC_THRESH < 0.0f) + mesh_octree_add_node(basetable + MOC_INDEX(vx, vy, vz - 1), index); + if (vz 1.0f) + mesh_octree_add_node(basetable + MOC_INDEX(vx, vy, vz + 1), index); - if( vz>0 ) - if( fz-((float)vz)-MOC_THRESH < 0.0f) - MOC_ADDNODE(vx, vy, vz-1); - if( vz 1.0f) - MOC_ADDNODE(vx, vy, vz+1); - } static intptr_t mesh_octree_find_index(MocNode **bt, MVert *mvert, float *co) @@ -851,35 +851,36 @@ intptr_t mesh_octree_table(Object *ob, EditMesh *em, float *co, char mode) /* ********************* MESH VERTEX MIRR TOPO LOOKUP *************** */ -#define MIRRHASH_TYPE int +typedef int MirrTopoHash_t; -typedef struct MirrTopoPair { - long hash; - int vIndex; -} MirrTopoPair; +typedef struct MirrTopoPair_t { + MirrTopoHash_t hash; + int vIndex; +} MirrTopoPair_t; static int MirrTopo_long_sort(const void *l1, const void *l2) { - if( (MIRRHASH_TYPE)(intptr_t)l1 > (MIRRHASH_TYPE)(intptr_t)l2 ) return 1; - else if( (MIRRHASH_TYPE)(intptr_t)l1 < (MIRRHASH_TYPE)(intptr_t)l2 ) return -1; + if ((MirrTopoHash_t)(intptr_t)l1 > (MirrTopoHash_t)(intptr_t)l2 ) return 1; + else if ((MirrTopoHash_t)(intptr_t)l1 < (MirrTopoHash_t)(intptr_t)l2 ) return -1; return 0; } static int MirrTopo_item_sort(const void *v1, const void *v2) { - if( ((MirrTopoPair *)v1)->hash > ((MirrTopoPair *)v2)->hash ) return 1; - else if( ((MirrTopoPair *)v1)->hash < ((MirrTopoPair *)v2)->hash ) return -1; + if (((MirrTopoPair_t *)v1)->hash > ((MirrTopoPair_t *)v2)->hash ) return 1; + else if (((MirrTopoPair_t *)v1)->hash < ((MirrTopoPair_t *)v2)->hash ) return -1; return 0; } -static long *mesh_topo_lookup = NULL; +static intptr_t *mesh_topo_lookup = NULL; static int mesh_topo_lookup_vert_tot = -1; static int mesh_topo_lookup_edge_tot = -1; -static int mesh_topo_lookup_mode = -1; +static int mesh_topo_lookup_mode = -1; /* mode is 's' start, or 'e' end, or 'u' use */ /* if end, ob can be NULL */ -long mesh_mirrtopo_table(Object *ob, char mode) +/* note, is supposed return -1 on error, which callers are currently checking for, but is not used so far */ +int mesh_mirrtopo_table(Object *ob, char mode) { if(mode=='u') { /* use table */ Mesh *me= ob->data; @@ -906,9 +907,9 @@ long mesh_mirrtopo_table(Object *ob, char mode) int totvert, totedge; int totUnique= -1, totUniqueOld= -1; - MIRRHASH_TYPE *MirrTopoHash = NULL; - MIRRHASH_TYPE *MirrTopoHash_Prev = NULL; - MirrTopoPair *MirrTopoPairs; + MirrTopoHash_t *MirrTopoHash = NULL; + MirrTopoHash_t *MirrTopoHash_Prev = NULL; + MirrTopoPair_t *MirrTopoPairs; mesh_topo_lookup_mode= ob->mode; /* reallocate if needed */ @@ -930,7 +931,7 @@ long mesh_mirrtopo_table(Object *ob, char mode) totvert = me->totvert; } - MirrTopoHash = MEM_callocN( totvert * sizeof(MIRRHASH_TYPE), "TopoMirr" ); + MirrTopoHash = MEM_callocN( totvert * sizeof(MirrTopoHash_t), "TopoMirr" ); /* Initialize the vert-edge-user counts used to detect unique topology */ if(em) { @@ -967,10 +968,10 @@ long mesh_mirrtopo_table(Object *ob, char mode) MirrTopoHash[medge->v2] += MirrTopoHash_Prev[medge->v1]; } } - memcpy(MirrTopoHash_Prev, MirrTopoHash, sizeof(MIRRHASH_TYPE) * totvert); + memcpy(MirrTopoHash_Prev, MirrTopoHash, sizeof(MirrTopoHash_t) * totvert); /* sort so we can count unique values */ - qsort(MirrTopoHash_Prev, totvert, sizeof(MIRRHASH_TYPE), MirrTopo_long_sort); + qsort(MirrTopoHash_Prev, totvert, sizeof(MirrTopoHash_t), MirrTopo_long_sort); totUnique = 1; /* account for skiping the first value */ for(a=1; atmp.* */ @@ -1004,7 +1005,7 @@ long mesh_mirrtopo_table(Object *ob, char mode) /* Hash/Index pairs are needed for sorting to find index pairs */ - MirrTopoPairs= MEM_callocN( sizeof(MirrTopoPair) * totvert, "MirrTopoPairs"); + MirrTopoPairs= MEM_callocN( sizeof(MirrTopoPair_t) * totvert, "MirrTopoPairs"); /* since we are looping through verts, initialize these values here too */ mesh_topo_lookup = MEM_mallocN( totvert * sizeof(long), "mesh_topo_lookup" ); @@ -1022,7 +1023,7 @@ long mesh_mirrtopo_table(Object *ob, char mode) mesh_topo_lookup[a] = -1; } - qsort(MirrTopoPairs, totvert, sizeof(MirrTopoPair), MirrTopo_item_sort); + qsort(MirrTopoPairs, totvert, sizeof(MirrTopoPair_t), MirrTopo_item_sort); /* Since the loop starts at 2, we must define the last index where the hash's differ */ last = ((totvert >= 2) && (MirrTopoPairs[0].hash == MirrTopoPairs[1].hash)) ? 0 : 1; @@ -1034,8 +1035,8 @@ long mesh_mirrtopo_table(Object *ob, char mode) if ((a==totvert) || (MirrTopoPairs[a-1].hash != MirrTopoPairs[a].hash)) { if (a-last==2) { if(em) { - mesh_topo_lookup[MirrTopoPairs[a-1].vIndex] = (long)EM_get_vert_for_index(MirrTopoPairs[a-2].vIndex); - mesh_topo_lookup[MirrTopoPairs[a-2].vIndex] = (long)EM_get_vert_for_index(MirrTopoPairs[a-1].vIndex); + mesh_topo_lookup[MirrTopoPairs[a-1].vIndex] = (intptr_t)EM_get_vert_for_index(MirrTopoPairs[a-2].vIndex); + mesh_topo_lookup[MirrTopoPairs[a-2].vIndex] = (intptr_t)EM_get_vert_for_index(MirrTopoPairs[a-1].vIndex); } else { mesh_topo_lookup[MirrTopoPairs[a-1].vIndex] = MirrTopoPairs[a-2].vIndex; mesh_topo_lookup[MirrTopoPairs[a-2].vIndex] = MirrTopoPairs[a-1].vIndex; @@ -1123,7 +1124,7 @@ static EditVert *editmesh_get_x_mirror_vert_spacial(Object *ob, EditMesh *em, fl static EditVert *editmesh_get_x_mirror_vert_topo(Object *ob, struct EditMesh *em, EditVert *eve, int index) { - long poinval; + intptr_t poinval; if (mesh_mirrtopo_table(ob, 'u')==-1) return NULL; From 91f14ddf3da140156c722e347b6f188210903629 Mon Sep 17 00:00:00 2001 From: Miika Hamalainen Date: Fri, 16 Dec 2011 09:22:28 +0000 Subject: [PATCH 51/70] Fixed point cache subframe interpolation issue. Point cache interpolation was using too early start frame in cases when target frame was a subframe. This appeared as random ghost particles when rendering particle animation with full sample motion blur enabled. --- source/blender/blenkernel/intern/pointcache.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/blenkernel/intern/pointcache.c b/source/blender/blenkernel/intern/pointcache.c index 5445c990a9b..411e77de858 100644 --- a/source/blender/blenkernel/intern/pointcache.c +++ b/source/blender/blenkernel/intern/pointcache.c @@ -1491,7 +1491,7 @@ static int ptcache_old_elemsize(PTCacheID *pid) static void ptcache_find_frames_around(PTCacheID *pid, unsigned int frame, int *fra1, int *fra2) { if(pid->cache->flag & PTCACHE_DISK_CACHE) { - int cfra1=frame-1, cfra2=frame+1; + int cfra1=frame, cfra2=frame+1; while(cfra1 >= pid->cache->startframe && !BKE_ptcache_id_exist(pid, cfra1)) cfra1--; @@ -1518,7 +1518,7 @@ static void ptcache_find_frames_around(PTCacheID *pid, unsigned int frame, int * PTCacheMem *pm = pid->cache->mem_cache.first; PTCacheMem *pm2 = pid->cache->mem_cache.last; - while(pm->next && pm->next->frame < frame) + while(pm->next && pm->next->frame <= frame) pm= pm->next; if(pm2->frame < frame) { @@ -1841,7 +1841,7 @@ static int ptcache_interpolate(PTCacheID *pid, float cfra, int cfra1, int cfra2) /* possible to get old or interpolated result */ int BKE_ptcache_read(PTCacheID *pid, float cfra) { - int cfrai = (int)cfra, cfra1=0, cfra2=0; + int cfrai = (int)floor(cfra), cfra1=0, cfra2=0; int ret = 0; /* nothing to read to */ From 2253b63c979fbfbbb6f06c93ede85d9b9b6caddf Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Dec 2011 09:25:07 +0000 Subject: [PATCH 52/70] static functions for getting power of 2 values were being copied about too much, add to the BLI_math api. - is_power_of_2_i - power_of_2_min_i - power_of_2_max_i --- source/blender/blenkernel/intern/image_gen.c | 18 ++-------- source/blender/blenlib/BLI_math_base.h | 5 +++ .../blender/blenlib/intern/math_base_inline.c | 26 ++++++++++++++ source/blender/editors/interface/interface.c | 2 +- .../blender/editors/space_view3d/drawvolume.c | 23 ++---------- source/blender/gpu/intern/gpu_draw.c | 20 ++--------- source/blender/gpu/intern/gpu_extensions.c | 27 ++++---------- source/blender/windowmanager/intern/wm_draw.c | 35 ++++--------------- source/gameengine/Ketsji/BL_Texture.cpp | 18 +++++----- 9 files changed, 61 insertions(+), 113 deletions(-) diff --git a/source/blender/blenkernel/intern/image_gen.c b/source/blender/blenkernel/intern/image_gen.c index 751980f61e8..a93d0221cf0 100644 --- a/source/blender/blenkernel/intern/image_gen.c +++ b/source/blender/blenkernel/intern/image_gen.c @@ -30,6 +30,7 @@ #include "BKE_image.h" #include "BLI_math_color.h" +#include "BLI_math_base.h" #include "BLF_api.h" void BKE_image_buf_fill_color(unsigned char *rect, float *rect_float, int width, int height, float color[4]) @@ -161,21 +162,6 @@ void BKE_image_buf_fill_checker(unsigned char *rect, float *rect_float, int widt #define BLEND_FLOAT(real, add) (real+add <= 1.0f) ? (real+add) : 1.0f #define BLEND_CHAR(real, add) ((real + (char)(add * 255.0f)) <= 255) ? (real + (char)(add * 255.0f)) : 255 -static int is_pow2(int n) -{ - return ((n)&(n-1))==0; -} -static int larger_pow2(int n) -{ - if (is_pow2(n)) - return n; - - while(!is_pow2(n)) - n= n&(n-1); - - return n*2; -} - static void checker_board_color_fill(unsigned char *rect, float *rect_float, int width, int height) { int hue_step, y, x; @@ -183,7 +169,7 @@ static void checker_board_color_fill(unsigned char *rect, float *rect_float, int sat= 1.0; - hue_step= larger_pow2(width / 8); + hue_step= power_of_2_max_i(width / 8); if(hue_step < 8) hue_step= 8; for(y= 0; y < height; y++) diff --git a/source/blender/blenlib/BLI_math_base.h b/source/blender/blenlib/BLI_math_base.h index 204ec9b5159..53db77dc203 100644 --- a/source/blender/blenlib/BLI_math_base.h +++ b/source/blender/blenlib/BLI_math_base.h @@ -167,6 +167,11 @@ MINLINE float signf(float f); MINLINE float power_of_2(float f); +/* these dont really fit anywhere but were being copied about a lot */ +MINLINE int is_power_of_2_i(int n); +MINLINE int power_of_2_max_i(int n); +MINLINE int power_of_2_min_i(int n); + MINLINE float shell_angle_to_dist(float angle); #if (defined(WIN32) || defined(WIN64)) && !defined(FREE_WINDOWS) diff --git a/source/blender/blenlib/intern/math_base_inline.c b/source/blender/blenlib/intern/math_base_inline.c index 0b2411af009..7e04e0ae566 100644 --- a/source/blender/blenlib/intern/math_base_inline.c +++ b/source/blender/blenlib/intern/math_base_inline.c @@ -115,6 +115,31 @@ MINLINE float power_of_2(float val) return (float)pow(2.0, ceil(log((double)val) / M_LN2)); } +MINLINE int is_power_of_2_i(int n) +{ + return (n & (n - 1)) == 0; +} + +MINLINE int power_of_2_max_i(int n) +{ + if (is_power_of_2_i(n)) + return n; + + while(!is_power_of_2_i(n)) + n = n & (n - 1); + + return n * 2; +} + +MINLINE int power_of_2_min_i(int n) +{ + while (!is_power_of_2_i(n)) + n = n & (n - 1); + + return n; +} + + MINLINE float minf(float a, float b) { return (a < b)? a: b; @@ -130,5 +155,6 @@ MINLINE float signf(float f) return (f < 0.f)? -1.f: 1.f; } + #endif /* BLI_MATH_BASE_INLINE_H */ diff --git a/source/blender/editors/interface/interface.c b/source/blender/editors/interface/interface.c index a10de9a8a42..1bad61be324 100644 --- a/source/blender/editors/interface/interface.c +++ b/source/blender/editors/interface/interface.c @@ -2833,7 +2833,7 @@ uiBut *uiDefBut(uiBlock *block, int type, int retval, const char *str, int x1, i */ static int findBitIndex(unsigned int x) { - if (!x || (x&(x-1))!=0) { /* x&(x-1) strips lowest bit */ + if (!x || !is_power_of_2_i(x)) { /* is_power_of_2_i(x) strips lowest bit */ return -1; } else { int idx= 0; diff --git a/source/blender/editors/space_view3d/drawvolume.c b/source/blender/editors/space_view3d/drawvolume.c index 6605d488d36..8308a4a9ccf 100644 --- a/source/blender/editors/space_view3d/drawvolume.c +++ b/source/blender/editors/space_view3d/drawvolume.c @@ -158,23 +158,6 @@ static int convex(float *p0, float *up, float *a, float *b) return dot_v3v3(up, tmp) >= 0; } -// copied from gpu_extension.c -static int is_pow2(int n) -{ - return ((n)&(n-1))==0; -} - -static int larger_pow2(int n) -{ - if (is_pow2(n)) - return n; - - while(!is_pow2(n)) - n= n&(n-1); - - return n*2; -} - void draw_volume(ARegion *ar, GPUTexture *tex, float *min, float *max, int res[3], float dx, GPUTexture *tex_shadow) { RegionView3D *rv3d= ar->regiondata; @@ -379,9 +362,9 @@ void draw_volume(ARegion *ar, GPUTexture *tex, float *min, float *max, int res[3 printf("No volume shadow\n"); if (!GPU_non_power_of_two_support()) { - cor[0] = (float)res[0]/(float)larger_pow2(res[0]); - cor[1] = (float)res[1]/(float)larger_pow2(res[1]); - cor[2] = (float)res[2]/(float)larger_pow2(res[2]); + cor[0] = (float)res[0]/(float)power_of_2_max_i(res[0]); + cor[1] = (float)res[1]/(float)power_of_2_max_i(res[1]); + cor[2] = (float)res[2]/(float)power_of_2_max_i(res[2]); } // our slices are defined by the plane equation a*x + b*y +c*z + d = 0 diff --git a/source/blender/gpu/intern/gpu_draw.c b/source/blender/gpu/intern/gpu_draw.c index 4af0cceb4e0..2dcce996065 100644 --- a/source/blender/gpu/intern/gpu_draw.c +++ b/source/blender/gpu/intern/gpu_draw.c @@ -189,20 +189,6 @@ void GPU_render_text(MTFace *tface, int mode, /* Checking powers of two for images since opengl 1.x requires it */ -static int is_pow2(int num) -{ - /* (n&(n-1)) zeros the least significant bit of n */ - return ((num)&(num-1))==0; -} - -static int smaller_pow2(int num) -{ - while (!is_pow2(num)) - num= num&(num-1); - - return num; -} - static int is_pow2_limit(int num) { /* take texture clamping into account */ @@ -214,7 +200,7 @@ static int is_pow2_limit(int num) if (U.glreslimit != 0 && num > U.glreslimit) return 0; - return ((num)&(num-1))==0; + return is_power_of_2_i(num); } static int smaller_pow2_limit(int num) @@ -227,7 +213,7 @@ static int smaller_pow2_limit(int num) if (U.glreslimit != 0 && num > U.glreslimit) return U.glreslimit; - return smaller_pow2(num); + return power_of_2_min_i(num); } /* Current OpenGL state caching for GPU_set_tpage */ @@ -692,7 +678,7 @@ void GPU_paint_update_image(Image *ima, int x, int y, int w, int h, int mipmap) ibuf = BKE_image_get_ibuf(ima, NULL); if (ima->repbind || (gpu_get_mipmap() && mipmap) || !ima->bindcode || !ibuf || - (!is_pow2(ibuf->x) || !is_pow2(ibuf->y)) || + (!is_power_of_2_i(ibuf->x) || !is_power_of_2_i(ibuf->y)) || (w == 0) || (h == 0)) { /* these cases require full reload still */ GPU_free_image(ima); diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c index 79db125c21f..4c0a3d6c5e4 100644 --- a/source/blender/gpu/intern/gpu_extensions.c +++ b/source/blender/gpu/intern/gpu_extensions.c @@ -41,6 +41,7 @@ #include "BLI_blenlib.h" #include "BLI_utildefines.h" +#include "BLI_math_base.h" #include "GPU_draw.h" #include "GPU_extensions.h" @@ -292,22 +293,6 @@ static unsigned char *GPU_texture_convert_pixels(int length, float *fpixels) return pixels; } -static int is_pow2(int n) -{ - return ((n)&(n-1))==0; -} - -static int larger_pow2(int n) -{ - if (is_pow2(n)) - return n; - - while(!is_pow2(n)) - n= n&(n-1); - - return n*2; -} - static void GPU_glTexSubImageEmpty(GLenum target, GLenum format, int x, int y, int w, int h) { void *pixels = MEM_callocN(sizeof(char)*4*w*h, "GPUTextureEmptyPixels"); @@ -353,8 +338,8 @@ static GPUTexture *GPU_texture_create_nD(int w, int h, int n, float *fpixels, in } if (!GPU_non_power_of_two_support()) { - tex->w = larger_pow2(tex->w); - tex->h = larger_pow2(tex->h); + tex->w = power_of_2_max_i(tex->w); + tex->h = power_of_2_max_i(tex->h); } tex->number = 0; @@ -462,9 +447,9 @@ GPUTexture *GPU_texture_create_3D(int w, int h, int depth, float *fpixels) } if (!GPU_non_power_of_two_support()) { - tex->w = larger_pow2(tex->w); - tex->h = larger_pow2(tex->h); - tex->depth = larger_pow2(tex->depth); + tex->w = power_of_2_max_i(tex->w); + tex->h = power_of_2_max_i(tex->h); + tex->depth = power_of_2_max_i(tex->depth); } tex->number = 0; diff --git a/source/blender/windowmanager/intern/wm_draw.c b/source/blender/windowmanager/intern/wm_draw.c index f03680852ea..4fe11044d30 100644 --- a/source/blender/windowmanager/intern/wm_draw.c +++ b/source/blender/windowmanager/intern/wm_draw.c @@ -43,6 +43,7 @@ #include "BLI_blenlib.h" #include "BLI_utildefines.h" +#include "BLI_math_base.h" #include "BKE_context.h" #include "BKE_global.h" @@ -355,36 +356,12 @@ typedef struct wmDrawTriple { GLenum target; } wmDrawTriple; -static int is_pow2(int n) -{ - return ((n)&(n-1))==0; -} - -static int smaller_pow2(int n) -{ - while (!is_pow2(n)) - n= n&(n-1); - - return n; -} - -static int larger_pow2(int n) -{ - if (is_pow2(n)) - return n; - - while(!is_pow2(n)) - n= n&(n-1); - - return n*2; -} - static void split_width(int x, int n, int *splitx, int *nx) { int a, newnx, waste; /* if already power of two just use it */ - if(is_pow2(x)) { + if(is_power_of_2_i(x)) { splitx[0]= x; (*nx)++; return; @@ -392,12 +369,12 @@ static void split_width(int x, int n, int *splitx, int *nx) if(n == 1) { /* last part, we have to go larger */ - splitx[0]= larger_pow2(x); + splitx[0]= power_of_2_max_i(x); (*nx)++; } else { /* two or more parts to go, use smaller part */ - splitx[0]= smaller_pow2(x); + splitx[0]= power_of_2_min_i(x); newnx= ++(*nx); split_width(x-splitx[0], n-1, splitx+1, &newnx); @@ -406,8 +383,8 @@ static void split_width(int x, int n, int *splitx, int *nx) /* if we waste more space or use the same amount, * revert deeper splits and just use larger */ - if(waste >= larger_pow2(x)) { - splitx[0]= larger_pow2(x); + if(waste >= power_of_2_max_i(x)) { + splitx[0]= power_of_2_max_i(x); memset(splitx+1, 0, sizeof(int)*(n-1)); } else diff --git a/source/gameengine/Ketsji/BL_Texture.cpp b/source/gameengine/Ketsji/BL_Texture.cpp index a306e059442..6c57776cb60 100644 --- a/source/gameengine/Ketsji/BL_Texture.cpp +++ b/source/gameengine/Ketsji/BL_Texture.cpp @@ -38,11 +38,11 @@ extern "C" { } // (n&(n-1)) zeros the least significant bit of n -static int is_pow2(int num) { +static int is_power_of_2_i(int num) { return ((num)&(num-1))==0; } -static int smaller_pow2(int num) { - while (!is_pow2(num)) +static int power_of_2_min_i(int num) { + while (!is_power_of_2_i(num)) num= num&(num-1); return num; } @@ -159,7 +159,7 @@ bool BL_Texture::InitFromImage(int unit, Image *img, bool mipmap) void BL_Texture::InitGLTex(unsigned int *pix,int x,int y,bool mipmap) { - if (!is_pow2(x) || !is_pow2(y) ) { + if (!is_power_of_2_i(x) || !is_power_of_2_i(y) ) { InitNonPow2Tex(pix, x,y,mipmap); return; } @@ -184,8 +184,8 @@ void BL_Texture::InitGLTex(unsigned int *pix,int x,int y,bool mipmap) void BL_Texture::InitNonPow2Tex(unsigned int *pix,int x,int y,bool mipmap) { - int nx= smaller_pow2(x); - int ny= smaller_pow2(y); + int nx= power_of_2_min_i(x); + int ny= power_of_2_min_i(y); unsigned int *newPixels = (unsigned int *)malloc(nx*ny*sizeof(unsigned int)); @@ -274,7 +274,7 @@ bool BL_Texture::InitCubeMap(int unit, EnvMap *cubemap) my_envmap_split_ima(cubemap, ibuf); - if (!is_pow2(cubemap->cube[0]->x) || !is_pow2(cubemap->cube[0]->y)) + if (!is_power_of_2_i(cubemap->cube[0]->x) || !is_power_of_2_i(cubemap->cube[0]->y)) { spit("invalid envmap size please render with CubeRes @ power of two"); @@ -610,8 +610,8 @@ void BL_Texture::setTexEnv(BL_Material *mat, bool modulate) int BL_Texture::GetPow2(int n) { - if(!is_pow2(n)) - n = smaller_pow2(n); + if(!is_power_of_2_i(n)) + n = power_of_2_min_i(n); return n; } From e9ab58ad8f0fbcb84a08e8013d4b024bea648f96 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 16 Dec 2011 10:18:59 +0000 Subject: [PATCH 53/70] Fixed incorrect usage of enum as integer --- source/blender/editors/animation/keyingsets.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/editors/animation/keyingsets.c b/source/blender/editors/animation/keyingsets.c index 682b40affc2..25432260387 100644 --- a/source/blender/editors/animation/keyingsets.c +++ b/source/blender/editors/animation/keyingsets.c @@ -776,7 +776,7 @@ void ANIM_keying_sets_menu_setup (bContext *C, const char title[], const char op * - only include entry if it exists */ if (scene->active_keyingset) { - uiItemIntO(layout, "Active Keying Set", ICON_NONE, op_name, "type", i++); + uiItemEnumO(layout, op_name, "Active Keying Set", ICON_NONE, "type", i++); uiItemS(layout); } else @@ -788,7 +788,7 @@ void ANIM_keying_sets_menu_setup (bContext *C, const char title[], const char op if (scene->keyingsets.first) { for (ks= scene->keyingsets.first; ks; ks=ks->next, i++) { if (ANIM_keyingset_context_ok_poll(C, ks)) - uiItemIntO(layout, ks->name, ICON_NONE, op_name, "type", i); + uiItemEnumO(layout, op_name, ks->name, ICON_NONE, "type", i); } uiItemS(layout); } @@ -798,7 +798,7 @@ void ANIM_keying_sets_menu_setup (bContext *C, const char title[], const char op for (ks= builtin_keyingsets.first; ks; ks=ks->next, i--) { /* only show KeyingSet if context is suitable */ if (ANIM_keyingset_context_ok_poll(C, ks)) - uiItemIntO(layout, ks->name, ICON_NONE, op_name, "type", i); + uiItemEnumO(layout, op_name, ks->name, ICON_NONE, "type", i); } uiPupMenuEnd(C, pup); From 68dd3980638b6a1f0c766a1e023b393c0f36cacd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Dec 2011 10:30:53 +0000 Subject: [PATCH 54/70] remove duplicate if'0'd functions, same versions are in drawarmature.c. also added note of function to de-duplicate. --- .../editors/space_action/action_select.c | 2 + .../editors/space_graph/graph_select.c | 13 +- .../editors/space_view3d/drawanimviz.c | 266 ------------------ 3 files changed, 9 insertions(+), 272 deletions(-) diff --git a/source/blender/editors/space_action/action_select.c b/source/blender/editors/space_action/action_select.c index 1382d58482d..414999b2f2b 100644 --- a/source/blender/editors/space_action/action_select.c +++ b/source/blender/editors/space_action/action_select.c @@ -360,6 +360,8 @@ static EnumPropertyItem prop_column_select_types[] = { /* ------------------- */ /* Selects all visible keyframes between the specified markers */ +/* TODO, this is almost an _exact_ duplicate of a function of the same name in graph_select.c + * should de-duplicate - campbell */ static void markers_selectkeys_between (bAnimContext *ac) { ListBase anim_data = {NULL, NULL}; diff --git a/source/blender/editors/space_graph/graph_select.c b/source/blender/editors/space_graph/graph_select.c index 2ba79ee230a..c1268ec61f0 100644 --- a/source/blender/editors/space_graph/graph_select.c +++ b/source/blender/editors/space_graph/graph_select.c @@ -386,6 +386,8 @@ static EnumPropertyItem prop_column_select_types[] = { /* ------------------- */ /* Selects all visible keyframes between the specified markers */ +/* TODO, this is almost an _exact_ duplicate of a function of the same name in action_select.c + * should de-duplicate - campbell */ static void markers_selectkeys_between (bAnimContext *ac) { ListBase anim_data = {NULL, NULL}; @@ -393,7 +395,7 @@ static void markers_selectkeys_between (bAnimContext *ac) int filter; KeyframeEditFunc ok_cb, select_cb; - KeyframeEditData ked; + KeyframeEditData ked= {{NULL}}; float min, max; /* get extreme markers */ @@ -404,9 +406,8 @@ static void markers_selectkeys_between (bAnimContext *ac) /* get editing funcs + data */ ok_cb= ANIM_editkeyframes_ok(BEZT_OK_FRAMERANGE); select_cb= ANIM_editkeyframes_select(SELECT_ADD); - - memset(&ked, 0, sizeof(KeyframeEditData)); - ked.f1= min; + + ked.f1= min; ked.f2= max; /* filter data */ @@ -416,8 +417,8 @@ static void markers_selectkeys_between (bAnimContext *ac) /* select keys in-between */ for (ale= anim_data.first; ale; ale= ale->next) { AnimData *adt= ANIM_nla_mapping_get(ac, ale); - - if (adt) { + + if (adt) { ANIM_nla_mapping_apply_fcurve(adt, ale->key_data, 0, 1); ANIM_fcurve_keyframes_loop(&ked, ale->key_data, ok_cb, select_cb, NULL); ANIM_nla_mapping_apply_fcurve(adt, ale->key_data, 1, 1); diff --git a/source/blender/editors/space_view3d/drawanimviz.c b/source/blender/editors/space_view3d/drawanimviz.c index 30042433ef2..1784d949761 100644 --- a/source/blender/editors/space_view3d/drawanimviz.c +++ b/source/blender/editors/space_view3d/drawanimviz.c @@ -312,269 +312,3 @@ void draw_motion_paths_cleanup(View3D *v3d) if (v3d->zbuf) glEnable(GL_DEPTH_TEST); glPopMatrix(); } - -#if 0 // XXX temp file guards - -/* ***************************** Onion Skinning (Ghosts) ******************************** */ - -#if 0 // XXX only for bones -/* helper function for ghost drawing - sets/removes flags for temporarily - * hiding unselected bones while drawing ghosts - */ -static void ghost_poses_tag_unselected(Object *ob, short unset) -{ - bArmature *arm= ob->data; - bPose *pose= ob->pose; - bPoseChannel *pchan; - - /* don't do anything if no hiding any bones */ - if ((arm->flag & ARM_GHOST_ONLYSEL)==0) - return; - - /* loop over all pchans, adding/removing tags as appropriate */ - for (pchan= pose->chanbase.first; pchan; pchan= pchan->next) { - if ((pchan->bone) && (arm->layer & pchan->bone->layer)) { - if (unset) { - /* remove tags from all pchans if cleaning up */ - pchan->bone->flag &= ~BONE_HIDDEN_PG; - } - else { - /* set tags on unselected pchans only */ - if ((pchan->bone->flag & BONE_SELECTED)==0) - pchan->bone->flag |= BONE_HIDDEN_PG; - } - } - } -} -#endif // XXX only for bones - -/* draw ghosts that occur within a frame range - * note: object should be in posemode - */ -static void draw_ghost_poses_range(Scene *scene, View3D *v3d, ARegion *ar, Base *base) -{ - Object *ob= base->object; - AnimData *adt= BKE_animdata_from_id(&ob->id); - bArmature *arm= ob->data; - bPose *posen, *poseo; - float start, end, stepsize, range, colfac; - int cfrao, flago, ipoflago; - - start = (float)arm->ghostsf; - end = (float)arm->ghostef; - if (end <= start) - return; - - stepsize= (float)(arm->ghostsize); - range= (float)(end - start); - - /* store values */ - ob->mode &= ~OB_MODE_POSE; - cfrao= CFRA; - flago= arm->flag; - arm->flag &= ~(ARM_DRAWNAMES|ARM_DRAWAXES); - ipoflago= ob->ipoflag; - ob->ipoflag |= OB_DISABLE_PATH; - - /* copy the pose */ - poseo= ob->pose; - copy_pose(&posen, ob->pose, 1); - ob->pose= posen; - armature_rebuild_pose(ob, ob->data); /* child pointers for IK */ - ghost_poses_tag_unselected(ob, 0); /* hide unselected bones if need be */ - - glEnable(GL_BLEND); - if (v3d->zbuf) glDisable(GL_DEPTH_TEST); - - /* draw from first frame of range to last */ - for (CFRA= (int)start; CFRA < end; CFRA += (int)stepsize) { - colfac = (end - (float)CFRA) / range; - UI_ThemeColorShadeAlpha(TH_WIRE, 0, -128-(int)(120.0*sqrt(colfac))); - - BKE_animsys_evaluate_animdata(scene, &ob->id, adt, (float)CFRA, ADT_RECALC_ALL); - where_is_pose(scene, ob); - draw_pose_bones(scene, v3d, ar, base, OB_WIRE); - } - glDisable(GL_BLEND); - if (v3d->zbuf) glEnable(GL_DEPTH_TEST); - - ghost_poses_tag_unselected(ob, 1); /* unhide unselected bones if need be */ - free_pose(posen); - - /* restore */ - CFRA= cfrao; - ob->pose= poseo; - arm->flag= flago; - armature_rebuild_pose(ob, ob->data); - ob->mode |= OB_MODE_POSE; - ob->ipoflag= ipoflago; -} - -/* draw ghosts on keyframes in action within range - * - object should be in posemode - */ -static void draw_ghost_poses_keys(Scene *scene, View3D *v3d, ARegion *ar, Base *base) -{ - Object *ob= base->object; - AnimData *adt= BKE_animdata_from_id(&ob->id); - bAction *act= (adt) ? adt->action : NULL; - bArmature *arm= ob->data; - bPose *posen, *poseo; - DLRBT_Tree keys; - ActKeyColumn *ak, *akn; - float start, end, range, colfac, i; - int cfrao, flago; - - start = (float)arm->ghostsf; - end = (float)arm->ghostef; - if (end <= start) - return; - - /* get keyframes - then clip to only within range */ - BLI_dlrbTree_init(&keys); - action_to_keylist(adt, act, &keys, NULL); - BLI_dlrbTree_linkedlist_sync(&keys); - - range= 0; - for (ak= keys.first; ak; ak= akn) { - akn= ak->next; - - if ((ak->cfra < start) || (ak->cfra > end)) - BLI_freelinkN((ListBase *)&keys, ak); - else - range++; - } - if (range == 0) return; - - /* store values */ - ob->mode &= ~OB_MODE_POSE; - cfrao= CFRA; - flago= arm->flag; - arm->flag &= ~(ARM_DRAWNAMES|ARM_DRAWAXES); - ob->ipoflag |= OB_DISABLE_PATH; - - /* copy the pose */ - poseo= ob->pose; - copy_pose(&posen, ob->pose, 1); - ob->pose= posen; - armature_rebuild_pose(ob, ob->data); /* child pointers for IK */ - ghost_poses_tag_unselected(ob, 0); /* hide unselected bones if need be */ - - glEnable(GL_BLEND); - if (v3d->zbuf) glDisable(GL_DEPTH_TEST); - - /* draw from first frame of range to last */ - for (ak=keys.first, i=0; ak; ak=ak->next, i++) { - colfac = i/range; - UI_ThemeColorShadeAlpha(TH_WIRE, 0, -128-(int)(120.0*sqrt(colfac))); - - CFRA= (int)ak->cfra; - - BKE_animsys_evaluate_animdata(scene, &ob->id, adt, (float)CFRA, ADT_RECALC_ALL); - where_is_pose(scene, ob); - draw_pose_bones(scene, v3d, ar, base, OB_WIRE); - } - glDisable(GL_BLEND); - if (v3d->zbuf) glEnable(GL_DEPTH_TEST); - - ghost_poses_tag_unselected(ob, 1); /* unhide unselected bones if need be */ - BLI_dlrbTree_free(&keys); - free_pose(posen); - - /* restore */ - CFRA= cfrao; - ob->pose= poseo; - arm->flag= flago; - armature_rebuild_pose(ob, ob->data); - ob->mode |= OB_MODE_POSE; -} - -/* draw ghosts around current frame - * - object is supposed to be armature in posemode - */ -static void draw_ghost_poses(Scene *scene, View3D *v3d, ARegion *ar, Base *base) -{ - Object *ob= base->object; - AnimData *adt= BKE_animdata_from_id(&ob->id); - bArmature *arm= ob->data; - bPose *posen, *poseo; - float cur, start, end, stepsize, range, colfac, actframe, ctime; - int cfrao, flago; - - /* pre conditions, get an action with sufficient frames */ - if ELEM(NULL, adt, adt->action) - return; - - calc_action_range(adt->action, &start, &end, 0); - if (start == end) - return; - - stepsize= (float)(arm->ghostsize); - range= (float)(arm->ghostep)*stepsize + 0.5f; /* plus half to make the for loop end correct */ - - /* store values */ - ob->mode &= ~OB_MODE_POSE; - cfrao= CFRA; - actframe= BKE_nla_tweakedit_remap(adt, (float)CFRA, 0); - flago= arm->flag; - arm->flag &= ~(ARM_DRAWNAMES|ARM_DRAWAXES); - - /* copy the pose */ - poseo= ob->pose; - copy_pose(&posen, ob->pose, 1); - ob->pose= posen; - armature_rebuild_pose(ob, ob->data); /* child pointers for IK */ - ghost_poses_tag_unselected(ob, 0); /* hide unselected bones if need be */ - - glEnable(GL_BLEND); - if (v3d->zbuf) glDisable(GL_DEPTH_TEST); - - /* draw from darkest blend to lowest */ - for(cur= stepsize; cur= start && actframe+ctime <= end) { - CFRA= (int)BKE_nla_tweakedit_remap(adt, actframe+ctime, NLATIME_CONVERT_MAP); - - if (CFRA != cfrao) { - BKE_animsys_evaluate_animdata(scene, &ob->id, adt, (float)CFRA, ADT_RECALC_ALL); - where_is_pose(scene, ob); - draw_pose_bones(scene, v3d, ar, base, OB_WIRE); - } - } - - ctime= cur + (float)fmod((float)cfrao, stepsize) - stepsize+1.0f; /* ensures consistent stepping */ - colfac= ctime/range; - UI_ThemeColorShadeAlpha(TH_WIRE, 0, -128-(int)(120.0*sqrt(colfac))); - - /* only within action range */ - if ((actframe-ctime >= start) && (actframe-ctime <= end)) { - CFRA= (int)BKE_nla_tweakedit_remap(adt, actframe-ctime, NLATIME_CONVERT_MAP); - - if (CFRA != cfrao) { - BKE_animsys_evaluate_animdata(scene, &ob->id, adt, (float)CFRA, ADT_RECALC_ALL); - where_is_pose(scene, ob); - draw_pose_bones(scene, v3d, ar, base, OB_WIRE); - } - } - } - glDisable(GL_BLEND); - if (v3d->zbuf) glEnable(GL_DEPTH_TEST); - - ghost_poses_tag_unselected(ob, 1); /* unhide unselected bones if need be */ - free_pose(posen); - - /* restore */ - CFRA= cfrao; - ob->pose= poseo; - arm->flag= flago; - armature_rebuild_pose(ob, ob->data); - ob->mode |= OB_MODE_POSE; -} - - - -#endif // XXX temp file guards From ce8f64d9f92e81629facea34b7f9e18e1f6b3d0c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Dec 2011 10:39:43 +0000 Subject: [PATCH 55/70] de-duplicate parent loop checking function --- source/blender/blenkernel/BKE_object.h | 2 ++ source/blender/blenkernel/intern/object.c | 8 ++++++++ source/blender/editors/object/object_relations.c | 16 +++------------- .../editors/space_view3d/view3d_buttons.c | 11 ++--------- 4 files changed, 15 insertions(+), 22 deletions(-) diff --git a/source/blender/blenkernel/BKE_object.h b/source/blender/blenkernel/BKE_object.h index b5a5090a5eb..828b0b47e3a 100644 --- a/source/blender/blenkernel/BKE_object.h +++ b/source/blender/blenkernel/BKE_object.h @@ -120,6 +120,8 @@ void BKE_scene_foreach_display_point( const short flag, void (*func_cb)(const float[3], void *), void *user_data); +int BKE_object_parent_loop_check(const struct Object *parent, const struct Object *ob); + void solve_tracking (struct Object *ob, float targetmat[][4]); int ray_hit_boundbox(struct BoundBox *bb, float ray_start[3], float ray_normal[3]); diff --git a/source/blender/blenkernel/intern/object.c b/source/blender/blenkernel/intern/object.c index 13b6919683c..29494f02d10 100644 --- a/source/blender/blenkernel/intern/object.c +++ b/source/blender/blenkernel/intern/object.c @@ -2473,6 +2473,14 @@ void object_tfm_restore(Object *ob, void *obtfm_pt) copy_m4_m4(ob->imat, obtfm->imat); } +int BKE_object_parent_loop_check(const Object *par, const Object *ob) +{ + /* test if 'ob' is a parent somewhere in par's parents */ + if(par == NULL) return 0; + if(ob == par) return 1; + return BKE_object_parent_loop_check(par->parent, ob); +} + /* proxy rule: lib_object->proxy_from == the one we borrow from, only set temporal and cleared here */ /* local_object->proxy == pointer to library object, saved in files and read */ diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c index 6b517b6eeb0..1ba0157e8d3 100644 --- a/source/blender/editors/object/object_relations.c +++ b/source/blender/editors/object/object_relations.c @@ -512,19 +512,9 @@ static EnumPropertyItem prop_make_parent_types[] = { {0, NULL, 0, NULL, NULL} }; -static int test_parent_loop(Object *par, Object *ob) -{ - /* test if 'ob' is a parent somewhere in par's parents */ - - if(par == NULL) return 0; - if(ob == par) return 1; - - return test_parent_loop(par->parent, ob); -} - void ED_object_parent(Object *ob, Object *par, int type, const char *substr) { - if(!par || test_parent_loop(par, ob)) { + if (!par || BKE_object_parent_loop_check(par, ob)) { ob->parent= NULL; ob->partype= PAROBJECT; ob->parsubstr[0]= 0; @@ -593,7 +583,7 @@ static int parent_set_exec(bContext *C, wmOperator *op) if(ob!=par) { - if( test_parent_loop(par, ob) ) { + if (BKE_object_parent_loop_check(par, ob)) { BKE_report(op->reports, RPT_ERROR, "Loop in parents"); } else { @@ -766,7 +756,7 @@ static int parent_noinv_set_exec(bContext *C, wmOperator *op) /* context iterator */ CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { if (ob != par) { - if (test_parent_loop(par, ob)) { + if (BKE_object_parent_loop_check(par, ob)) { BKE_report(op->reports, RPT_ERROR, "Loop in parents"); } else { diff --git a/source/blender/editors/space_view3d/view3d_buttons.c b/source/blender/editors/space_view3d/view3d_buttons.c index d2689fad8c2..1b923c7a0cd 100644 --- a/source/blender/editors/space_view3d/view3d_buttons.c +++ b/source/blender/editors/space_view3d/view3d_buttons.c @@ -59,6 +59,7 @@ #include "BKE_mesh.h" #include "BKE_screen.h" #include "BKE_deform.h" +#include "BKE_object.h" #include "WM_api.h" #include "WM_types.h" @@ -1105,14 +1106,6 @@ static void v3d_editmetaball_buts(uiLayout *layout, Object *ob) } } -/* test if 'ob' is a parent somewhere in par's parents */ -static int test_parent_loop(Object *par, Object *ob) -{ - if(par == NULL) return 0; - if(ob == par) return 1; - return test_parent_loop(par->parent, ob); -} - static void do_view3d_region_buttons(bContext *C, void *UNUSED(index), int event) { Main *bmain= CTX_data_main(C); @@ -1144,7 +1137,7 @@ static void do_view3d_region_buttons(bContext *C, void *UNUSED(index), int event /* note; this case also used for parbone */ case B_OBJECTPANELPARENT: if(ob) { - if(ob->id.lib || test_parent_loop(ob->parent, ob) ) + if (ob->id.lib || BKE_object_parent_loop_check(ob->parent, ob)) ob->parent= NULL; else { DAG_scene_sort(bmain, scene); From 3c8ab559a5bd31fd38e9c5cf9da8505ca28f4887 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Fri, 16 Dec 2011 18:15:07 +0000 Subject: [PATCH 56/70] Normal Node - Cycles reviewed by Brecht, with help from Lukas. Note: dot is reversed compared to Blender. In Blender Normals point outside, while in Cycles they point inside. If you use your own custom vector with the Normal Node you will see a difference. If you feed it with object normals it should work just as good. --- intern/cycles/app/cycles_xml.cpp | 3 ++ intern/cycles/blender/blender_shader.cpp | 12 +++++- intern/cycles/kernel/CMakeLists.txt | 1 + intern/cycles/kernel/osl/nodes/CMakeLists.txt | 1 + .../cycles/kernel/osl/nodes/node_normal.osl | 31 ++++++++++++++ intern/cycles/kernel/svm/svm.h | 4 ++ intern/cycles/kernel/svm/svm_normal.h | 41 +++++++++++++++++++ intern/cycles/kernel/svm/svm_types.h | 3 +- intern/cycles/render/nodes.cpp | 35 ++++++++++++++++ intern/cycles/render/nodes.h | 7 ++++ .../nodes/shader/nodes/node_shader_normal.c | 2 +- 11 files changed, 137 insertions(+), 3 deletions(-) create mode 100644 intern/cycles/kernel/osl/nodes/node_normal.osl create mode 100644 intern/cycles/kernel/svm/svm_normal.h diff --git a/intern/cycles/app/cycles_xml.cpp b/intern/cycles/app/cycles_xml.cpp index 530a4ad14d8..a0282988179 100644 --- a/intern/cycles/app/cycles_xml.cpp +++ b/intern/cycles/app/cycles_xml.cpp @@ -368,6 +368,9 @@ static void xml_read_shader_graph(const XMLReadState& state, Shader *shader, pug xml_read_enum(&wood->type, WaveTextureNode::type_enum, node, "type"); snode = wood; } + else if(string_iequals(node.name(), "normal")) { + snode = new NormalNode(); + } else if(string_iequals(node.name(), "mapping")) { snode = new MappingNode(); } diff --git a/intern/cycles/blender/blender_shader.cpp b/intern/cycles/blender/blender_shader.cpp index b0dd6988457..4191fef4dcd 100644 --- a/intern/cycles/blender/blender_shader.cpp +++ b/intern/cycles/blender/blender_shader.cpp @@ -132,7 +132,6 @@ static ShaderNode *add_node(BL::BlendData b_data, ShaderGraph *graph, BL::Node * case BL::ShaderNode::type_GEOMETRY: break; case BL::ShaderNode::type_MATERIAL: break; case BL::ShaderNode::type_MATERIAL_EXT: break; - case BL::ShaderNode::type_NORMAL: break; case BL::ShaderNode::type_OUTPUT: break; case BL::ShaderNode::type_SCRIPT: break; case BL::ShaderNode::type_SQUEEZE: break; @@ -198,6 +197,17 @@ static ShaderNode *add_node(BL::BlendData b_data, ShaderGraph *graph, BL::Node * node = vmath; break; } + case BL::ShaderNode::type_NORMAL: { + BL::Node::outputs_iterator out_it; + b_node.outputs.begin(out_it); + BL::NodeSocketVectorNone vec_sock(*out_it); + + NormalNode *norm = new NormalNode(); + norm->direction = get_float3(vec_sock.default_value()); + + node = norm; + break; + } case BL::ShaderNode::type_MAPPING: { BL::ShaderNodeMapping b_mapping_node(b_node); MappingNode *mapping = new MappingNode(); diff --git a/intern/cycles/kernel/CMakeLists.txt b/intern/cycles/kernel/CMakeLists.txt index a0803f37cb9..65338eeea6e 100644 --- a/intern/cycles/kernel/CMakeLists.txt +++ b/intern/cycles/kernel/CMakeLists.txt @@ -72,6 +72,7 @@ set(SRC_SVM_HEADERS svm/svm_musgrave.h svm/svm_noise.h svm/svm_noisetex.h + svm/svm_normal.h svm/svm_sepcomb_rgb.h svm/svm_sky.h svm/svm_tex_coord.h diff --git a/intern/cycles/kernel/osl/nodes/CMakeLists.txt b/intern/cycles/kernel/osl/nodes/CMakeLists.txt index 433fc2155fe..5c1fd8b75d8 100644 --- a/intern/cycles/kernel/osl/nodes/CMakeLists.txt +++ b/intern/cycles/kernel/osl/nodes/CMakeLists.txt @@ -33,6 +33,7 @@ set(SRC_OSL node_mix.osl node_mix_closure.osl node_musgrave_texture.osl + node_normal.osl node_blend_weight_texture.osl node_noise_texture.osl node_output_displacement.osl diff --git a/intern/cycles/kernel/osl/nodes/node_normal.osl b/intern/cycles/kernel/osl/nodes/node_normal.osl new file mode 100644 index 00000000000..038a33c9898 --- /dev/null +++ b/intern/cycles/kernel/osl/nodes/node_normal.osl @@ -0,0 +1,31 @@ +/* + * Copyright 2011, Blender Foundation. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#include "stdosl.h" + +shader node_normal( + normal Direction = normal(0.0, 0.0, 0.0), + normal NormalIn = normal(0.0, 0.0, 0.0), + output normal NormalOut = normal(0.0, 0.0, 0.0), + output float Dot = 1.0 +{ + Direction = normalize(Direction); + NormalOut = Direction; + Dot = dot(Direction, NormalIn); +} + diff --git a/intern/cycles/kernel/svm/svm.h b/intern/cycles/kernel/svm/svm.h index 5fde44e2769..2beff7ff7e6 100644 --- a/intern/cycles/kernel/svm/svm.h +++ b/intern/cycles/kernel/svm/svm.h @@ -134,6 +134,7 @@ CCL_NAMESPACE_END #include "svm_light_path.h" #include "svm_magic.h" #include "svm_mapping.h" +#include "svm_normal.h" #include "svm_wave.h" #include "svm_math.h" #include "svm_mix.h" @@ -300,6 +301,9 @@ __device_noinline void svm_eval_nodes(KernelGlobals *kg, ShaderData *sd, ShaderT case NODE_VECTOR_MATH: svm_node_vector_math(kg, sd, stack, node.y, node.z, node.w, &offset); break; + case NODE_NORMAL: + svm_node_normal(kg, sd, stack, node.y, node.z, node.w, &offset); + break; case NODE_MAPPING: svm_node_mapping(kg, sd, stack, node.y, node.z, &offset); break; diff --git a/intern/cycles/kernel/svm/svm_normal.h b/intern/cycles/kernel/svm/svm_normal.h new file mode 100644 index 00000000000..0b3f63b6d7e --- /dev/null +++ b/intern/cycles/kernel/svm/svm_normal.h @@ -0,0 +1,41 @@ +/* + * Copyright 2011, Blender Foundation. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +CCL_NAMESPACE_BEGIN + +__device void svm_node_normal(KernelGlobals *kg, ShaderData *sd, float *stack, uint in_normal_offset, uint out_normal_offset, uint out_dot_offset, int *offset) +{ + /* read extra data */ + uint4 node1 = read_node(kg, offset); + float3 normal = stack_load_float3(stack, in_normal_offset); + + float3 direction; + direction.x = node1.x; + direction.y = node1.y; + direction.z = node1.z; + direction = normalize(direction); + + if (stack_valid(out_normal_offset)) + stack_store_float3(stack, out_normal_offset, direction); + + if (stack_valid(out_dot_offset)) + stack_store_float(stack, out_dot_offset, dot(direction, normalize(normal))); +} + +CCL_NAMESPACE_END + diff --git a/intern/cycles/kernel/svm/svm_types.h b/intern/cycles/kernel/svm/svm_types.h index efec5c7650d..e5e3175761b 100644 --- a/intern/cycles/kernel/svm/svm_types.h +++ b/intern/cycles/kernel/svm/svm_types.h @@ -84,7 +84,8 @@ typedef enum NodeType { NODE_COMBINE_RGB = 5100, NODE_HSV = 5200, NODE_CAMERA = 5300, - NODE_INVERT = 5400 + NODE_INVERT = 5400, + NODE_NORMAL = 5500 } NodeType; typedef enum NodeAttributeType { diff --git a/intern/cycles/render/nodes.cpp b/intern/cycles/render/nodes.cpp index 45f0ab41775..aec6f1f3e26 100644 --- a/intern/cycles/render/nodes.cpp +++ b/intern/cycles/render/nodes.cpp @@ -713,6 +713,41 @@ void MagicTextureNode::compile(OSLCompiler& compiler) compiler.add(this, "node_magic_texture"); } +/* Normal */ + +NormalNode::NormalNode() +: ShaderNode("normal") +{ + direction = make_float3(0.0f, 0.0f, 1.0f); + + add_input("Normal", SHADER_SOCKET_NORMAL); + add_output("Normal", SHADER_SOCKET_NORMAL); + add_output("Dot", SHADER_SOCKET_FLOAT); +} + +void NormalNode::compile(SVMCompiler& compiler) +{ + ShaderInput *normal_in = input("Normal"); + ShaderOutput *normal_out = output("Normal"); + ShaderOutput *dot_out = output("Dot"); + + compiler.stack_assign(normal_in); + compiler.stack_assign(normal_out); + compiler.stack_assign(dot_out); + + compiler.add_node(NODE_NORMAL, normal_in->stack_offset, normal_out->stack_offset, dot_out->stack_offset); + compiler.add_node( + __float_as_int(direction.x), + __float_as_int(direction.y), + __float_as_int(direction.z)); +} + +void NormalNode::compile(OSLCompiler& compiler) +{ + compiler.parameter_vector("Direction", direction); + compiler.add(this, "node_normal"); +} + /* Mapping */ MappingNode::MappingNode() diff --git a/intern/cycles/render/nodes.h b/intern/cycles/render/nodes.h index e08651cf1eb..9d947de1af5 100644 --- a/intern/cycles/render/nodes.h +++ b/intern/cycles/render/nodes.h @@ -343,6 +343,13 @@ public: static ShaderEnum type_enum; }; +class NormalNode : public ShaderNode { +public: + SHADER_NODE_CLASS(NormalNode) + + float3 direction; +}; + class VectorMathNode : public ShaderNode { public: SHADER_NODE_CLASS(VectorMathNode) diff --git a/source/blender/nodes/shader/nodes/node_shader_normal.c b/source/blender/nodes/shader/nodes/node_shader_normal.c index f699268e939..8515c99ba81 100644 --- a/source/blender/nodes/shader/nodes/node_shader_normal.c +++ b/source/blender/nodes/shader/nodes/node_shader_normal.c @@ -84,7 +84,7 @@ void register_node_type_sh_normal(bNodeTreeType *ttype) static bNodeType ntype; node_type_base(ttype, &ntype, SH_NODE_NORMAL, "Normal", NODE_CLASS_OP_VECTOR, NODE_OPTIONS); - node_type_compatibility(&ntype, NODE_OLD_SHADING); + node_type_compatibility(&ntype, NODE_OLD_SHADING|NODE_NEW_SHADING); node_type_socket_templates(&ntype, sh_node_normal_in, sh_node_normal_out); node_type_init(&ntype, node_shader_init_normal); node_type_exec(&ntype, node_shader_exec_normal); From 3311164b24da61f2967f96d0ee27508a7e2e0267 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 16 Dec 2011 19:53:12 +0000 Subject: [PATCH 57/70] Math lib: matrix multiplication order fix for two functions that were inconsistent with similar functions & math notation: mul_m4_m4m4(R, B, A) => mult_m4_m4m4(R, A, B) mul_m3_m3m4(R, B, A) => mult_m3_m3m4(R, A, B) For branch maintainers, it should be relatively simple to fix things manually, it's also possible run this script after merging to do automatic replacement: http://www.pasteall.org/27459/python --- source/blender/blenkernel/intern/anim.c | 20 +++--- source/blender/blenkernel/intern/armature.c | 26 +++---- source/blender/blenkernel/intern/camera.c | 2 +- source/blender/blenkernel/intern/constraint.c | 68 +++++++++---------- source/blender/blenkernel/intern/fcurve.c | 2 +- source/blender/blenkernel/intern/lattice.c | 4 +- source/blender/blenkernel/intern/mball.c | 6 +- source/blender/blenkernel/intern/object.c | 10 +-- source/blender/blenkernel/intern/particle.c | 6 +- source/blender/blenkernel/intern/tracking.c | 4 +- source/blender/blenlib/BLI_math_matrix.h | 6 +- source/blender/blenlib/intern/math_matrix.c | 18 ++--- source/blender/blenlib/intern/math_rotation.c | 6 +- source/blender/collada/AnimationExporter.cpp | 4 +- source/blender/collada/AnimationImporter.cpp | 14 ++-- source/blender/collada/ArmatureExporter.cpp | 6 +- source/blender/collada/ArmatureImporter.cpp | 10 +-- source/blender/collada/DocumentImporter.cpp | 2 +- source/blender/collada/TransformReader.cpp | 2 +- source/blender/collada/TransformWriter.cpp | 4 +- source/blender/collada/collada_utils.cpp | 2 +- .../blender/editors/armature/editarmature.c | 4 +- source/blender/editors/curve/editcurve.c | 2 +- source/blender/editors/mesh/editmesh_lib.c | 4 +- source/blender/editors/mesh/editmesh_tools.c | 2 +- source/blender/editors/mesh/meshtools.c | 2 +- .../editors/object/object_constraint.c | 2 +- source/blender/editors/object/object_hook.c | 2 +- .../editors/sculpt_paint/paint_image.c | 4 +- .../editors/sculpt_paint/paint_vertex.c | 8 +-- source/blender/editors/sculpt_paint/sculpt.c | 2 +- .../blender/editors/space_clip/tracking_ops.c | 8 +-- .../blender/editors/space_view3d/drawobject.c | 2 +- .../editors/space_view3d/space_view3d.c | 4 +- .../editors/space_view3d/view3d_draw.c | 10 +-- .../editors/space_view3d/view3d_edit.c | 4 +- .../blender/editors/space_view3d/view3d_fly.c | 4 +- .../editors/space_view3d/view3d_select.c | 2 +- .../editors/space_view3d/view3d_view.c | 10 +-- .../editors/transform/transform_conversions.c | 8 +-- .../editors/transform/transform_generics.c | 2 +- .../editors/transform/transform_manipulator.c | 4 +- source/blender/gpu/intern/gpu_material.c | 8 +-- .../blender/ikplugin/intern/iksolver_plugin.c | 10 +-- .../blender/ikplugin/intern/itasc_plugin.cpp | 12 ++-- source/blender/makesrna/intern/rna_object.c | 4 +- source/blender/modifiers/intern/MOD_array.c | 4 +- .../modifiers/intern/MOD_boolean_util.c | 2 +- source/blender/modifiers/intern/MOD_cast.c | 4 +- source/blender/modifiers/intern/MOD_hook.c | 2 +- .../blender/modifiers/intern/MOD_meshdeform.c | 4 +- source/blender/modifiers/intern/MOD_mirror.c | 2 +- source/blender/modifiers/intern/MOD_screw.c | 2 +- .../blender/modifiers/intern/MOD_uvproject.c | 6 +- source/blender/modifiers/intern/MOD_warp.c | 6 +- source/blender/modifiers/intern/MOD_wave.c | 2 +- .../render/intern/source/convertblender.c | 44 ++++++------ source/blender/render/intern/source/envmap.c | 16 ++--- .../render/intern/source/pointdensity.c | 2 +- .../render/intern/source/render_texture.c | 2 +- source/blender/render/intern/source/shadbuf.c | 6 +- .../blender/render/intern/source/shadeinput.c | 2 +- source/blender/render/intern/source/strand.c | 2 +- .../blender/render/intern/source/volumetric.c | 2 +- source/blender/render/intern/source/zbuf.c | 10 +-- .../Converter/BL_ArmatureChannel.cpp | 2 +- 66 files changed, 235 insertions(+), 233 deletions(-) diff --git a/source/blender/blenkernel/intern/anim.c b/source/blender/blenkernel/intern/anim.c index 0cd8845c53b..bb8022c59fe 100644 --- a/source/blender/blenkernel/intern/anim.c +++ b/source/blender/blenkernel/intern/anim.c @@ -726,10 +726,10 @@ static void group_duplilist(ListBase *lb, Scene *scene, Object *ob, int level, i if(!is_zero_v3(group->dupli_ofs)) { copy_m4_m4(tmat, go->ob->obmat); sub_v3_v3v3(tmat[3], tmat[3], group->dupli_ofs); - mul_m4_m4m4(mat, tmat, ob->obmat); + mult_m4_m4m4(mat, ob->obmat, tmat); } else { - mul_m4_m4m4(mat, go->ob->obmat, ob->obmat); + mult_m4_m4m4(mat, ob->obmat, go->ob->obmat); } dob= new_dupli_object(lb, go->ob, mat, ob->lay, 0, OB_DUPLIGROUP, animated); @@ -955,7 +955,7 @@ static void vertex_duplilist(ListBase *lb, ID *id, Scene *scene, Object *par, fl when par_space_mat is NULL ob->obmat can be used instead of ob__obmat */ if(par_space_mat) - mul_m4_m4m4(vdd.obmat, ob->obmat, par_space_mat); + mult_m4_m4m4(vdd.obmat, par_space_mat, ob->obmat); else copy_m4_m4(vdd.obmat, ob->obmat); @@ -1084,7 +1084,7 @@ static void face_duplilist(ListBase *lb, ID *id, Scene *scene, Object *par, floa when par_space_mat is NULL ob->obmat can be used instead of ob__obmat */ if(par_space_mat) - mul_m4_m4m4(ob__obmat, ob->obmat, par_space_mat); + mult_m4_m4m4(ob__obmat, par_space_mat, ob->obmat); else copy_m4_m4(ob__obmat, ob->obmat); @@ -1396,15 +1396,15 @@ static void new_particle_duplilist(ListBase *lb, ID *id, Scene *scene, Object *p if(!is_zero_v3(part->dup_group->dupli_ofs)) { copy_m4_m4(tmat, oblist[b]->obmat); sub_v3_v3v3(tmat[3], tmat[3], part->dup_group->dupli_ofs); - mul_m4_m4m4(tmat, tmat, pamat); + mult_m4_m4m4(tmat, pamat, tmat); } else { - mul_m4_m4m4(tmat, oblist[b]->obmat, pamat); + mult_m4_m4m4(tmat, pamat, oblist[b]->obmat); } mul_mat3_m4_fl(tmat, size*scale); if(par_space_mat) - mul_m4_m4m4(mat, tmat, par_space_mat); + mult_m4_m4m4(mat, par_space_mat, tmat); else copy_m4_m4(mat, tmat); @@ -1435,15 +1435,15 @@ static void new_particle_duplilist(ListBase *lb, ID *id, Scene *scene, Object *p * remove the real emitter's transformation before 2nd order duplication. */ if(par_space_mat && GS(id->name) != ID_GR) - mul_m4_m4m4(mat, pamat, psys->imat); + mult_m4_m4m4(mat, psys->imat, pamat); else copy_m4_m4(mat, pamat); - mul_m4_m4m4(tmat, obmat, mat); + mult_m4_m4m4(tmat, mat, obmat); mul_mat3_m4_fl(tmat, size*scale); if(par_space_mat) - mul_m4_m4m4(mat, tmat, par_space_mat); + mult_m4_m4m4(mat, par_space_mat, tmat); else copy_m4_m4(mat, tmat); diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c index 4035db36a39..ae04b7760c2 100644 --- a/source/blender/blenkernel/intern/armature.c +++ b/source/blender/blenkernel/intern/armature.c @@ -505,9 +505,9 @@ Mat4 *b_bone_spline_setup(bPoseChannel *pchan, int rest) if(prev->bone->segments==1) { /* find the previous roll to interpolate */ if(rest) - mul_m4_m4m4(difmat, prev->bone->arm_mat, imat); + mult_m4_m4m4(difmat, imat, prev->bone->arm_mat); else - mul_m4_m4m4(difmat, prev->pose_mat, imat); + mult_m4_m4m4(difmat, imat, prev->pose_mat); copy_m3_m4(result, difmat); // the desired rotation at beginning of next bone vec_roll_to_mat3(h1, 0.0f, mat3); // the result of vec_roll without roll @@ -538,9 +538,9 @@ Mat4 *b_bone_spline_setup(bPoseChannel *pchan, int rest) /* find the next roll to interpolate as well */ if(rest) - mul_m4_m4m4(difmat, next->bone->arm_mat, imat); + mult_m4_m4m4(difmat, imat, next->bone->arm_mat); else - mul_m4_m4m4(difmat, next->pose_mat, imat); + mult_m4_m4m4(difmat, imat, next->pose_mat); copy_m3_m4(result, difmat); // the desired rotation at beginning of next bone vec_roll_to_mat3(h2, 0.0f, mat3); // the result of vec_roll without roll @@ -837,7 +837,7 @@ void armature_deform_verts(Object *armOb, Object *target, DerivedMesh *dm, invert_m4_m4(obinv, target->obmat); copy_m4_m4(premat, target->obmat); - mul_m4_m4m4(postmat, armOb->obmat, obinv); + mult_m4_m4m4(postmat, obinv, armOb->obmat); invert_m4_m4(premat, postmat); /* bone defmats are already in the channels, chan_mat */ @@ -1103,7 +1103,7 @@ void armature_mat_world_to_pose(Object *ob, float inmat[][4], float outmat[][4]) invert_m4_m4(obmat, ob->obmat); /* multiply given matrix by object's-inverse to find pose-space matrix */ - mul_m4_m4m4(outmat, obmat, inmat); + mult_m4_m4m4(outmat, inmat, obmat); } /* Convert Wolrd-Space Location to Pose-Space Location @@ -1174,7 +1174,7 @@ void armature_mat_pose_to_bone(bPoseChannel *pchan, float inmat[][4], float outm * This should leave behind the effects of restpose + * parenting + constraints */ - mul_m4_m4m4(pc_posemat, inv_trans, pose_mat); + mult_m4_m4m4(pc_posemat, pose_mat, inv_trans); /* get the inverse of the leftovers so that we can remove * that component from the supplied matrix @@ -1182,7 +1182,7 @@ void armature_mat_pose_to_bone(bPoseChannel *pchan, float inmat[][4], float outm invert_m4_m4(inv_posemat, pc_posemat); /* get the new matrix */ - mul_m4_m4m4(outmat, inmat, inv_posemat); + mult_m4_m4m4(outmat, inv_posemat, inmat); } /* Convert Pose-Space Location to Bone-Space Location @@ -1237,7 +1237,7 @@ void armature_mat_pose_to_delta(float delta_mat[][4], float pose_mat[][4], float float imat[4][4]; invert_m4_m4(imat, arm_mat); - mul_m4_m4m4(delta_mat, pose_mat, imat); + mult_m4_m4m4(delta_mat, imat, pose_mat); } /* **************** Rotation Mode Conversions ****************************** */ @@ -1410,7 +1410,7 @@ void where_is_armature_bone(Bone *bone, Bone *prevbone) offs_bone[3][1]+= prevbone->length; /* Compose the matrix for this bone */ - mul_m4_m4m4(bone->arm_mat, offs_bone, prevbone->arm_mat); + mult_m4_m4m4(bone->arm_mat, prevbone->arm_mat, offs_bone); } else { copy_m4_m3(bone->arm_mat, bone->bone_mat); @@ -2310,7 +2310,7 @@ void where_is_pose_bone(Scene *scene, Object *ob, bPoseChannel *pchan, float cti /* extract the scale of the parent matrix */ mat4_to_size(tscale, parchan->pose_mat); size_to_mat4(tsmat, tscale); - mul_m4_m4m4(tmat, tmat, tsmat); + mult_m4_m4m4(tmat, tsmat, tmat); mul_serie_m4(pchan->pose_mat, tmat, offs_bone, pchan->chan_mat, NULL, NULL, NULL, NULL, NULL); } @@ -2344,7 +2344,7 @@ void where_is_pose_bone(Scene *scene, Object *ob, bPoseChannel *pchan, float cti } } else { - mul_m4_m4m4(pchan->pose_mat, pchan->chan_mat, bone->arm_mat); + mult_m4_m4m4(pchan->pose_mat, bone->arm_mat, pchan->chan_mat); /* optional location without arm_mat rotation */ if(bone->flag & BONE_NO_LOCAL_LOCATION) @@ -2466,7 +2466,7 @@ void where_is_pose (Scene *scene, Object *ob) for(pchan= ob->pose->chanbase.first; pchan; pchan= pchan->next) { if(pchan->bone) { invert_m4_m4(imat, pchan->bone->arm_mat); - mul_m4_m4m4(pchan->chan_mat, imat, pchan->pose_mat); + mult_m4_m4m4(pchan->chan_mat, pchan->pose_mat, imat); } } } diff --git a/source/blender/blenkernel/intern/camera.c b/source/blender/blenkernel/intern/camera.c index 2bd973d7799..f55ceab7de8 100644 --- a/source/blender/blenkernel/intern/camera.c +++ b/source/blender/blenkernel/intern/camera.c @@ -159,7 +159,7 @@ float object_camera_dof_distance(Object *ob) copy_m4_m4(obmat, ob->obmat); normalize_m4(obmat); invert_m4_m4(imat, obmat); - mul_m4_m4m4(mat, cam->dof_ob->obmat, imat); + mult_m4_m4m4(mat, imat, cam->dof_ob->obmat); return fabsf(mat[3][2]); } return cam->YF_dofdist; diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c index 87a50b89547..927a98c174f 100644 --- a/source/blender/blenkernel/intern/constraint.c +++ b/source/blender/blenkernel/intern/constraint.c @@ -153,7 +153,7 @@ bConstraintOb *constraints_make_evalob (Scene *scene, Object *ob, void *subdata, } /* matrix in world-space */ - mul_m4_m4m4(cob->matrix, cob->pchan->pose_mat, ob->obmat); + mult_m4_m4m4(cob->matrix, ob->obmat, cob->pchan->pose_mat); } else unit_m4(cob->matrix); @@ -182,7 +182,7 @@ void constraints_clear_evalob (bConstraintOb *cob) /* calculate delta of constraints evaluation */ invert_m4_m4(imat, cob->startmat); - mul_m4_m4m4(delta, imat, cob->matrix); + mult_m4_m4m4(delta, cob->matrix, imat); /* copy matrices back to source */ switch (cob->type) { @@ -203,7 +203,7 @@ void constraints_clear_evalob (bConstraintOb *cob) /* cob->ob or cob->pchan might not exist */ if (cob->ob && cob->pchan) { /* copy new pose-matrix back to owner */ - mul_m4_m4m4(cob->pchan->pose_mat, cob->matrix, cob->ob->imat); + mult_m4_m4m4(cob->pchan->pose_mat, cob->ob->imat, cob->matrix); /* copy inverse of delta back to owner */ invert_m4_m4(cob->pchan->constinv, delta); @@ -242,7 +242,7 @@ void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4 /* world to pose */ invert_m4_m4(imat, ob->obmat); copy_m4_m4(tempmat, mat); - mul_m4_m4m4(mat, tempmat, imat); + mult_m4_m4m4(mat, imat, tempmat); /* use pose-space as stepping stone for other spaces... */ if (ELEM(to, CONSTRAINT_SPACE_LOCAL, CONSTRAINT_SPACE_PARLOCAL)) { @@ -256,7 +256,7 @@ void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4 /* pose to world */ if (to == CONSTRAINT_SPACE_WORLD) { copy_m4_m4(tempmat, mat); - mul_m4_m4m4(mat, tempmat, ob->obmat); + mult_m4_m4m4(mat, ob->obmat, tempmat); } /* pose to local */ else if (to == CONSTRAINT_SPACE_LOCAL) { @@ -281,12 +281,12 @@ void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4 offs_bone[3][0]= offs_bone[3][1]= offs_bone[3][2]= 0.0f; mul_m4_v3(pchan->parent->pose_mat, tmat[3]); - mul_m4_m4m4(diff_mat, offs_bone, tmat); + mult_m4_m4m4(diff_mat, tmat, offs_bone); invert_m4_m4(imat, diff_mat); } else { /* pose_mat = par_pose_mat * bone_mat * chan_mat */ - mul_m4_m4m4(diff_mat, offs_bone, pchan->parent->pose_mat); + mult_m4_m4m4(diff_mat, pchan->parent->pose_mat, offs_bone); invert_m4_m4(imat, diff_mat); } } @@ -296,7 +296,7 @@ void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4 } copy_m4_m4(tempmat, mat); - mul_m4_m4m4(mat, tempmat, imat); + mult_m4_m4m4(mat, imat, tempmat); } } /* pose to local with parent */ @@ -304,7 +304,7 @@ void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4 if (pchan->bone) { invert_m4_m4(imat, pchan->bone->arm_mat); copy_m4_m4(tempmat, mat); - mul_m4_m4m4(mat, tempmat, imat); + mult_m4_m4m4(mat, imat, tempmat); } } } @@ -334,22 +334,22 @@ void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4 zero_v3(offs_bone[3]); mul_m4_v3(pchan->parent->pose_mat, tmat[3]); - mul_m4_m4m4(diff_mat, offs_bone, tmat); + mult_m4_m4m4(diff_mat, tmat, offs_bone); copy_m4_m4(tempmat, mat); - mul_m4_m4m4(mat, tempmat, diff_mat); + mult_m4_m4m4(mat, diff_mat, tempmat); } else { /* pose_mat = par_pose_mat * bone_mat * chan_mat */ - mul_m4_m4m4(diff_mat, offs_bone, pchan->parent->pose_mat); + mult_m4_m4m4(diff_mat, pchan->parent->pose_mat, offs_bone); copy_m4_m4(tempmat, mat); - mul_m4_m4m4(mat, tempmat, diff_mat); + mult_m4_m4m4(mat, diff_mat, tempmat); } } else { copy_m4_m4(diff_mat, pchan->bone->arm_mat); copy_m4_m4(tempmat, mat); - mul_m4_m4m4(mat, tempmat, diff_mat); + mult_m4_m4m4(mat, diff_mat, tempmat); } } @@ -366,7 +366,7 @@ void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4 if (pchan->bone) { copy_m4_m4(diff_mat, pchan->bone->arm_mat); copy_m4_m4(tempmat, mat); - mul_m4_m4m4(mat, diff_mat, tempmat); + mult_m4_m4m4(mat, tempmat, diff_mat); } /* use pose-space as stepping stone for other spaces */ @@ -384,10 +384,10 @@ void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4 /* check if object has a parent */ if (ob->parent) { /* 'subtract' parent's effects from owner */ - mul_m4_m4m4(diff_mat, ob->parentinv, ob->parent->obmat); + mult_m4_m4m4(diff_mat, ob->parent->obmat, ob->parentinv); invert_m4_m4(imat, diff_mat); copy_m4_m4(tempmat, mat); - mul_m4_m4m4(mat, tempmat, imat); + mult_m4_m4m4(mat, imat, tempmat); } else { /* Local space in this case will have to be defined as local to the owner's @@ -399,7 +399,7 @@ void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4 invert_m4_m4(imat, diff_mat); copy_m4_m4(tempmat, mat); - mul_m4_m4m4(mat, tempmat, imat); + mult_m4_m4m4(mat, imat, tempmat); } } else if (from==CONSTRAINT_SPACE_LOCAL && to==CONSTRAINT_SPACE_WORLD) { @@ -407,8 +407,8 @@ void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4 if (ob->parent) { /* 'add' parent's effect back to owner */ copy_m4_m4(tempmat, mat); - mul_m4_m4m4(diff_mat, ob->parentinv, ob->parent->obmat); - mul_m4_m4m4(mat, tempmat, diff_mat); + mult_m4_m4m4(diff_mat, ob->parent->obmat, ob->parentinv); + mult_m4_m4m4(mat, diff_mat, tempmat); } else { /* Local space in this case will have to be defined as local to the owner's @@ -419,7 +419,7 @@ void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4 zero_v3(diff_mat[3]); copy_m4_m4(tempmat, mat); - mul_m4_m4m4(mat, tempmat, diff_mat); + mult_m4_m4m4(mat, diff_mat, tempmat); } } } @@ -612,7 +612,7 @@ static void constraint_target_to_mat4 (Object *ob, const char *substring, float */ if (headtail < 0.000001f) { /* skip length interpolation if set to head */ - mul_m4_m4m4(mat, pchan->pose_mat, ob->obmat); + mult_m4_m4m4(mat, ob->obmat, pchan->pose_mat); } else { float tempmat[4][4], loc[3]; @@ -624,7 +624,7 @@ static void constraint_target_to_mat4 (Object *ob, const char *substring, float copy_m4_m4(tempmat, pchan->pose_mat); copy_v3_v3(tempmat[3], loc); - mul_m4_m4m4(mat, tempmat, ob->obmat); + mult_m4_m4m4(mat, ob->obmat, tempmat); } } else @@ -836,12 +836,12 @@ static void childof_evaluate (bConstraint *con, bConstraintOb *cob, ListBase *ta /* multiply target (parent matrix) by offset (parent inverse) to get * the effect of the parent that will be exherted on the owner */ - mul_m4_m4m4(parmat, data->invmat, ct->matrix); + mult_m4_m4m4(parmat, ct->matrix, data->invmat); /* now multiply the parent matrix by the owner matrix to get the * the effect of this constraint (i.e. owner is 'parented' to parent) */ - mul_m4_m4m4(cob->matrix, cob->matrix, parmat); + mult_m4_m4m4(cob->matrix, parmat, cob->matrix); } else { float invmat[4][4], tempmat[4][4]; @@ -878,13 +878,13 @@ static void childof_evaluate (bConstraint *con, bConstraintOb *cob, ListBase *ta /* multiply target (parent matrix) by offset (parent inverse) to get * the effect of the parent that will be exherted on the owner */ - mul_m4_m4m4(parmat, invmat, ct->matrix); + mult_m4_m4m4(parmat, ct->matrix, invmat); /* now multiply the parent matrix by the owner matrix to get the * the effect of this constraint (i.e. owner is 'parented' to parent) */ copy_m4_m4(tempmat, cob->matrix); - mul_m4_m4m4(cob->matrix, tempmat, parmat); + mult_m4_m4m4(cob->matrix, parmat, tempmat); /* without this, changes to scale and rotation can change location * of a parentless bone or a disconnected bone. Even though its set @@ -1294,7 +1294,7 @@ static void followpath_get_tarmat (bConstraint *con, bConstraintOb *cob, bConstr if (data->followflag & FOLLOWPATH_RADIUS) { float tmat[4][4], rmat[4][4]; scale_m4_fl(tmat, radius); - mul_m4_m4m4(rmat, totmat, tmat); + mult_m4_m4m4(rmat, tmat, totmat); copy_m4_m4(totmat, rmat); } @@ -2237,7 +2237,7 @@ static void actcon_evaluate (bConstraint *UNUSED(con), bConstraintOb *cob, ListB * function has already taken care of everything else. */ copy_m4_m4(temp, cob->matrix); - mul_m4_m4m4(cob->matrix, ct->matrix, temp); + mult_m4_m4m4(cob->matrix, temp, ct->matrix); } } @@ -2928,7 +2928,7 @@ static void minmax_evaluate (bConstraint *con, bConstraintOb *cob, ListBase *tar if (data->flag & MINMAX_USEROT) { /* take rotation of target into account by doing the transaction in target's localspace */ invert_m4_m4(imat, tarmat); - mul_m4_m4m4(tmat, obmat, imat); + mult_m4_m4m4(tmat, imat, obmat); copy_m4_m4(obmat, tmat); unit_m4(tarmat); } @@ -2981,7 +2981,7 @@ static void minmax_evaluate (bConstraint *con, bConstraintOb *cob, ListBase *tar } if (data->flag & MINMAX_USEROT) { /* get out of localspace */ - mul_m4_m4m4(tmat, obmat, ct->matrix); + mult_m4_m4m4(tmat, ct->matrix, obmat); copy_m4_m4(cob->matrix, tmat); } else { @@ -4020,7 +4020,7 @@ static void followtrack_evaluate (bConstraint *con, bConstraintOb *cob, ListBase copy_m4_m4(rmat, camob->obmat); zero_v3(rmat[3]); - mul_m4_m4m4(cob->matrix, rmat, cob->matrix); + mult_m4_m4m4(cob->matrix, cob->matrix, rmat); copy_v3_v3(cob->matrix[3], disp); } @@ -4039,7 +4039,7 @@ static void followtrack_evaluate (bConstraint *con, bConstraintOb *cob, ListBase /* apply camera rotation so Z-axis would be co-linear */ copy_m4_m4(rmat, camob->obmat); zero_v3(rmat[3]); - mul_m4_m4m4(cob->matrix, rmat, cob->matrix); + mult_m4_m4m4(cob->matrix, cob->matrix, rmat); copy_v3_v3(cob->matrix[3], disp); } @@ -4096,7 +4096,7 @@ static void camerasolver_evaluate (bConstraint *con, bConstraintOb *cob, ListBas BKE_tracking_get_interpolated_camera(&clip->tracking, scene->r.cfra, mat); copy_m4_m4(obmat, cob->matrix); - mul_m4_m4m4(cob->matrix, mat, obmat); + mult_m4_m4m4(cob->matrix, obmat, mat); } } diff --git a/source/blender/blenkernel/intern/fcurve.c b/source/blender/blenkernel/intern/fcurve.c index d01e3de0796..b9947c506d1 100644 --- a/source/blender/blenkernel/intern/fcurve.c +++ b/source/blender/blenkernel/intern/fcurve.c @@ -1283,7 +1283,7 @@ static float dvar_eval_transChan (ChannelDriver *driver, DriverVar *dvar) } else { /* worldspace matrix */ - mul_m4_m4m4(mat, pchan->pose_mat, ob->obmat); + mult_m4_m4m4(mat, ob->obmat, pchan->pose_mat); } } else { diff --git a/source/blender/blenkernel/intern/lattice.c b/source/blender/blenkernel/intern/lattice.c index fe07662795e..4c30789db73 100644 --- a/source/blender/blenkernel/intern/lattice.c +++ b/source/blender/blenkernel/intern/lattice.c @@ -316,7 +316,7 @@ void init_latt_deform(Object *oblatt, Object *ob) else { /* in deformspace, calc matrix */ invert_m4_m4(imat, oblatt->obmat); - mul_m4_m4m4(lt->latmat, ob->obmat, imat); + mult_m4_m4m4(lt->latmat, imat, ob->obmat); /* back: put in deform array */ invert_m4_m4(imat, lt->latmat); @@ -470,7 +470,7 @@ typedef struct { static void init_curve_deform(Object *par, Object *ob, CurveDeform *cd, int dloc) { invert_m4_m4(ob->imat, ob->obmat); - mul_m4_m4m4(cd->objectspace, par->obmat, ob->imat); + mult_m4_m4m4(cd->objectspace, ob->imat, par->obmat); invert_m4_m4(cd->curvespace, cd->objectspace); copy_m3_m4(cd->objectspace3, cd->objectspace); diff --git a/source/blender/blenkernel/intern/mball.c b/source/blender/blenkernel/intern/mball.c index 0883ec121d6..57fc7473860 100644 --- a/source/blender/blenkernel/intern/mball.c +++ b/source/blender/blenkernel/intern/mball.c @@ -1679,7 +1679,7 @@ float init_meta(Scene *scene, Object *ob) /* return totsize */ temp2[3][1]= ml->y; temp2[3][2]= ml->z; - mul_m4_m4m4(temp1, temp3, temp2); + mult_m4_m4m4(temp1, temp2, temp3); /* make a copy because of duplicates */ mainb[a]= new_pgn_element(sizeof(MetaElem)); @@ -1691,9 +1691,9 @@ float init_meta(Scene *scene, Object *ob) /* return totsize */ /* mat is the matrix to transform from mball into the basis-mball */ invert_m4_m4(obinv, obmat); - mul_m4_m4m4(temp2, bob->obmat, obinv); + mult_m4_m4m4(temp2, obinv, bob->obmat); /* MetaBall transformation */ - mul_m4_m4m4(mat, temp1, temp2); + mult_m4_m4m4(mat, temp2, temp1); invert_m4_m4(imat,mat); diff --git a/source/blender/blenkernel/intern/object.c b/source/blender/blenkernel/intern/object.c index 29494f02d10..28c1aacdec5 100644 --- a/source/blender/blenkernel/intern/object.c +++ b/source/blender/blenkernel/intern/object.c @@ -1363,7 +1363,7 @@ void object_make_proxy(Object *ob, Object *target, Object *gob) * this is closer to making a copy of the object - in-place. */ if(gob) { ob->rotmode= target->rotmode; - mul_m4_m4m4(ob->obmat, target->obmat, gob->obmat); + mult_m4_m4m4(ob->obmat, gob->obmat, target->obmat); if(gob->dup_group) { /* should always be true */ float tvec[3]; copy_v3_v3(tvec, gob->dup_group->dupli_ofs); @@ -1589,9 +1589,9 @@ void object_apply_mat4(Object *ob, float mat[][4], const short use_compat, const if(use_parent && ob->parent) { float rmat[4][4], diff_mat[4][4], imat[4][4]; - mul_m4_m4m4(diff_mat, ob->parentinv, ob->parent->obmat); + mult_m4_m4m4(diff_mat, ob->parent->obmat, ob->parentinv); invert_m4_m4(imat, diff_mat); - mul_m4_m4m4(rmat, mat, imat); /* get the parent relative matrix */ + mult_m4_m4m4(rmat, imat, mat); /* get the parent relative matrix */ object_apply_mat4(ob, rmat, use_compat, FALSE); /* same as below, use rmat rather than mat */ @@ -1715,7 +1715,7 @@ static void ob_parcurve(Scene *scene, Object *ob, Object *par, float mat[][4]) if(cu->flag & CU_PATH_RADIUS) { float tmat[4][4], rmat[4][4]; scale_m4_fl(tmat, radius); - mul_m4_m4m4(rmat, mat, tmat); + mult_m4_m4m4(rmat, tmat, mat); copy_m4_m4(mat, rmat); } @@ -2520,7 +2520,7 @@ void object_handle_update(Scene *scene, Object *ob) if(ob->proxy_from->proxy_group) {/* transform proxy into group space */ Object *obg= ob->proxy_from->proxy_group; invert_m4_m4(obg->imat, obg->obmat); - mul_m4_m4m4(ob->obmat, ob->proxy_from->obmat, obg->imat); + mult_m4_m4m4(ob->obmat, obg->imat, ob->proxy_from->obmat); if(obg->dup_group) { /* should always be true */ add_v3_v3(ob->obmat[3], obg->dup_group->dupli_ofs); } diff --git a/source/blender/blenkernel/intern/particle.c b/source/blender/blenkernel/intern/particle.c index 000df5e721d..a3e13b48fe4 100644 --- a/source/blender/blenkernel/intern/particle.c +++ b/source/blender/blenkernel/intern/particle.c @@ -709,8 +709,8 @@ void psys_render_set(Object *ob, ParticleSystem *psys, float viewmat[][4], float psys->childcachebufs.first = psys->childcachebufs.last = NULL; copy_m4_m4(data->winmat, winmat); - mul_m4_m4m4(data->viewmat, ob->obmat, viewmat); - mul_m4_m4m4(data->mat, data->viewmat, winmat); + mult_m4_m4m4(data->viewmat, viewmat, ob->obmat); + mult_m4_m4m4(data->mat, winmat, data->viewmat); data->winx= winx; data->winy= winy; @@ -3374,7 +3374,7 @@ void psys_mat_hair_to_global(Object *ob, DerivedMesh *dm, short from, ParticleDa psys_mat_hair_to_object(ob, dm, from, pa, facemat); - mul_m4_m4m4(hairmat, facemat, ob->obmat); + mult_m4_m4m4(hairmat, ob->obmat, facemat); } /************************************************/ diff --git a/source/blender/blenkernel/intern/tracking.c b/source/blender/blenkernel/intern/tracking.c index e2b0e823905..828ecb2d535 100644 --- a/source/blender/blenkernel/intern/tracking.c +++ b/source/blender/blenkernel/intern/tracking.c @@ -1484,7 +1484,7 @@ static int retrieve_libmv_reconstruct_tracks(MovieReconstructContext *context, M } if(origin_set) - mul_m4_m4m4(mat, mat, imat); + mult_m4_m4m4(mat, imat, mat); copy_m4_m4(reconstructed[reconstruction->camnr].mat, mat); reconstructed[reconstruction->camnr].framenr= a; @@ -1914,7 +1914,7 @@ void BKE_tracking_projection_matrix(MovieTracking *tracking, int framenr, int wi float imat[4][4]; invert_m4_m4(imat, camera->mat); - mul_m4_m4m4(mat, imat, winmat); + mult_m4_m4m4(mat, winmat, imat); } else copy_m4_m4(mat, winmat); } diff --git a/source/blender/blenlib/BLI_math_matrix.h b/source/blender/blenlib/BLI_math_matrix.h index 008d2ad49ce..4d3a4dfe445 100644 --- a/source/blender/blenlib/BLI_math_matrix.h +++ b/source/blender/blenlib/BLI_math_matrix.h @@ -68,10 +68,12 @@ void sub_m3_m3m3(float R[3][3], float A[3][3], float B[3][3]); void sub_m4_m4m4(float R[4][4], float A[4][4], float B[4][4]); void mul_m3_m3m3(float R[3][3], float A[3][3], float B[3][3]); -void mul_m4_m4m4(float R[4][4], float A[4][4], float B[4][4]); void mul_m4_m3m4(float R[4][4], float A[3][3], float B[4][4]); void mul_m4_m4m3(float R[4][4], float A[4][4], float B[3][3]); -void mul_m3_m3m4(float R[3][3], float A[3][3], float B[4][4]); +/* note: the A,B arguments are reversed compared to previous mul_m4_m4m4 + function, for consistency with above functions & math notation. */ +void mult_m4_m4m4(float R[4][4], float A[4][4], float B[4][4]); +void mult_m3_m3m4(float R[3][3], float A[4][4], float B[3][3]); void mul_serie_m3(float R[3][3], float M1[3][3], float M2[3][3], float M3[3][3], float M4[3][3], diff --git a/source/blender/blenlib/intern/math_matrix.c b/source/blender/blenlib/intern/math_matrix.c index 37cb49fc17b..ee9cbaf1f81 100644 --- a/source/blender/blenlib/intern/math_matrix.c +++ b/source/blender/blenlib/intern/math_matrix.c @@ -142,7 +142,7 @@ void swap_m4m4(float m1[][4], float m2[][4]) /******************************** Arithmetic *********************************/ -void mul_m4_m4m4(float m1[][4], float m2_[][4], float m3_[][4]) +void mult_m4_m4m4(float m1[][4], float m3_[][4], float m2_[][4]) { float m2[4][4], m3[4][4]; @@ -209,7 +209,7 @@ void mul_m4_m4m3(float (*m1)[4], float (*m3)[4], float (*m2)[3]) } /* m1 = m2 * m3, ignore the elements on the 4th row/column of m3*/ -void mul_m3_m3m4(float m1[][3], float m2[][3], float m3[][4]) +void mult_m3_m3m4(float m1[][3], float m3[][4], float m2[][3]) { /* m1[i][j] = m2[i][k] * m3[k][j] */ m1[0][0] = m2[0][0] * m3[0][0] + m2[0][1] * m3[1][0] +m2[0][2] * m3[2][0]; @@ -280,19 +280,19 @@ void mul_serie_m4(float answ[][4], float m1[][4], if(m1==NULL || m2==NULL) return; - mul_m4_m4m4(answ, m2, m1); + mult_m4_m4m4(answ, m1, m2); if(m3) { - mul_m4_m4m4(temp, m3, answ); + mult_m4_m4m4(temp, answ, m3); if(m4) { - mul_m4_m4m4(answ, m4, temp); + mult_m4_m4m4(answ, temp, m4); if(m5) { - mul_m4_m4m4(temp, m5, answ); + mult_m4_m4m4(temp, answ, m5); if(m6) { - mul_m4_m4m4(answ, m6, temp); + mult_m4_m4m4(answ, temp, m6); if(m7) { - mul_m4_m4m4(temp, m7, answ); + mult_m4_m4m4(temp, answ, m7); if(m8) { - mul_m4_m4m4(answ, m8, temp); + mult_m4_m4m4(answ, temp, m8); } else copy_m4_m4(answ, temp); } diff --git a/source/blender/blenlib/intern/math_rotation.c b/source/blender/blenlib/intern/math_rotation.c index e4664798f5d..5596b6f9f22 100644 --- a/source/blender/blenlib/intern/math_rotation.c +++ b/source/blender/blenlib/intern/math_rotation.c @@ -1433,7 +1433,7 @@ void mat4_to_dquat(DualQuat *dq,float basemat[][4], float mat[][4]) /* split scaling and rotation, there is probably a faster way to do this, it's done like this now to correctly get negative scaling */ - mul_m4_m4m4(baseRS, basemat, mat); + mult_m4_m4m4(baseRS, mat, basemat); mat4_to_size(scale,baseRS); copy_v3_v3(dscale, scale); @@ -1452,10 +1452,10 @@ void mat4_to_dquat(DualQuat *dq,float basemat[][4], float mat[][4]) copy_v3_v3(baseR[3], baseRS[3]); invert_m4_m4(baseinv, basemat); - mul_m4_m4m4(R, baseinv, baseR); + mult_m4_m4m4(R, baseR, baseinv); invert_m4_m4(baseRinv, baseR); - mul_m4_m4m4(S, baseRS, baseRinv); + mult_m4_m4m4(S, baseRinv, baseRS); /* set scaling part */ mul_serie_m4(dq->scale, basemat, S, baseinv, NULL, NULL, NULL, NULL, NULL); diff --git a/source/blender/collada/AnimationExporter.cpp b/source/blender/collada/AnimationExporter.cpp index 7bd70e9f289..7b57ed243a1 100644 --- a/source/blender/collada/AnimationExporter.cpp +++ b/source/blender/collada/AnimationExporter.cpp @@ -767,7 +767,7 @@ std::string AnimationExporter::create_4x4_source(std::vector &frames , Ob // compute bone local mat if (bone->parent) { invert_m4_m4(ipar, parchan->pose_mat); - mul_m4_m4m4(mat, pchan->pose_mat, ipar); + mult_m4_m4m4(mat, ipar, pchan->pose_mat); } else copy_m4_m4(mat, pchan->pose_mat); @@ -1274,7 +1274,7 @@ void AnimationExporter::sample_animation(float *v, std::vector &frames, i // compute bone local mat if (bone->parent) { invert_m4_m4(ipar, parchan->pose_mat); - mul_m4_m4m4(mat, pchan->pose_mat, ipar); + mult_m4_m4m4(mat, ipar, pchan->pose_mat); } else copy_m4_m4(mat, pchan->pose_mat); diff --git a/source/blender/collada/AnimationImporter.cpp b/source/blender/collada/AnimationImporter.cpp index 9b4e47615f7..c47e024aba4 100644 --- a/source/blender/collada/AnimationImporter.cpp +++ b/source/blender/collada/AnimationImporter.cpp @@ -723,7 +723,7 @@ void AnimationImporter::apply_matrix_curves( Object * ob, std::vector& // calc M calc_joint_parent_mat_rest(par, NULL, root, node); - mul_m4_m4m4(temp, matfra, par); + mult_m4_m4m4(temp, par, matfra); // evaluate_joint_world_transform_at_frame(temp, NULL, , node, fra); @@ -1276,7 +1276,7 @@ Object *AnimationImporter::translate_animation_OLD(COLLADAFW::Node *node, // calc M calc_joint_parent_mat_rest(par, NULL, root, node); - mul_m4_m4m4(temp, matfra, par); + mult_m4_m4m4(temp, par, matfra); // evaluate_joint_world_transform_at_frame(temp, NULL, , node, fra); @@ -1434,7 +1434,7 @@ void AnimationImporter::evaluate_transform_at_frame(float mat[4][4], COLLADAFW:: float temp[4][4]; copy_m4_m4(temp, mat); - mul_m4_m4m4(mat, m, temp); + mult_m4_m4m4(mat, temp, m); } } @@ -1597,7 +1597,7 @@ void AnimationImporter::get_joint_rest_mat(float mat[4][4], COLLADAFW::Node *roo calc_joint_parent_mat_rest(par, NULL, root, node); get_node_mat(m, node, NULL, NULL); - mul_m4_m4m4(mat, m, par); + mult_m4_m4m4(mat, par, m); } } @@ -1616,7 +1616,7 @@ bool AnimationImporter::calc_joint_parent_mat_rest(float mat[4][4], float par[4] if (par) { float temp[4][4]; get_node_mat(temp, node, NULL, NULL); - mul_m4_m4m4(m, temp, par); + mult_m4_m4m4(m, par, temp); } else { get_node_mat(m, node, NULL, NULL); @@ -1656,7 +1656,7 @@ Object *AnimationImporter::get_joint_object(COLLADAFW::Node *root, COLLADAFW::No float temp[4][4], ipar[4][4]; invert_m4_m4(ipar, par_job->obmat); copy_m4_m4(temp, mat); - mul_m4_m4m4(mat, temp, ipar); + mult_m4_m4m4(mat, ipar, temp); } TransformBase::decompose(mat, job->loc, NULL, job->quat, job->size); @@ -1689,7 +1689,7 @@ bool AnimationImporter::evaluate_joint_world_transform_at_frame(float mat[4][4], if (par) { float temp[4][4]; evaluate_transform_at_frame(temp, node, node == end ? fra : 0.0f); - mul_m4_m4m4(m, temp, par); + mult_m4_m4m4(m, par, temp); } else { evaluate_transform_at_frame(m, node, node == end ? fra : 0.0f); diff --git a/source/blender/collada/ArmatureExporter.cpp b/source/blender/collada/ArmatureExporter.cpp index df786c38c71..fcfc197ce80 100644 --- a/source/blender/collada/ArmatureExporter.cpp +++ b/source/blender/collada/ArmatureExporter.cpp @@ -218,11 +218,11 @@ void ArmatureExporter::add_bone_transform(Object *ob_arm, Bone *bone, COLLADASW: float invpar[4][4]; invert_m4_m4(invpar, parchan->pose_mat); - mul_m4_m4m4(mat, pchan->pose_mat, invpar); + mult_m4_m4m4(mat, invpar, pchan->pose_mat); } else { // get world-space from armature-space - mul_m4_m4m4(mat, pchan->pose_mat, ob_arm->obmat); + mult_m4_m4m4(mat, ob_arm->obmat, pchan->pose_mat); } TransformWriter::add_node_transform(node, mat,NULL ); @@ -374,7 +374,7 @@ std::string ArmatureExporter::add_inv_bind_mats_source(Object *ob_arm, ListBase float inv_bind_mat[4][4]; // make world-space matrix, arm_mat is armature-space - mul_m4_m4m4(world, pchan->bone->arm_mat, ob_arm->obmat); + mult_m4_m4m4(world, ob_arm->obmat, pchan->bone->arm_mat); invert_m4_m4(mat, world); converter.mat4_to_dae(inv_bind_mat, mat); diff --git a/source/blender/collada/ArmatureImporter.cpp b/source/blender/collada/ArmatureImporter.cpp index bababf880a6..4bc0c18551a 100644 --- a/source/blender/collada/ArmatureImporter.cpp +++ b/source/blender/collada/ArmatureImporter.cpp @@ -99,7 +99,7 @@ void ArmatureImporter::create_unskinned_bone( COLLADAFW::Node *node, EditBone *p // get world-space if (parent){ - mul_m4_m4m4(mat, obmat, parent_mat); + mult_m4_m4m4(mat, parent_mat, obmat); } else { @@ -185,7 +185,7 @@ void ArmatureImporter::create_bone(SkinInfo& skin, COLLADAFW::Node *node, EditBo // get world-space if (parent) - mul_m4_m4m4(mat, obmat, parent_mat); + mult_m4_m4m4(mat, parent_mat, obmat); else copy_m4_m4(mat, obmat); @@ -584,17 +584,17 @@ void ArmatureImporter::set_pose ( Object * ob_arm , COLLADAFW::Node * root_node // get world-space if (parentname){ - mul_m4_m4m4(mat, obmat, parent_mat); + mult_m4_m4m4(mat, parent_mat, obmat); bPoseChannel *parchan = get_pose_channel(ob_arm->pose, parentname); - mul_m4_m4m4(pchan->pose_mat, mat , parchan->pose_mat); + mult_m4_m4m4(pchan->pose_mat, parchan->pose_mat, mat ); } else { copy_m4_m4(mat, obmat); float invObmat[4][4]; invert_m4_m4(invObmat, ob_arm->obmat); - mul_m4_m4m4(pchan->pose_mat, mat, invObmat); + mult_m4_m4m4(pchan->pose_mat, invObmat, mat); } mat4_to_axis_angle(ax,&angle,mat); diff --git a/source/blender/collada/DocumentImporter.cpp b/source/blender/collada/DocumentImporter.cpp index 267aa925c74..05b2b3b738d 100644 --- a/source/blender/collada/DocumentImporter.cpp +++ b/source/blender/collada/DocumentImporter.cpp @@ -335,7 +335,7 @@ Object* DocumentImporter::create_instance_node(Object *source_ob, COLLADAFW::Nod } } // calc new matrix and apply - mul_m4_m4m4(obn->obmat, mat, obn->obmat); + mult_m4_m4m4(obn->obmat, obn->obmat, mat); object_apply_mat4(obn, obn->obmat, 0, 0); } } diff --git a/source/blender/collada/TransformReader.cpp b/source/blender/collada/TransformReader.cpp index 26049398c26..a73d5243624 100644 --- a/source/blender/collada/TransformReader.cpp +++ b/source/blender/collada/TransformReader.cpp @@ -63,7 +63,7 @@ void TransformReader::get_node_mat(float mat[][4], COLLADAFW::Node *node, std::m } copy_m4_m4(copy, mat); - mul_m4_m4m4(mat, cur, copy); + mult_m4_m4m4(mat, copy, cur); if (animation_map) { // AnimationList that drives this Transformation diff --git a/source/blender/collada/TransformWriter.cpp b/source/blender/collada/TransformWriter.cpp index 2b4864ec32b..379a0619040 100644 --- a/source/blender/collada/TransformWriter.cpp +++ b/source/blender/collada/TransformWriter.cpp @@ -40,7 +40,7 @@ void TransformWriter::add_node_transform(COLLADASW::Node& node, float mat[][4], if (parent_mat) { float invpar[4][4]; invert_m4_m4(invpar, parent_mat); - mul_m4_m4m4(local, mat, invpar); + mult_m4_m4m4(local, invpar, mat); } else { copy_m4_m4(local, mat); @@ -77,7 +77,7 @@ void TransformWriter::add_node_transform_ob(COLLADASW::Node& node, Object *ob) // calculate local mat invert_m4_m4(imat, ob->parent->obmat); - mul_m4_m4m4(mat, tmat, imat); + mult_m4_m4m4(mat, imat, tmat); // done diff --git a/source/blender/collada/collada_utils.cpp b/source/blender/collada/collada_utils.cpp index 6a82446f035..c3aa73510d1 100644 --- a/source/blender/collada/collada_utils.cpp +++ b/source/blender/collada/collada_utils.cpp @@ -89,7 +89,7 @@ int bc_set_parent(Object *ob, Object *par, bContext *C, bool is_parent_space) where_is_object(sce, par); // move child obmat into world space - mul_m4_m4m4(mat, ob->obmat, par->obmat); + mult_m4_m4m4(mat, par->obmat, ob->obmat); copy_m4_m4(ob->obmat, mat); } diff --git a/source/blender/editors/armature/editarmature.c b/source/blender/editors/armature/editarmature.c index 6dbb08e115f..48f3f78b849 100644 --- a/source/blender/editors/armature/editarmature.c +++ b/source/blender/editors/armature/editarmature.c @@ -936,7 +936,7 @@ int join_armature_exec(bContext *C, wmOperator *UNUSED(op)) /* Find the difference matrix */ invert_m4_m4(oimat, ob->obmat); - mul_m4_m4m4(mat, base->object->obmat, oimat); + mult_m4_m4m4(mat, oimat, base->object->obmat); /* Copy bones and posechannels from the object to the edit armature */ for (pchan=opose->chanbase.first; pchan; pchan=pchann) { @@ -972,7 +972,7 @@ int join_armature_exec(bContext *C, wmOperator *UNUSED(op)) /* Find the roll */ invert_m4_m4(imat, premat); - mul_m4_m4m4(difmat, postmat, imat); + mult_m4_m4m4(difmat, imat, postmat); curbone->roll -= (float)atan2(difmat[2][0], difmat[2][2]); } diff --git a/source/blender/editors/curve/editcurve.c b/source/blender/editors/curve/editcurve.c index a679fa3e2bf..762564c1cc9 100644 --- a/source/blender/editors/curve/editcurve.c +++ b/source/blender/editors/curve/editcurve.c @@ -6056,7 +6056,7 @@ int join_curve_exec(bContext *C, wmOperator *UNUSED(op)) if(cu->nurb.first) { /* watch it: switch order here really goes wrong */ - mul_m4_m4m4(cmat, base->object->obmat, imat); + mult_m4_m4m4(cmat, imat, base->object->obmat); nu= cu->nurb.first; while(nu) { diff --git a/source/blender/editors/mesh/editmesh_lib.c b/source/blender/editors/mesh/editmesh_lib.c index 845cc29c91b..5e8105d507a 100644 --- a/source/blender/editors/mesh/editmesh_lib.c +++ b/source/blender/editors/mesh/editmesh_lib.c @@ -1316,7 +1316,7 @@ static short extrudeflag_edge(Object *obedit, EditMesh *em, short UNUSED(flag), if (mmd->mirror_ob) { float imtx[4][4]; invert_m4_m4(imtx, mmd->mirror_ob->obmat); - mul_m4_m4m4(mtx, obedit->obmat, imtx); + mult_m4_m4m4(mtx, imtx, obedit->obmat); } for (eed= em->edges.first; eed; eed= eed->next) { @@ -1603,7 +1603,7 @@ short extrudeflag_vert(Object *obedit, EditMesh *em, short flag, float *nor, int if (mmd->mirror_ob) { float imtx[4][4]; invert_m4_m4(imtx, mmd->mirror_ob->obmat); - mul_m4_m4m4(mtx, obedit->obmat, imtx); + mult_m4_m4m4(mtx, imtx, obedit->obmat); } for (eed= em->edges.first; eed; eed= eed->next) { diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index 2e5fc515330..37d3d5b587c 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -7246,7 +7246,7 @@ static int sort_faces_exec(bContext *C, wmOperator *op) float cur[3]; if (event == 1) - mul_m4_m4m4(mat, OBACT->obmat, rv3d->viewmat); /* apply the view matrix to the object matrix */ + mult_m4_m4m4(mat, rv3d->viewmat, OBACT->obmat); /* apply the view matrix to the object matrix */ else if (event == 2) { /* sort from cursor */ if( v3d && v3d->localvd ) { VECCOPY(cur, v3d->cursor); diff --git a/source/blender/editors/mesh/meshtools.c b/source/blender/editors/mesh/meshtools.c index 1022d247d68..dd82f055f14 100644 --- a/source/blender/editors/mesh/meshtools.c +++ b/source/blender/editors/mesh/meshtools.c @@ -327,7 +327,7 @@ int join_mesh_exec(bContext *C, wmOperator *op) /* if this is the object we're merging into, no need to do anything */ if(base->object != ob) { /* watch this: switch matmul order really goes wrong */ - mul_m4_m4m4(cmat, base->object->obmat, imat); + mult_m4_m4m4(cmat, imat, base->object->obmat); /* transform vertex coordinates into new space */ for(a=0, mv=mvert; a < me->totvert; a++, mv++) { diff --git a/source/blender/editors/object/object_constraint.c b/source/blender/editors/object/object_constraint.c index 2a45a7df735..796ca01a6a9 100644 --- a/source/blender/editors/object/object_constraint.c +++ b/source/blender/editors/object/object_constraint.c @@ -747,7 +747,7 @@ static int childof_set_inverse_exec (bContext *C, wmOperator *op) * the effect of the constraint */ invert_m4_m4(imat, pchan->pose_mat); - mul_m4_m4m4(tmat, imat, pmat); + mult_m4_m4m4(tmat, pmat, imat); invert_m4_m4(data->invmat, tmat); /* 5. restore constraints */ diff --git a/source/blender/editors/object/object_hook.c b/source/blender/editors/object/object_hook.c index 773974d0cc0..7bb91c1fc4b 100644 --- a/source/blender/editors/object/object_hook.c +++ b/source/blender/editors/object/object_hook.c @@ -646,7 +646,7 @@ static int object_hook_reset_exec(bContext *C, wmOperator *op) float imat[4][4], mat[4][4]; /* calculate the world-space matrix for the pose-channel target first, then carry on as usual */ - mul_m4_m4m4(mat, pchan->pose_mat, hmd->object->obmat); + mult_m4_m4m4(mat, hmd->object->obmat, pchan->pose_mat); invert_m4_m4(imat, mat); mul_serie_m4(hmd->parentinv, imat, ob->obmat, NULL, NULL, NULL, NULL, NULL, NULL); diff --git a/source/blender/editors/sculpt_paint/paint_image.c b/source/blender/editors/sculpt_paint/paint_image.c index 060cae48fa0..3aefe5f9ea3 100644 --- a/source/blender/editors/sculpt_paint/paint_image.c +++ b/source/blender/editors/sculpt_paint/paint_image.c @@ -3087,8 +3087,8 @@ static void project_paint_begin(ProjPaintState *ps) } /* same as view3d_get_object_project_mat */ - mul_m4_m4m4(vmat, ps->ob->obmat, viewmat); - mul_m4_m4m4(ps->projectMat, vmat, winmat); + mult_m4_m4m4(vmat, viewmat, ps->ob->obmat); + mult_m4_m4m4(ps->projectMat, winmat, vmat); } diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c index 5706633d138..a5da5938f82 100644 --- a/source/blender/editors/sculpt_paint/paint_vertex.c +++ b/source/blender/editors/sculpt_paint/paint_vertex.c @@ -1930,7 +1930,7 @@ static int wpaint_stroke_test_start(bContext *C, wmOperator *op, wmEvent *UNUSED } /* imat for normals */ - mul_m4_m4m4(mat, ob->obmat, wpd->vc.rv3d->viewmat); + mult_m4_m4m4(mat, wpd->vc.rv3d->viewmat, ob->obmat); invert_m4_m4(imat, mat); copy_m3_m4(wpd->wpimat, imat); @@ -1980,7 +1980,7 @@ static void wpaint_stroke_update_step(bContext *C, struct PaintStroke *stroke, P view3d_operator_needs_opengl(C); /* load projection matrix */ - mul_m4_m4m4(mat, ob->obmat, vc->rv3d->persmat); + mult_m4_m4m4(mat, vc->rv3d->persmat, ob->obmat); pressure = RNA_float_get(itemptr, "pressure"); RNA_float_get_array(itemptr, "mouse", mval); @@ -2361,7 +2361,7 @@ static int vpaint_stroke_test_start(bContext *C, struct wmOperator *op, wmEvent copy_vpaint_prev(vp, (unsigned int *)me->mcol, me->totface); /* some old cruft to sort out later */ - mul_m4_m4m4(mat, ob->obmat, vpd->vc.rv3d->viewmat); + mult_m4_m4m4(mat, vpd->vc.rv3d->viewmat, ob->obmat); invert_m4_m4(imat, mat); copy_m3_m4(vpd->vpimat, imat); @@ -2423,7 +2423,7 @@ static void vpaint_stroke_update_step(bContext *C, struct PaintStroke *stroke, P view3d_operator_needs_opengl(C); /* load projection matrix */ - mul_m4_m4m4(mat, ob->obmat, vc->rv3d->persmat); + mult_m4_m4m4(mat, vc->rv3d->persmat, ob->obmat); mval[0]-= vc->ar->winrct.xmin; mval[1]-= vc->ar->winrct.ymin; diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c index b84fea29e62..4cd95dca9f9 100644 --- a/source/blender/editors/sculpt_paint/sculpt.c +++ b/source/blender/editors/sculpt_paint/sculpt.c @@ -2121,7 +2121,7 @@ static void do_clay_tubes_brush(Sculpt *sd, Object *ob, PBVHNode **nodes, int to copy_v3_v3(mat[3], ss->cache->location); mat[3][3] = 1; normalize_m4(mat); scale_m4_fl(scale, ss->cache->radius); - mul_m4_m4m4(tmat, scale, mat); + mult_m4_m4m4(tmat, mat, scale); invert_m4_m4(mat, tmat); #pragma omp parallel for schedule(guided) if (sd->flags & SCULPT_USE_OPENMP) diff --git a/source/blender/editors/space_clip/tracking_ops.c b/source/blender/editors/space_clip/tracking_ops.c index b0e7f1b4def..8a11c881527 100644 --- a/source/blender/editors/space_clip/tracking_ops.c +++ b/source/blender/editors/space_clip/tracking_ops.c @@ -2005,7 +2005,7 @@ static void set_axis(Scene *scene, Object *ob, MovieTrackingTrack *track, char invert_m4(mat); object_to_mat4(ob, obmat); - mul_m4_m4m4(mat, obmat, mat); + mult_m4_m4m4(mat, mat, obmat); object_apply_mat4(ob, mat, 0, 0); } @@ -2073,14 +2073,14 @@ static int set_floor_exec(bContext *C, wmOperator *op) invert_m4(mat); object_to_mat4(parent, obmat); - mul_m4_m4m4(mat, obmat, mat); - mul_m4_m4m4(newmat, mat, rot); + mult_m4_m4m4(mat, mat, obmat); + mult_m4_m4m4(newmat, rot, mat); object_apply_mat4(parent, newmat, 0, 0); /* make camera have positive z-coordinate */ if(parent->loc[2]<0) { invert_m4(rot); - mul_m4_m4m4(newmat, mat, rot); + mult_m4_m4m4(newmat, rot, mat); object_apply_mat4(parent, newmat, 0, 0); } diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c index b3eba8652b0..273336b78f1 100644 --- a/source/blender/editors/space_view3d/drawobject.c +++ b/source/blender/editors/space_view3d/drawobject.c @@ -4020,7 +4020,7 @@ static void draw_new_particle_system(Scene *scene, View3D *v3d, RegionView3D *rv if( (base->flag & OB_FROMDUPLI) && (ob->flag & OB_FROMGROUP) ) { float mat[4][4]; - mul_m4_m4m4(mat, psys->imat, ob->obmat); + mult_m4_m4m4(mat, ob->obmat, psys->imat); glMultMatrixf(mat); } diff --git a/source/blender/editors/space_view3d/space_view3d.c b/source/blender/editors/space_view3d/space_view3d.c index c493e4af944..cac5d856652 100644 --- a/source/blender/editors/space_view3d/space_view3d.c +++ b/source/blender/editors/space_view3d/space_view3d.c @@ -204,8 +204,8 @@ ARegion *ED_view3d_context_region_unlock(bContext *C) void ED_view3d_init_mats_rv3d(struct Object *ob, struct RegionView3D *rv3d) { /* local viewmat and persmat, to calculate projections */ - mul_m4_m4m4(rv3d->viewmatob, ob->obmat, rv3d->viewmat); - mul_m4_m4m4(rv3d->persmatob, ob->obmat, rv3d->persmat); + mult_m4_m4m4(rv3d->viewmatob, rv3d->viewmat, ob->obmat); + mult_m4_m4m4(rv3d->persmatob, rv3d->persmat, ob->obmat); /* initializes object space clipping, speeds up clip tests */ ED_view3d_local_clipping(rv3d, ob->obmat); diff --git a/source/blender/editors/space_view3d/view3d_draw.c b/source/blender/editors/space_view3d/view3d_draw.c index 3f979787a1f..80b7522d1a3 100644 --- a/source/blender/editors/space_view3d/view3d_draw.c +++ b/source/blender/editors/space_view3d/view3d_draw.c @@ -1993,7 +1993,7 @@ void draw_depth_gpencil(Scene *scene, ARegion *ar, View3D *v3d) setwinmatrixview3d(ar, v3d, NULL); /* 0= no pick rect */ setviewmatrixview3d(scene, v3d, rv3d); /* note: calls where_is_object for camera... */ - mul_m4_m4m4(rv3d->persmat, rv3d->viewmat, rv3d->winmat); + mult_m4_m4m4(rv3d->persmat, rv3d->winmat, rv3d->viewmat); invert_m4_m4(rv3d->persinv, rv3d->persmat); invert_m4_m4(rv3d->viewinv, rv3d->viewmat); @@ -2028,7 +2028,7 @@ void draw_depth(Scene *scene, ARegion *ar, View3D *v3d, int (* func)(void *)) setwinmatrixview3d(ar, v3d, NULL); /* 0= no pick rect */ setviewmatrixview3d(scene, v3d, rv3d); /* note: calls where_is_object for camera... */ - mul_m4_m4m4(rv3d->persmat, rv3d->viewmat, rv3d->winmat); + mult_m4_m4m4(rv3d->persmat, rv3d->winmat, rv3d->viewmat); invert_m4_m4(rv3d->persinv, rv3d->persmat); invert_m4_m4(rv3d->viewinv, rv3d->viewmat); @@ -2219,7 +2219,7 @@ static void gpu_update_lamps_shadows(Scene *scene, View3D *v3d) copy_m4_m4(rv3d.winmat, winmat); copy_m4_m4(rv3d.viewmat, viewmat); invert_m4_m4(rv3d.viewinv, rv3d.viewmat); - mul_m4_m4m4(rv3d.persmat, rv3d.viewmat, rv3d.winmat); + mult_m4_m4m4(rv3d.persmat, rv3d.winmat, rv3d.viewmat); invert_m4_m4(rv3d.persinv, rv3d.viewinv); ED_view3d_draw_offscreen(scene, v3d, &ar, winsize, winsize, viewmat, winmat); @@ -2301,7 +2301,7 @@ static void view3d_main_area_setup_view(Scene *scene, View3D *v3d, ARegion *ar, setviewmatrixview3d(scene, v3d, rv3d); /* note: calls where_is_object for camera... */ /* update utilitity matrices */ - mul_m4_m4m4(rv3d->persmat, rv3d->viewmat, rv3d->winmat); + mult_m4_m4m4(rv3d->persmat, rv3d->winmat, rv3d->viewmat); invert_m4_m4(rv3d->persinv, rv3d->persmat); invert_m4_m4(rv3d->viewinv, rv3d->viewmat); @@ -2555,7 +2555,7 @@ ImBuf *ED_view3d_draw_offscreen_imbuf_simple(Scene *scene, Object *camera, int w v3d.lens= params.lens; } - mul_m4_m4m4(rv3d.persmat, rv3d.viewmat, rv3d.winmat); + mult_m4_m4m4(rv3d.persmat, rv3d.winmat, rv3d.viewmat); invert_m4_m4(rv3d.persinv, rv3d.viewinv); return ED_view3d_draw_offscreen_imbuf(scene, &v3d, &ar, width, height, flag, err_out); diff --git a/source/blender/editors/space_view3d/view3d_edit.c b/source/blender/editors/space_view3d/view3d_edit.c index 6d2a745fd67..fa970f7f9d8 100644 --- a/source/blender/editors/space_view3d/view3d_edit.c +++ b/source/blender/editors/space_view3d/view3d_edit.c @@ -116,9 +116,9 @@ int ED_view3d_camera_lock_sync(View3D *v3d, RegionView3D *rv3d) ED_view3d_to_m4(view_mat, rv3d->ofs, rv3d->viewquat, rv3d->dist); invert_m4_m4(v3d->camera->imat, v3d->camera->obmat); - mul_m4_m4m4(diff_mat, v3d->camera->imat, view_mat); + mult_m4_m4m4(diff_mat, view_mat, v3d->camera->imat); - mul_m4_m4m4(parent_mat, root_parent->obmat, diff_mat); + mult_m4_m4m4(parent_mat, diff_mat, root_parent->obmat); object_tfm_protected_backup(root_parent, &obtfm); object_apply_mat4(root_parent, parent_mat, TRUE, FALSE); diff --git a/source/blender/editors/space_view3d/view3d_fly.c b/source/blender/editors/space_view3d/view3d_fly.c index 0cdb7a19995..981d46774dc 100644 --- a/source/blender/editors/space_view3d/view3d_fly.c +++ b/source/blender/editors/space_view3d/view3d_fly.c @@ -663,8 +663,8 @@ static void move_camera(bContext* C, RegionView3D* rv3d, FlyInfo* fly, int orien ED_view3d_to_m4(prev_view_mat, fly->rv3d->ofs, fly->rv3d->viewquat, fly->rv3d->dist); invert_m4_m4(prev_view_imat, prev_view_mat); ED_view3d_to_m4(view_mat, rv3d->ofs, rv3d->viewquat, rv3d->dist); - mul_m4_m4m4(diff_mat, prev_view_imat, view_mat); - mul_m4_m4m4(parent_mat, fly->root_parent->obmat, diff_mat); + mult_m4_m4m4(diff_mat, view_mat, prev_view_imat); + mult_m4_m4m4(parent_mat, diff_mat, fly->root_parent->obmat); object_apply_mat4(fly->root_parent, parent_mat, TRUE, FALSE); // where_is_object(scene, fly->root_parent); diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c index 33f7acf2a37..1be19f14618 100644 --- a/source/blender/editors/space_view3d/view3d_select.c +++ b/source/blender/editors/space_view3d/view3d_select.c @@ -141,7 +141,7 @@ void view3d_get_transformation(ARegion *ar, RegionView3D *rv3d, Object *ob, bglM int i, j; if (ob) { - mul_m4_m4m4(cpy, ob->obmat, rv3d->viewmat); + mult_m4_m4m4(cpy, rv3d->viewmat, ob->obmat); } else { copy_m4_m4(cpy, rv3d->viewmat); } diff --git a/source/blender/editors/space_view3d/view3d_view.c b/source/blender/editors/space_view3d/view3d_view.c index 89f859d0976..4d98afc4c10 100644 --- a/source/blender/editors/space_view3d/view3d_view.c +++ b/source/blender/editors/space_view3d/view3d_view.c @@ -740,8 +740,8 @@ void ED_view3d_ob_project_mat_get(RegionView3D *rv3d, Object *ob, float pmat[4][ { float vmat[4][4]; - mul_m4_m4m4(vmat, ob->obmat, rv3d->viewmat); - mul_m4_m4m4(pmat, vmat, rv3d->winmat); + mult_m4_m4m4(vmat, rv3d->viewmat, ob->obmat); + mult_m4_m4m4(pmat, rv3d->winmat, vmat); } #if 0 @@ -809,7 +809,7 @@ int ED_view3d_boundbox_clip(RegionView3D *rv3d, float obmat[][4], BoundBox *bb) if(bb==NULL) return 1; if(bb->flag & OB_BB_DISABLED) return 1; - mul_m4_m4m4(mat, obmat, rv3d->persmat); + mult_m4_m4m4(mat, rv3d->persmat, obmat); for(a=0; a<8; a++) { copy_v3_v3(vec, bb->vec[a]); @@ -1196,7 +1196,7 @@ short view3d_opengl_select(ViewContext *vc, unsigned int *buffer, unsigned int b } setwinmatrixview3d(ar, v3d, &rect); - mul_m4_m4m4(vc->rv3d->persmat, vc->rv3d->viewmat, vc->rv3d->winmat); + mult_m4_m4m4(vc->rv3d->persmat, vc->rv3d->winmat, vc->rv3d->viewmat); if(v3d->drawtype > OB_WIRE) { v3d->zbuf= TRUE; @@ -1274,7 +1274,7 @@ short view3d_opengl_select(ViewContext *vc, unsigned int *buffer, unsigned int b G.f &= ~G_PICKSEL; setwinmatrixview3d(ar, v3d, NULL); - mul_m4_m4m4(vc->rv3d->persmat, vc->rv3d->viewmat, vc->rv3d->winmat); + mult_m4_m4m4(vc->rv3d->persmat, vc->rv3d->winmat, vc->rv3d->viewmat); if(v3d->drawtype > OB_WIRE) { v3d->zbuf= 0; diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 802e6cd7374..fd74458b953 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -441,14 +441,14 @@ static short apply_targetless_ik(Object *ob) offs_bone[3][0]= offs_bone[3][1]= offs_bone[3][2]= 0.0f; mul_m4_v3(parchan->parent->pose_mat, rmat[3]); - mul_m4_m4m4(tmat, offs_bone, rmat); + mult_m4_m4m4(tmat, rmat, offs_bone); } else if(parchan->bone->flag & BONE_NO_SCALE) { - mul_m4_m4m4(tmat, offs_bone, parchan->parent->pose_mat); + mult_m4_m4m4(tmat, parchan->parent->pose_mat, offs_bone); normalize_m4(tmat); } else - mul_m4_m4m4(tmat, offs_bone, parchan->parent->pose_mat); + mult_m4_m4m4(tmat, parchan->parent->pose_mat, offs_bone); invert_m4_m4(imat, tmat); } @@ -459,7 +459,7 @@ static short apply_targetless_ik(Object *ob) invert_m4_m4(imat, tmat); } /* result matrix */ - mul_m4_m4m4(rmat, parchan->pose_mat, imat); + mult_m4_m4m4(rmat, imat, parchan->pose_mat); /* apply and decompose, doesn't work for constraints or non-uniform scale well */ { diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c index d0857958a4b..e7e1ee43c5d 100644 --- a/source/blender/editors/transform/transform_generics.c +++ b/source/blender/editors/transform/transform_generics.c @@ -171,7 +171,7 @@ static void clipMirrorModifier(TransInfo *t, Object *ob) float obinv[4][4]; invert_m4_m4(obinv, mmd->mirror_ob->obmat); - mul_m4_m4m4(mtx, ob->obmat, obinv); + mult_m4_m4m4(mtx, obinv, ob->obmat); invert_m4_m4(imtx, mtx); } diff --git a/source/blender/editors/transform/transform_manipulator.c b/source/blender/editors/transform/transform_manipulator.c index 63495d54cf1..5578ea754df 100644 --- a/source/blender/editors/transform/transform_manipulator.c +++ b/source/blender/editors/transform/transform_manipulator.c @@ -1564,7 +1564,7 @@ static int manipulator_selectbuf(ScrArea *sa, ARegion *ar, const int mval[2], fl rect.ymax= mval[1]+hotspot; setwinmatrixview3d(ar, v3d, &rect); - mul_m4_m4m4(rv3d->persmat, rv3d->viewmat, rv3d->winmat); + mult_m4_m4m4(rv3d->persmat, rv3d->winmat, rv3d->viewmat); glSelectBuffer( 64, buffer); glRenderMode(GL_SELECT); @@ -1586,7 +1586,7 @@ static int manipulator_selectbuf(ScrArea *sa, ARegion *ar, const int mval[2], fl G.f &= ~G_PICKSEL; setwinmatrixview3d(ar, v3d, NULL); - mul_m4_m4m4(rv3d->persmat, rv3d->viewmat, rv3d->winmat); + mult_m4_m4m4(rv3d->persmat, rv3d->winmat, rv3d->viewmat); if(hits==1) return buffer[3]; else if(hits>1) { diff --git a/source/blender/gpu/intern/gpu_material.c b/source/blender/gpu/intern/gpu_material.c index 4b991a36626..250ea51f8c8 100644 --- a/source/blender/gpu/intern/gpu_material.c +++ b/source/blender/gpu/intern/gpu_material.c @@ -321,9 +321,9 @@ void GPU_material_bind_uniforms(GPUMaterial *material, float obmat[][4], float v } if(material->dynproperty & DYN_LAMP_IMAT) - mul_m4_m4m4(lamp->dynimat, viewinv, lamp->imat); + mult_m4_m4m4(lamp->dynimat, lamp->imat, viewinv); if(material->dynproperty & DYN_LAMP_PERSMAT) - mul_m4_m4m4(lamp->dynpersmat, viewinv, lamp->persmat); + mult_m4_m4m4(lamp->dynpersmat, lamp->persmat, viewinv); } GPU_pass_update_uniforms(material->pass); @@ -1671,7 +1671,7 @@ void GPU_lamp_shadow_buffer_bind(GPULamp *lamp, float viewmat[][4], int *winsize normalize_v3(lamp->viewmat[2]); /* makeshadowbuf */ - mul_m4_m4m4(persmat, lamp->viewmat, lamp->winmat); + mult_m4_m4m4(persmat, lamp->winmat, lamp->viewmat); /* opengl depth buffer is range 0.0..1.0 instead of -1.0..1.0 in blender */ unit_m4(rangemat); @@ -1682,7 +1682,7 @@ void GPU_lamp_shadow_buffer_bind(GPULamp *lamp, float viewmat[][4], int *winsize rangemat[3][1] = 0.5f; rangemat[3][2] = 0.5f; - mul_m4_m4m4(lamp->persmat, persmat, rangemat); + mult_m4_m4m4(lamp->persmat, rangemat, persmat); /* opengl */ glDisable(GL_SCISSOR_TEST); diff --git a/source/blender/ikplugin/intern/iksolver_plugin.c b/source/blender/ikplugin/intern/iksolver_plugin.c index eb3695ea217..34656daaa19 100644 --- a/source/blender/ikplugin/intern/iksolver_plugin.c +++ b/source/blender/ikplugin/intern/iksolver_plugin.c @@ -199,7 +199,7 @@ static void make_dmats(bPoseChannel *pchan) if (pchan->parent) { float iR_parmat[4][4]; invert_m4_m4(iR_parmat, pchan->parent->pose_mat); - mul_m4_m4m4(pchan->chan_mat, pchan->pose_mat, iR_parmat); // delta mat + mult_m4_m4m4(pchan->chan_mat, iR_parmat, pchan->pose_mat); // delta mat } else copy_m4_m4(pchan->chan_mat, pchan->pose_mat); } @@ -216,7 +216,7 @@ static void where_is_ik_bone(bPoseChannel *pchan, float ik_mat[][3]) // nr = t if (pchan->parent) mul_serie_m4(pchan->pose_mat, pchan->parent->pose_mat, pchan->chan_mat, ikmat, NULL, NULL, NULL, NULL, NULL); else - mul_m4_m4m4(pchan->pose_mat, ikmat, pchan->chan_mat); + mult_m4_m4m4(pchan->pose_mat, pchan->chan_mat, ikmat); /* calculate head */ copy_v3_v3(pchan->pose_head, pchan->pose_mat[3]); @@ -356,7 +356,7 @@ static void execute_posetree(struct Scene *scene, Object *ob, PoseTree *tree) unit_m4(rootmat); copy_v3_v3(rootmat[3], pchan->pose_head); - mul_m4_m4m4(imat, rootmat, ob->obmat); + mult_m4_m4m4(imat, ob->obmat, rootmat); invert_m4_m4(goalinv, imat); for (target=tree->targets.first; target; target=target->next) { @@ -371,7 +371,7 @@ static void execute_posetree(struct Scene *scene, Object *ob, PoseTree *tree) get_constraint_target_matrix(scene, target->con, 0, CONSTRAINT_OBTYPE_OBJECT, ob, rootmat, 1.0); /* and set and transform goal */ - mul_m4_m4m4(goal, rootmat, goalinv); + mult_m4_m4m4(goal, goalinv, rootmat); copy_v3_v3(goalpos, goal[3]); copy_m3_m4(goalrot, goal); @@ -385,7 +385,7 @@ static void execute_posetree(struct Scene *scene, Object *ob, PoseTree *tree) break; } else { - mul_m4_m4m4(goal, rootmat, goalinv); + mult_m4_m4m4(goal, goalinv, rootmat); copy_v3_v3(polepos, goal[3]); poleconstrain= 1; diff --git a/source/blender/ikplugin/intern/itasc_plugin.cpp b/source/blender/ikplugin/intern/itasc_plugin.cpp index f4720b7fc41..f605441282b 100644 --- a/source/blender/ikplugin/intern/itasc_plugin.cpp +++ b/source/blender/ikplugin/intern/itasc_plugin.cpp @@ -570,7 +570,7 @@ static bool target_callback(const iTaSC::Timestamp& timestamp, const iTaSC::Fram mul_serie_m4(restmat, target->owner->obmat, chanmat, target->eeRest, NULL, NULL, NULL, NULL, NULL); } else { - mul_m4_m4m4(restmat, target->eeRest, target->owner->obmat); + mult_m4_m4m4(restmat, target->owner->obmat, target->eeRest); } // blend the target blend_m4_m4m4(tarmat, restmat, tarmat, constraint->enforce); @@ -597,7 +597,7 @@ static bool base_callback(const iTaSC::Timestamp& timestamp, const iTaSC::Frame& // save the base as a frame too so that we can compute deformation // after simulation ikscene->baseFrame.setValue(&chanmat[0][0]); - mul_m4_m4m4(rootmat, chanmat, ikscene->blArmature->obmat); + mult_m4_m4m4(rootmat, ikscene->blArmature->obmat, chanmat); } else { copy_m4_m4(rootmat, ikscene->blArmature->obmat); @@ -622,11 +622,11 @@ static bool base_callback(const iTaSC::Timestamp& timestamp, const iTaSC::Frame& // get polar target matrix in world space get_constraint_target_matrix(ikscene->blscene, ikscene->polarConstraint, 1, CONSTRAINT_OBTYPE_OBJECT, ikscene->blArmature, mat, 1.0); // convert to armature space - mul_m4_m4m4(polemat, mat, imat); + mult_m4_m4m4(polemat, imat, mat); // get the target in world space (was computed before as target object are defined before base object) iktarget->target->getPose().getValue(mat[0]); // convert to armature space - mul_m4_m4m4(goalmat, mat, imat); + mult_m4_m4m4(goalmat, imat, mat); // take position of target, polar target, end effector, in armature space KDL::Vector goalpos(goalmat[3]); KDL::Vector polepos(polemat[3]); @@ -1003,7 +1003,7 @@ static void convert_pose(IK_Scene *ikscene) copy_m4_m4(bmat, bone->arm_mat); } invert_m4_m4(rmat, bmat); - mul_m4_m4m4(bmat, pchan->pose_mat, rmat); + mult_m4_m4m4(bmat, rmat, pchan->pose_mat); normalize_m4(bmat); boneRot.setValue(bmat[0]); GetJointRotation(boneRot, ikchan->jointType, rot); @@ -1419,7 +1419,7 @@ static IK_Scene* convert_tree(Scene *blscene, Object *ob, bPoseChannel *pchan) copy_m4_m4(mat, pchan->bone->arm_mat); copy_v3_v3(mat[3], pchan->bone->arm_tail); // get the rest pose relative to the armature base - mul_m4_m4m4(iktarget->eeRest, mat, invBaseFrame); + mult_m4_m4m4(iktarget->eeRest, invBaseFrame, mat); iktarget->eeBlend = (!ikscene->polarConstraint && condata->type==CONSTRAINT_IK_COPYPOSE) ? true : false; // use target_callback to make sure the initPose includes enforce coefficient target_callback(iTaSC::Timestamp(), iTaSC::F_identity, initPose, iktarget); diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index f920cfb5aec..9109c8fc023 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -174,7 +174,7 @@ static void rna_Object_matrix_local_get(PointerRNA *ptr, float values[16]) if(ob->parent) { float invmat[4][4]; /* for inverse of parent's matrix */ invert_m4_m4(invmat, ob->parent->obmat); - mul_m4_m4m4((float(*)[4])values, ob->obmat, invmat); + mult_m4_m4m4((float(*)[4])values, invmat, ob->obmat); } else { copy_m4_m4((float(*)[4])values, ob->obmat); @@ -191,7 +191,7 @@ static void rna_Object_matrix_local_set(PointerRNA *ptr, const float values[16]) if(ob->parent) { float invmat[4][4]; invert_m4_m4(invmat, ob->parentinv); - mul_m4_m4m4(ob->obmat, (float(*)[4])values, invmat); + mult_m4_m4m4(ob->obmat, invmat, (float(*)[4])values); } else { copy_m4_m4(ob->obmat, (float(*)[4])values); diff --git a/source/blender/modifiers/intern/MOD_array.c b/source/blender/modifiers/intern/MOD_array.c index ce052b2c1bd..4602600889c 100644 --- a/source/blender/modifiers/intern/MOD_array.c +++ b/source/blender/modifiers/intern/MOD_array.c @@ -338,7 +338,7 @@ static DerivedMesh *arrayModifier_doArray(ArrayModifierData *amd, unit_m4(final_offset); for(j=0; j < count - 1; j++) { - mul_m4_m4m4(tmp_mat, final_offset, offset); + mult_m4_m4m4(tmp_mat, offset, final_offset); copy_m4_m4(final_offset, tmp_mat); } @@ -679,7 +679,7 @@ static DerivedMesh *arrayModifier_doArray(ArrayModifierData *amd, cap_medge = end_cap->getEdgeArray(end_cap); cap_mface = end_cap->getFaceArray(end_cap); - mul_m4_m4m4(endoffset, final_offset, offset); + mult_m4_m4m4(endoffset, offset, final_offset); vert_map = MEM_callocN(sizeof(*vert_map) * capVerts, "arrayModifier_doArray vert_map"); diff --git a/source/blender/modifiers/intern/MOD_boolean_util.c b/source/blender/modifiers/intern/MOD_boolean_util.c index 843501133c5..afd16b41131 100644 --- a/source/blender/modifiers/intern/MOD_boolean_util.c +++ b/source/blender/modifiers/intern/MOD_boolean_util.c @@ -474,7 +474,7 @@ static DerivedMesh *NewBooleanDerivedMesh_intern( // we need to compute the inverse transform from global to ob (inv_mat), // and the transform from ob to ob_select for use in interpolation (map_mat) invert_m4_m4(inv_mat, ob->obmat); - mul_m4_m4m4(map_mat, ob_select->obmat, inv_mat); + mult_m4_m4m4(map_mat, inv_mat, ob_select->obmat); invert_m4_m4(inv_mat, ob_select->obmat); { diff --git a/source/blender/modifiers/intern/MOD_cast.c b/source/blender/modifiers/intern/MOD_cast.c index e481f691a6e..16d57a2400f 100644 --- a/source/blender/modifiers/intern/MOD_cast.c +++ b/source/blender/modifiers/intern/MOD_cast.c @@ -159,7 +159,7 @@ static void sphere_do( if (ctrl_ob) { if(flag & MOD_CAST_USE_OB_TRANSFORM) { invert_m4_m4(ctrl_ob->imat, ctrl_ob->obmat); - mul_m4_m4m4(mat, ob->obmat, ctrl_ob->imat); + mult_m4_m4m4(mat, ctrl_ob->imat, ob->obmat); invert_m4_m4(imat, mat); } @@ -331,7 +331,7 @@ static void cuboid_do( if (ctrl_ob) { if(flag & MOD_CAST_USE_OB_TRANSFORM) { invert_m4_m4(ctrl_ob->imat, ctrl_ob->obmat); - mul_m4_m4m4(mat, ob->obmat, ctrl_ob->imat); + mult_m4_m4m4(mat, ctrl_ob->imat, ob->obmat); invert_m4_m4(imat, mat); } diff --git a/source/blender/modifiers/intern/MOD_hook.c b/source/blender/modifiers/intern/MOD_hook.c index 9948a1a462d..f5e4ebfd449 100644 --- a/source/blender/modifiers/intern/MOD_hook.c +++ b/source/blender/modifiers/intern/MOD_hook.c @@ -157,7 +157,7 @@ static void deformVerts_do(HookModifierData *hmd, Object *ob, DerivedMesh *dm, /* get world-space matrix of target, corrected for the space the verts are in */ if (hmd->subtarget[0] && pchan) { /* bone target if there's a matching pose-channel */ - mul_m4_m4m4(dmat, pchan->pose_mat, hmd->object->obmat); + mult_m4_m4m4(dmat, hmd->object->obmat, pchan->pose_mat); } else { /* just object target */ diff --git a/source/blender/modifiers/intern/MOD_meshdeform.c b/source/blender/modifiers/intern/MOD_meshdeform.c index bcbb6c630a6..e6e2c0fd621 100644 --- a/source/blender/modifiers/intern/MOD_meshdeform.c +++ b/source/blender/modifiers/intern/MOD_meshdeform.c @@ -223,8 +223,8 @@ static void meshdeformModifier_do( /* compute matrices to go in and out of cage object space */ invert_m4_m4(imat, mmd->object->obmat); - mul_m4_m4m4(cagemat, ob->obmat, imat); - mul_m4_m4m4(cmat, cagemat, mmd->bindmat); + mult_m4_m4m4(cagemat, imat, ob->obmat); + mult_m4_m4m4(cmat, mmd->bindmat, cagemat); invert_m4_m4(iobmat, cmat); copy_m3_m4(icagemat, iobmat); diff --git a/source/blender/modifiers/intern/MOD_mirror.c b/source/blender/modifiers/intern/MOD_mirror.c index 5336cb03efa..c72a76f0101 100644 --- a/source/blender/modifiers/intern/MOD_mirror.c +++ b/source/blender/modifiers/intern/MOD_mirror.c @@ -129,7 +129,7 @@ static DerivedMesh *doMirrorOnAxis(MirrorModifierData *mmd, float obinv[4][4]; invert_m4_m4(obinv, mmd->mirror_ob->obmat); - mul_m4_m4m4(mtx, ob->obmat, obinv); + mult_m4_m4m4(mtx, obinv, ob->obmat); invert_m4_m4(imtx, mtx); } diff --git a/source/blender/modifiers/intern/MOD_screw.c b/source/blender/modifiers/intern/MOD_screw.c index 5dc233c78b1..0867a4b2a7b 100644 --- a/source/blender/modifiers/intern/MOD_screw.c +++ b/source/blender/modifiers/intern/MOD_screw.c @@ -197,7 +197,7 @@ static DerivedMesh *applyModifier(ModifierData *md, Object *ob, /* calc the matrix relative to the axis object */ invert_m4_m4(mtx_tmp_a, ob->obmat); copy_m4_m4(mtx_tx_inv, ltmd->ob_axis->obmat); - mul_m4_m4m4(mtx_tx, mtx_tx_inv, mtx_tmp_a); + mult_m4_m4m4(mtx_tx, mtx_tmp_a, mtx_tx_inv); /* calc the axis vec */ mul_mat3_m4_v3(mtx_tx, axis_vec); /* only rotation component */ diff --git a/source/blender/modifiers/intern/MOD_uvproject.c b/source/blender/modifiers/intern/MOD_uvproject.c index 584aa6dc206..af61c8049b1 100644 --- a/source/blender/modifiers/intern/MOD_uvproject.c +++ b/source/blender/modifiers/intern/MOD_uvproject.c @@ -222,11 +222,11 @@ static DerivedMesh *uvprojectModifier_do(UVProjectModifierData *umd, if(cam->type == CAM_PERSP) { float perspmat[4][4]; perspective_m4( perspmat,xmin, xmax, ymin, ymax, cam->clipsta, cam->clipend); - mul_m4_m4m4(tmpmat, projectors[i].projmat, perspmat); + mult_m4_m4m4(tmpmat, perspmat, projectors[i].projmat); } else { /* if(cam->type == CAM_ORTHO) */ float orthomat[4][4]; orthographic_m4( orthomat,xmin, xmax, ymin, ymax, cam->clipsta, cam->clipend); - mul_m4_m4m4(tmpmat, projectors[i].projmat, orthomat); + mult_m4_m4m4(tmpmat, orthomat, projectors[i].projmat); } } } else { @@ -250,7 +250,7 @@ static DerivedMesh *uvprojectModifier_do(UVProjectModifierData *umd, } } - mul_m4_m4m4(projectors[i].projmat, tmpmat, offsetmat); + mult_m4_m4m4(projectors[i].projmat, offsetmat, tmpmat); /* calculate worldspace projector normal (for best projector test) */ projectors[i].normal[0] = 0; diff --git a/source/blender/modifiers/intern/MOD_warp.c b/source/blender/modifiers/intern/MOD_warp.c index 8422916e450..41702a74cc1 100644 --- a/source/blender/modifiers/intern/MOD_warp.c +++ b/source/blender/modifiers/intern/MOD_warp.c @@ -197,11 +197,11 @@ static void warpModifier_do(WarpModifierData *wmd, Object *ob, invert_m4_m4(obinv, ob->obmat); - mul_m4_m4m4(mat_from, wmd->object_from->obmat, obinv); - mul_m4_m4m4(mat_to, wmd->object_to->obmat, obinv); + mult_m4_m4m4(mat_from, obinv, wmd->object_from->obmat); + mult_m4_m4m4(mat_to, obinv, wmd->object_to->obmat); invert_m4_m4(tmat, mat_from); // swap? - mul_m4_m4m4(mat_final, mat_to, tmat); + mult_m4_m4m4(mat_final, tmat, mat_to); invert_m4_m4(mat_from_inv, mat_from); diff --git a/source/blender/modifiers/intern/MOD_wave.c b/source/blender/modifiers/intern/MOD_wave.c index 80dd0c0a720..398a078bf38 100644 --- a/source/blender/modifiers/intern/MOD_wave.c +++ b/source/blender/modifiers/intern/MOD_wave.c @@ -279,7 +279,7 @@ static void waveModifier_do(WaveModifierData *md, float mat[4][4]; /* get the control object's location in local coordinates */ invert_m4_m4(ob->imat, ob->obmat); - mul_m4_m4m4(mat, wmd->objectcenter->obmat, ob->imat); + mult_m4_m4m4(mat, ob->imat, wmd->objectcenter->obmat); wmd->startx = mat[3][0]; wmd->starty = mat[3][1]; diff --git a/source/blender/render/intern/source/convertblender.c b/source/blender/render/intern/source/convertblender.c index d396522b8d0..78f2fe6171b 100644 --- a/source/blender/render/intern/source/convertblender.c +++ b/source/blender/render/intern/source/convertblender.c @@ -1690,14 +1690,14 @@ static int render_new_particle_system(Render *re, ObjectRen *obr, ParticleSystem } /* 2.5 setup matrices */ - mul_m4_m4m4(mat, ob->obmat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, ob->obmat); invert_m4_m4(ob->imat, mat); /* need to be that way, for imat texture */ copy_m3_m4(nmat, ob->imat); transpose_m3(nmat); if(psys->flag & PSYS_USE_IMAT) { /* psys->imat is the original emitter's inverse matrix, ob->obmat is the duplicated object's matrix */ - mul_m4_m4m4(duplimat, psys->imat, ob->obmat); + mult_m4_m4m4(duplimat, ob->obmat, psys->imat); use_duplimat = 1; } @@ -2134,7 +2134,7 @@ static void make_render_halos(Render *re, ObjectRen *obr, Mesh *UNUSED(me), int float vec[3], hasize, mat[4][4], imat[3][3]; int a, ok, seed= ma->seed1; - mul_m4_m4m4(mat, ob->obmat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, ob->obmat); copy_m3_m4(imat, ob->imat); re->flag |= R_HALO; @@ -2429,7 +2429,7 @@ static void init_render_mball(Render *re, ObjectRen *obr) if (ob!=find_basis_mball(re->scene, ob)) return; - mul_m4_m4m4(mat, ob->obmat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, ob->obmat); invert_m4_m4(ob->imat, mat); copy_m3_m4(imat, ob->imat); @@ -2802,7 +2802,7 @@ static void init_render_surf(Render *re, ObjectRen *obr, int timeoffset) nu= cu->nurb.first; if(nu==0) return; - mul_m4_m4m4(mat, ob->obmat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, ob->obmat); invert_m4_m4(ob->imat, mat); /* material array */ @@ -2871,7 +2871,7 @@ static void init_render_curve(Render *re, ObjectRen *obr, int timeoffset) dl= disp.first; if(dl==NULL) return; - mul_m4_m4m4(mat, ob->obmat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, ob->obmat); invert_m4_m4(ob->imat, mat); /* material array */ @@ -3256,7 +3256,7 @@ static void init_render_mesh(Render *re, ObjectRen *obr, int timeoffset) me= ob->data; - mul_m4_m4m4(mat, ob->obmat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, ob->obmat); invert_m4_m4(ob->imat, mat); copy_m3_m4(imat, ob->imat); negative_scale= is_negative_m4(mat); @@ -3599,7 +3599,7 @@ static void initshadowbuf(Render *re, LampRen *lar, float mat[][4]) /* matrix: combination of inverse view and lampmat */ /* calculate again: the ortho-render has no correct viewinv */ invert_m4_m4(viewinv, re->viewmat); - mul_m4_m4m4(shb->viewmat, viewinv, shb->winmat); + mult_m4_m4m4(shb->viewmat, shb->winmat, viewinv); /* projection */ shb->d= lar->clipsta; @@ -3677,7 +3677,7 @@ static GroupObject *add_render_lamp(Render *re, Object *ob) BLI_addtail(&re->lampren, lar); go->lampren= lar; - mul_m4_m4m4(mat, ob->obmat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, ob->obmat); invert_m4_m4(ob->imat, mat); copy_m3_m4(lar->mat, mat); @@ -4372,7 +4372,7 @@ static void find_dupli_instances(Render *re, ObjectRen *obr) float imat[4][4], obmat[4][4], obimat[4][4], nmat[3][3]; int first = 1; - mul_m4_m4m4(obmat, obr->obmat, re->viewmat); + mult_m4_m4m4(obmat, re->viewmat, obr->obmat); invert_m4_m4(imat, obmat); /* for objects instanced by dupliverts/faces/particles, we go over the @@ -4385,7 +4385,7 @@ static void find_dupli_instances(Render *re, ObjectRen *obr) /* compute difference between object matrix and * object matrix with dupli transform, in viewspace */ copy_m4_m4(obimat, obi->mat); - mul_m4_m4m4(obi->mat, imat, obimat); + mult_m4_m4m4(obi->mat, obimat, imat); copy_m3_m4(nmat, obi->mat); invert_m3_m3(obi->nmat, nmat); @@ -4407,7 +4407,7 @@ static void assign_dupligroup_dupli(Render *re, ObjectInstanceRen *obi, ObjectRe { float imat[4][4], obmat[4][4], obimat[4][4], nmat[3][3]; - mul_m4_m4m4(obmat, obr->obmat, re->viewmat); + mult_m4_m4m4(obmat, re->viewmat, obr->obmat); invert_m4_m4(imat, obmat); obi->obr= obr; @@ -4415,7 +4415,7 @@ static void assign_dupligroup_dupli(Render *re, ObjectInstanceRen *obi, ObjectRe /* compute difference between object matrix and * object matrix with dupli transform, in viewspace */ copy_m4_m4(obimat, obi->mat); - mul_m4_m4m4(obi->mat, imat, obimat); + mult_m4_m4m4(obi->mat, obimat, imat); copy_m3_m4(nmat, obi->mat); invert_m3_m3(obi->nmat, nmat); @@ -4612,7 +4612,7 @@ static void init_render_object(Render *re, Object *ob, Object *par, DupliObject else if(render_object_type(ob->type)) add_render_object(re, ob, par, dob, timeoffset); else { - mul_m4_m4m4(mat, ob->obmat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, ob->obmat); invert_m4_m4(ob->imat, mat); } @@ -4858,7 +4858,7 @@ static void database_init_objects(Render *re, unsigned int renderlay, int nolamp * See bug: [#28744] - campbell */ for(ob= re->main->object.first; ob; ob= ob->id.next) { /* imat objects has to be done here, since displace can have texture using Object map-input */ - mul_m4_m4m4(mat, ob->obmat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, ob->obmat); invert_m4_m4(ob->imat_ren, mat); copy_m4_m4(ob->imat, ob->imat_ren); /* each object should only be rendered once */ @@ -4930,7 +4930,7 @@ static void database_init_objects(Render *re, unsigned int renderlay, int nolamp * this is a duplivert/face/particle, or it is a non-animated object in * a dupligroup that has already been created before */ if(dob->type != OB_DUPLIGROUP || (obr=find_dupligroup_dupli(re, obd, 0))) { - mul_m4_m4m4(mat, dob->mat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, dob->mat); obi= RE_addRenderInstance(re, NULL, obd, ob, dob->index, 0, mat, obd->lay); /* fill in instance variables for texturing */ @@ -4957,7 +4957,7 @@ static void database_init_objects(Render *re, unsigned int renderlay, int nolamp for(psys=obd->particlesystem.first; psys; psys=psys->next) { if(dob->type != OB_DUPLIGROUP || (obr=find_dupligroup_dupli(re, obd, psysindex))) { if(obi == NULL) - mul_m4_m4m4(mat, dob->mat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, dob->mat); obi= RE_addRenderInstance(re, NULL, obd, ob, dob->index, psysindex++, mat, obd->lay); set_dupli_tex_mat(re, obi, dob); @@ -5312,7 +5312,7 @@ static float *calculate_strandsurface_speedvectors(Render *re, ObjectInstanceRen int a; if(obi->flag & R_TRANSFORMED) - mul_m4_m4m4(winmat, obi->mat, re->winmat); + mult_m4_m4m4(winmat, re->winmat, obi->mat); else copy_m4_m4(winmat, re->winmat); @@ -5349,7 +5349,7 @@ static void calculate_speedvectors(Render *re, ObjectInstanceRen *obi, float *ve int a, *face, *index; if(obi->flag & R_TRANSFORMED) - mul_m4_m4m4(winmat, obi->mat, re->winmat); + mult_m4_m4m4(winmat, re->winmat, obi->mat); else copy_m4_m4(winmat, re->winmat); @@ -5443,7 +5443,7 @@ static int load_fluidsimspeedvectors(Render *re, ObjectInstanceRen *obi, float * velarray = fss->meshVelocities; if(obi->flag & R_TRANSFORMED) - mul_m4_m4m4(winmat, obi->mat, re->winmat); + mult_m4_m4m4(winmat, re->winmat, obi->mat); else copy_m4_m4(winmat, re->winmat); @@ -5533,7 +5533,7 @@ static void copy_dbase_object_vectors(Render *re, ListBase *lb) vec= obilb->vectors= MEM_mallocN(2*sizeof(float)*totvector, "vector array"); if(obi->flag & R_TRANSFORMED) - mul_m4_m4m4(winmat, obi->mat, re->winmat); + mult_m4_m4m4(winmat, re->winmat, obi->mat); else copy_m4_m4(winmat, re->winmat); @@ -5861,7 +5861,7 @@ void RE_make_sticky(Scene *scene, View3D *v3d) CD_CALLOC, NULL, me->totvert); where_is_object(scene, ob); - mul_m4_m4m4(mat, ob->obmat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, ob->obmat); ms= me->msticky; for(a=0; atotvert; a++, ms++, mvert++) { diff --git a/source/blender/render/intern/source/envmap.c b/source/blender/render/intern/source/envmap.c index 3512ffa865b..a45bb63ff06 100644 --- a/source/blender/render/intern/source/envmap.c +++ b/source/blender/render/intern/source/envmap.c @@ -263,7 +263,7 @@ static void env_rotate_scene(Render *re, float mat[][4], int mode) /* append or set matrix depending on dupli */ if(obi->flag & R_DUPLI_TRANSFORMED) { copy_m4_m4(tmpmat, obi->mat); - mul_m4_m4m4(obi->mat, tmpmat, tmat); + mult_m4_m4m4(obi->mat, tmat, tmpmat); } else if(mode==1) copy_m4_m4(obi->mat, tmat); @@ -312,10 +312,10 @@ static void env_rotate_scene(Render *re, float mat[][4], int mode) if(lar->shb) { if(mode==1) { invert_m4_m4(pmat, mat); - mul_m4_m4m4(smat, pmat, lar->shb->viewmat); - mul_m4_m4m4(lar->shb->persmat, smat, lar->shb->winmat); + mult_m4_m4m4(smat, lar->shb->viewmat, pmat); + mult_m4_m4m4(lar->shb->persmat, lar->shb->winmat, smat); } - else mul_m4_m4m4(lar->shb->persmat, lar->shb->viewmat, lar->shb->winmat); + else mult_m4_m4m4(lar->shb->persmat, lar->shb->winmat, lar->shb->viewmat); } } @@ -393,7 +393,7 @@ static void env_set_imats(Render *re) base= re->scene->base.first; while(base) { - mul_m4_m4m4(mat, base->object->obmat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, base->object->obmat); invert_m4_m4(base->object->imat, mat); base= base->next; @@ -422,7 +422,7 @@ static void render_envmap(Render *re, EnvMap *env) normalize_m4(orthmat); /* need imat later for texture imat */ - mul_m4_m4m4(mat, orthmat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, orthmat); invert_m4_m4(tmat, mat); copy_m3_m4(env->obimat, tmat); @@ -441,7 +441,7 @@ static void render_envmap(Render *re, EnvMap *env) copy_m4_m4(envre->viewinv, tmat); /* we have to correct for the already rotated vertexcoords */ - mul_m4_m4m4(tmat, oldviewinv, envre->viewmat); + mult_m4_m4m4(tmat, envre->viewmat, oldviewinv); invert_m4_m4(env->imat, tmat); env_rotate_scene(envre, tmat, 1); @@ -528,7 +528,7 @@ void make_envmaps(Render *re) normalize_m4(orthmat); /* need imat later for texture imat */ - mul_m4_m4m4(mat, orthmat, re->viewmat); + mult_m4_m4m4(mat, re->viewmat, orthmat); invert_m4_m4(tmat, mat); copy_m3_m4(env->obimat, tmat); } diff --git a/source/blender/render/intern/source/pointdensity.c b/source/blender/render/intern/source/pointdensity.c index 5b81ea85914..ae3748755ff 100644 --- a/source/blender/render/intern/source/pointdensity.c +++ b/source/blender/render/intern/source/pointdensity.c @@ -116,7 +116,7 @@ static void pointdensity_cache_psys(Render *re, PointDensity *pd, Object *ob, Pa /* init everything */ if (!psys || !ob || !pd) return; - mul_m4_m4m4(obview, re->viewinv, ob->obmat); + mult_m4_m4m4(obview, ob->obmat, re->viewinv); /* Just to create a valid rendering context for particles */ psys_render_set(ob, psys, re->viewmat, re->winmat, re->winx, re->winy, 0); diff --git a/source/blender/render/intern/source/render_texture.c b/source/blender/render/intern/source/render_texture.c index 202c7dcfada..883684c3483 100644 --- a/source/blender/render/intern/source/render_texture.c +++ b/source/blender/render/intern/source/render_texture.c @@ -2087,7 +2087,7 @@ static int ntap_bump_compute(NTapBump *ntap_bump, ShadeInput *shi, MTex *mtex, T if( mtex->texflag & MTEX_BUMP_OBJECTSPACE ) { // TODO: these calculations happen for every pixel! // -> move to shi->obi - mul_m4_m4m4(tmp, shi->obr->ob->obmat, R.viewmat); + mult_m4_m4m4(tmp, R.viewmat, shi->obr->ob->obmat); copy_m3_m4(obj2view, tmp); // use only upper left 3x3 matrix invert_m3_m3(view2obj, obj2view); diff --git a/source/blender/render/intern/source/shadbuf.c b/source/blender/render/intern/source/shadbuf.c index 8cb7009f756..c14a768d1ce 100644 --- a/source/blender/render/intern/source/shadbuf.c +++ b/source/blender/render/intern/source/shadbuf.c @@ -640,7 +640,7 @@ static void shadowbuf_autoclip(Render *re, LampRen *lar) obr= obi->obr; if(obi->flag & R_TRANSFORMED) - mul_m4_m4m4(obviewmat, obi->mat, viewmat); + mult_m4_m4m4(obviewmat, viewmat, obi->mat); else copy_m4_m4(obviewmat, viewmat); @@ -777,7 +777,7 @@ void makeshadowbuf(Render *re, LampRen *lar) wsize= shb->pixsize*(shb->size/2.0f); perspective_m4( shb->winmat,-wsize, wsize, -wsize, wsize, shb->d, shb->clipend); - mul_m4_m4m4(shb->persmat, shb->viewmat, shb->winmat); + mult_m4_m4m4(shb->persmat, shb->winmat, shb->viewmat); if(ELEM3(lar->buftype, LA_SHADBUF_REGULAR, LA_SHADBUF_HALFWAY, LA_SHADBUF_DEEP)) { shb->totbuf= lar->buffers; @@ -1987,7 +1987,7 @@ static void isb_bsp_fillfaces(Render *re, LampRen *lar, ISBBranch *root) obr= obi->obr; if(obi->flag & R_TRANSFORMED) - mul_m4_m4m4(winmat, obi->mat, shb->persmat); + mult_m4_m4m4(winmat, shb->persmat, obi->mat); else copy_m4_m4(winmat, shb->persmat); diff --git a/source/blender/render/intern/source/shadeinput.c b/source/blender/render/intern/source/shadeinput.c index dd026740c33..580a09d5050 100644 --- a/source/blender/render/intern/source/shadeinput.c +++ b/source/blender/render/intern/source/shadeinput.c @@ -1268,7 +1268,7 @@ void shade_input_set_shade_texco(ShadeInput *shi) zbuf_make_winmat(&R, winmat); if(shi->obi->flag & R_TRANSFORMED) - mul_m4_m4m4(obwinmat, obi->mat, winmat); + mult_m4_m4m4(obwinmat, winmat, obi->mat); else copy_m4_m4(obwinmat, winmat); diff --git a/source/blender/render/intern/source/strand.c b/source/blender/render/intern/source/strand.c index 633c7ca1847..4fc3bb7c5da 100644 --- a/source/blender/render/intern/source/strand.c +++ b/source/blender/render/intern/source/strand.c @@ -848,7 +848,7 @@ int zbuffer_strands_abuf(Render *re, RenderPart *pa, APixstrand *apixbuf, ListBa /* compute matrix and try clipping whole object */ if(obi->flag & R_TRANSFORMED) - mul_m4_m4m4(obwinmat, obi->mat, winmat); + mult_m4_m4m4(obwinmat, winmat, obi->mat); else copy_m4_m4(obwinmat, winmat); diff --git a/source/blender/render/intern/source/volumetric.c b/source/blender/render/intern/source/volumetric.c index 4b1894236fc..a46ef3888d8 100644 --- a/source/blender/render/intern/source/volumetric.c +++ b/source/blender/render/intern/source/volumetric.c @@ -245,7 +245,7 @@ static float metadensity(Object* ob, const float co[3]) /* transform co to meta-element */ float tco[3] = {co[0], co[1], co[2]}; - mul_m4_m4m4(mat, ob->obmat, R.viewmat); + mult_m4_m4m4(mat, R.viewmat, ob->obmat); invert_m4_m4(imat, mat); mul_m4_v3(imat, tco); diff --git a/source/blender/render/intern/source/zbuf.c b/source/blender/render/intern/source/zbuf.c index 8b383992e65..8efe23c38f9 100644 --- a/source/blender/render/intern/source/zbuf.c +++ b/source/blender/render/intern/source/zbuf.c @@ -1819,7 +1819,7 @@ void zbuf_make_winmat(Render *re, float winmat[][4]) panomat[2][0]= -re->panosi; panomat[2][2]= re->panoco; - mul_m4_m4m4(winmat, panomat, re->winmat); + mult_m4_m4m4(winmat, re->winmat, panomat); } else copy_m4_m4(winmat, re->winmat); @@ -2138,7 +2138,7 @@ void zbuffer_solid(RenderPart *pa, RenderLayer *rl, void(*fillfunc)(RenderPart*, continue; if(obi->flag & R_TRANSFORMED) - mul_m4_m4m4(obwinmat, obi->mat, winmat); + mult_m4_m4m4(obwinmat, winmat, obi->mat); else copy_m4_m4(obwinmat, winmat); @@ -2318,7 +2318,7 @@ void zbuffer_shadow(Render *re, float winmat[][4], LampRen *lar, int *rectz, int continue; if(obi->flag & R_TRANSFORMED) - mul_m4_m4m4(obwinmat, obi->mat, winmat); + mult_m4_m4m4(obwinmat, winmat, obi->mat); else copy_m4_m4(obwinmat, winmat); @@ -2557,7 +2557,7 @@ void zbuffer_sss(RenderPart *pa, unsigned int lay, void *handle, void (*func)(vo continue; if(obi->flag & R_TRANSFORMED) - mul_m4_m4m4(obwinmat, obi->mat, winmat); + mult_m4_m4m4(obwinmat, winmat, obi->mat); else copy_m4_m4(obwinmat, winmat); @@ -3300,7 +3300,7 @@ static int zbuffer_abuf(Render *re, RenderPart *pa, APixstr *APixbuf, ListBase * continue; if(obi->flag & R_TRANSFORMED) - mul_m4_m4m4(obwinmat, obi->mat, winmat); + mult_m4_m4m4(obwinmat, winmat, obi->mat); else copy_m4_m4(obwinmat, winmat); diff --git a/source/gameengine/Converter/BL_ArmatureChannel.cpp b/source/gameengine/Converter/BL_ArmatureChannel.cpp index c463068d52c..80a9db4db83 100644 --- a/source/gameengine/Converter/BL_ArmatureChannel.cpp +++ b/source/gameengine/Converter/BL_ArmatureChannel.cpp @@ -215,7 +215,7 @@ PyObject* BL_ArmatureChannel::py_attr_get_joint_rotation(void *self_v, const str normalize_m3(pose_mat); if (pchan->parent) { // bone has a parent, compute the rest pose of the bone taking actual pose of parent - mul_m3_m3m4(rest_mat, pchan->bone->bone_mat, pchan->parent->pose_mat); + mult_m3_m3m4(rest_mat, pchan->parent->pose_mat, pchan->bone->bone_mat); normalize_m3(rest_mat); } else { // otherwise, the bone matrix in armature space is the rest pose From 2a6fdbcccdb285664d921d59f66f96d0345124de Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Fri, 16 Dec 2011 20:35:06 +0000 Subject: [PATCH 58/70] Cycles Gamma Node Node specially useful for Texture correction. This is also a nice example of a simple node made from scratch in case someone wants to create their custom nodes. Review by Brecht. --- intern/cycles/app/cycles_xml.cpp | 3 + intern/cycles/blender/blender_shader.cpp | 4 ++ intern/cycles/kernel/CMakeLists.txt | 1 + intern/cycles/kernel/osl/nodes/CMakeLists.txt | 1 + intern/cycles/kernel/osl/nodes/node_gamma.osl | 33 ++++++++++ intern/cycles/kernel/svm/svm.h | 4 ++ intern/cycles/kernel/svm/svm_gamma.h | 37 +++++++++++ intern/cycles/kernel/svm/svm_types.h | 3 +- intern/cycles/render/nodes.cpp | 27 ++++++++ intern/cycles/render/nodes.h | 5 ++ source/blender/blenkernel/BKE_node.h | 1 + source/blender/blenkernel/intern/node.c | 1 + .../makesrna/intern/rna_nodetree_types.h | 1 + source/blender/nodes/CMakeLists.txt | 1 + source/blender/nodes/NOD_shader.h | 1 + .../nodes/shader/nodes/node_shader_gamma.c | 63 +++++++++++++++++++ 16 files changed, 185 insertions(+), 1 deletion(-) create mode 100644 intern/cycles/kernel/osl/nodes/node_gamma.osl create mode 100644 intern/cycles/kernel/svm/svm_gamma.h create mode 100644 source/blender/nodes/shader/nodes/node_shader_gamma.c diff --git a/intern/cycles/app/cycles_xml.cpp b/intern/cycles/app/cycles_xml.cpp index a0282988179..f5cc01cd062 100644 --- a/intern/cycles/app/cycles_xml.cpp +++ b/intern/cycles/app/cycles_xml.cpp @@ -446,6 +446,9 @@ static void xml_read_shader_graph(const XMLReadState& state, Shader *shader, pug xml_read_enum(&mix->type, MixNode::type_enum, node, "type"); snode = mix; } + else if(string_iequals(node.name(), "gamma")) { + snode = new GammaNode(); + } else if(string_iequals(node.name(), "combine_rgb")) { snode = new CombineRGBNode(); } diff --git a/intern/cycles/blender/blender_shader.cpp b/intern/cycles/blender/blender_shader.cpp index 4191fef4dcd..ecc85a92ae0 100644 --- a/intern/cycles/blender/blender_shader.cpp +++ b/intern/cycles/blender/blender_shader.cpp @@ -160,6 +160,10 @@ static ShaderNode *add_node(BL::BlendData b_data, ShaderGraph *graph, BL::Node * node = new InvertNode(); break; } + case BL::ShaderNode::type_GAMMA: { + node = new GammaNode(); + break; + } case BL::ShaderNode::type_MIX_RGB: { BL::ShaderNodeMixRGB b_mix_node(b_node); MixNode *mix = new MixNode(); diff --git a/intern/cycles/kernel/CMakeLists.txt b/intern/cycles/kernel/CMakeLists.txt index 65338eeea6e..e17544bf7af 100644 --- a/intern/cycles/kernel/CMakeLists.txt +++ b/intern/cycles/kernel/CMakeLists.txt @@ -59,6 +59,7 @@ set(SRC_SVM_HEADERS svm/svm_convert.h svm/svm_displace.h svm/svm_fresnel.h + svm/svm_gamma.h svm/svm_geometry.h svm/svm_gradient.h svm/svm_hsv.h diff --git a/intern/cycles/kernel/osl/nodes/CMakeLists.txt b/intern/cycles/kernel/osl/nodes/CMakeLists.txt index 5c1fd8b75d8..1a207d6c139 100644 --- a/intern/cycles/kernel/osl/nodes/CMakeLists.txt +++ b/intern/cycles/kernel/osl/nodes/CMakeLists.txt @@ -19,6 +19,7 @@ set(SRC_OSL node_emission.osl node_environment_texture.osl node_fresnel.osl + node_gamma.osl node_geometry.osl node_glass_bsdf.osl node_glossy_bsdf.osl diff --git a/intern/cycles/kernel/osl/nodes/node_gamma.osl b/intern/cycles/kernel/osl/nodes/node_gamma.osl new file mode 100644 index 00000000000..4dae07d70bc --- /dev/null +++ b/intern/cycles/kernel/osl/nodes/node_gamma.osl @@ -0,0 +1,33 @@ +/* + * Copyright 2011, Blender Foundation. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#include "stdosl.h" + +shader node_gamma( + color ColorIn = color(0.8, 0.8, 0.8), + float Gamma = 1.0, + output ColorOut = color(0.8, 0.8, 0.8) +{ + int i; + for (i=0;i<3;i++) { + if (ColorIn[i] > 0.0) + ColorIn[i] = powf(ColorIn[i], Gamma); + } + + ColorOut = ColorIn; +} diff --git a/intern/cycles/kernel/svm/svm.h b/intern/cycles/kernel/svm/svm.h index 2beff7ff7e6..5a8d6d62c79 100644 --- a/intern/cycles/kernel/svm/svm.h +++ b/intern/cycles/kernel/svm/svm.h @@ -130,6 +130,7 @@ CCL_NAMESPACE_END #include "svm_geometry.h" #include "svm_hsv.h" #include "svm_image.h" +#include "svm_gamma.h" #include "svm_invert.h" #include "svm_light_path.h" #include "svm_magic.h" @@ -262,6 +263,9 @@ __device_noinline void svm_eval_nodes(KernelGlobals *kg, ShaderData *sd, ShaderT case NODE_INVERT: svm_node_invert(sd, stack, node.y, node.z, node.w); break; + case NODE_GAMMA: + svm_node_gamma(sd, stack, node.y, node.z, node.w); + break; case NODE_MIX: svm_node_mix(kg, sd, stack, node.y, node.z, node.w, &offset); break; diff --git a/intern/cycles/kernel/svm/svm_gamma.h b/intern/cycles/kernel/svm/svm_gamma.h new file mode 100644 index 00000000000..4a8967011c7 --- /dev/null +++ b/intern/cycles/kernel/svm/svm_gamma.h @@ -0,0 +1,37 @@ +/* + * Copyright 2011, Blender Foundation. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +CCL_NAMESPACE_BEGIN + +__device void svm_node_gamma(ShaderData *sd, float *stack, uint in_gamma, uint in_color, uint out_color) +{ + float3 color = stack_load_float3(stack, in_color); + float gamma = stack_load_float(stack, in_gamma); + + if (color.x > 0.0) + color.x = powf(color.x, gamma); + if (color.y > 0.0) + color.y = powf(color.y, gamma); + if (color.z > 0.0) + color.z = powf(color.z, gamma); + + if (stack_valid(out_color)) + stack_store_float3(stack, out_color, color); +} + +CCL_NAMESPACE_END diff --git a/intern/cycles/kernel/svm/svm_types.h b/intern/cycles/kernel/svm/svm_types.h index e5e3175761b..c46df3f08c8 100644 --- a/intern/cycles/kernel/svm/svm_types.h +++ b/intern/cycles/kernel/svm/svm_types.h @@ -85,7 +85,8 @@ typedef enum NodeType { NODE_HSV = 5200, NODE_CAMERA = 5300, NODE_INVERT = 5400, - NODE_NORMAL = 5500 + NODE_NORMAL = 5500, + NODE_GAMMA = 5600 } NodeType; typedef enum NodeAttributeType { diff --git a/intern/cycles/render/nodes.cpp b/intern/cycles/render/nodes.cpp index aec6f1f3e26..5cabb248709 100644 --- a/intern/cycles/render/nodes.cpp +++ b/intern/cycles/render/nodes.cpp @@ -1726,6 +1726,33 @@ void CombineRGBNode::compile(OSLCompiler& compiler) compiler.add(this, "node_combine_rgb"); } +/* Gamma */ +GammaNode::GammaNode() +: ShaderNode("gamma") +{ + add_input("Color", SHADER_SOCKET_COLOR); + add_input("Gamma", SHADER_SOCKET_FLOAT); + add_output("Color", SHADER_SOCKET_COLOR); +} + +void GammaNode::compile(SVMCompiler& compiler) +{ + ShaderInput *color_in = input("Color"); + ShaderInput *gamma_in = input("Gamma"); + ShaderOutput *color_out = output("Color"); + + compiler.stack_assign(color_in); + compiler.stack_assign(gamma_in); + compiler.stack_assign(color_out); + + compiler.add_node(NODE_GAMMA, gamma_in->stack_offset, color_in->stack_offset, color_out->stack_offset); +} + +void GammaNode::compile(OSLCompiler& compiler) +{ + compiler.add(this, "node_gamma"); +} + /* Separate RGB */ SeparateRGBNode::SeparateRGBNode() : ShaderNode("separate_rgb") diff --git a/intern/cycles/render/nodes.h b/intern/cycles/render/nodes.h index 9d947de1af5..28fff22fc34 100644 --- a/intern/cycles/render/nodes.h +++ b/intern/cycles/render/nodes.h @@ -302,6 +302,11 @@ public: SHADER_NODE_CLASS(CombineRGBNode) }; +class GammaNode : public ShaderNode { +public: + SHADER_NODE_CLASS(GammaNode) +}; + class SeparateRGBNode : public ShaderNode { public: SHADER_NODE_CLASS(SeparateRGBNode) diff --git a/source/blender/blenkernel/BKE_node.h b/source/blender/blenkernel/BKE_node.h index 5dbf22b54bf..378e5872791 100644 --- a/source/blender/blenkernel/BKE_node.h +++ b/source/blender/blenkernel/BKE_node.h @@ -521,6 +521,7 @@ struct ShadeResult; #define SH_NODE_LAYER_WEIGHT 160 #define SH_NODE_VOLUME_TRANSPARENT 161 #define SH_NODE_VOLUME_ISOTROPIC 162 +#define SH_NODE_GAMMA 163 /* custom defines options for Material node */ #define SH_NODE_MAT_DIFF 1 diff --git a/source/blender/blenkernel/intern/node.c b/source/blender/blenkernel/intern/node.c index 7be6ef9968d..cc49e8465b9 100644 --- a/source/blender/blenkernel/intern/node.c +++ b/source/blender/blenkernel/intern/node.c @@ -1899,6 +1899,7 @@ static void registerShaderNodes(bNodeTreeType *ttype) register_node_type_sh_output(ttype); register_node_type_sh_material(ttype); register_node_type_sh_camera(ttype); + register_node_type_sh_gamma(ttype); register_node_type_sh_value(ttype); register_node_type_sh_rgb(ttype); register_node_type_sh_mix_rgb(ttype); diff --git a/source/blender/makesrna/intern/rna_nodetree_types.h b/source/blender/makesrna/intern/rna_nodetree_types.h index d8fabad824e..19082ea4689 100644 --- a/source/blender/makesrna/intern/rna_nodetree_types.h +++ b/source/blender/makesrna/intern/rna_nodetree_types.h @@ -40,6 +40,7 @@ DefNode( ShaderNode, SH_NODE_VALTORGB, def_colorramp, "VALTO DefNode( ShaderNode, SH_NODE_RGBTOBW, 0, "RGBTOBW", RGBToBW, "RGB to BW", "" ) DefNode( ShaderNode, SH_NODE_TEXTURE, def_texture, "TEXTURE", Texture, "Texture", "" ) DefNode( ShaderNode, SH_NODE_NORMAL, 0, "NORMAL", Normal, "Normal", "" ) +DefNode( ShaderNode, SH_NODE_GAMMA, 0, "GAMMA", Gamma, "Gamma", "" ) DefNode( ShaderNode, SH_NODE_GEOMETRY, def_sh_geometry, "GEOMETRY", Geometry, "Geometry", "" ) DefNode( ShaderNode, SH_NODE_MAPPING, def_sh_mapping, "MAPPING", Mapping, "Mapping", "" ) DefNode( ShaderNode, SH_NODE_CURVE_VEC, def_vector_curve, "CURVE_VEC", VectorCurve, "Vector Curve", "" ) diff --git a/source/blender/nodes/CMakeLists.txt b/source/blender/nodes/CMakeLists.txt index 1b327edbc9f..a09aa7a52a3 100644 --- a/source/blender/nodes/CMakeLists.txt +++ b/source/blender/nodes/CMakeLists.txt @@ -113,6 +113,7 @@ set(SRC shader/nodes/node_shader_common.c shader/nodes/node_shader_curves.c shader/nodes/node_shader_dynamic.c + shader/nodes/node_shader_gamma.c shader/nodes/node_shader_geom.c shader/nodes/node_shader_hueSatVal.c shader/nodes/node_shader_invert.c diff --git a/source/blender/nodes/NOD_shader.h b/source/blender/nodes/NOD_shader.h index ae255517733..2cabdd33971 100644 --- a/source/blender/nodes/NOD_shader.h +++ b/source/blender/nodes/NOD_shader.h @@ -54,6 +54,7 @@ void register_node_type_sh_valtorgb(struct bNodeTreeType *ttype); void register_node_type_sh_rgbtobw(struct bNodeTreeType *ttype); void register_node_type_sh_texture(struct bNodeTreeType *ttype); void register_node_type_sh_normal(struct bNodeTreeType *ttype); +void register_node_type_sh_gamma(struct bNodeTreeType *ttype); void register_node_type_sh_geom(struct bNodeTreeType *ttype); void register_node_type_sh_mapping(struct bNodeTreeType *ttype); void register_node_type_sh_curve_vec(struct bNodeTreeType *ttype); diff --git a/source/blender/nodes/shader/nodes/node_shader_gamma.c b/source/blender/nodes/shader/nodes/node_shader_gamma.c new file mode 100644 index 00000000000..1d525d71698 --- /dev/null +++ b/source/blender/nodes/shader/nodes/node_shader_gamma.c @@ -0,0 +1,63 @@ +/* + * ***** BEGIN GPL LICENSE BLOCK ***** + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * The Original Code is Copyright (C) 2006 Blender Foundation. + * All rights reserved. + * + * The Original Code is: all of this file. + * + * Contributor(s): none yet. + * + * ***** END GPL LICENSE BLOCK ***** + +*/ + +/** \file blender/nodes/composite/nodes/node_composite_gamma.c + * \ingroup cmpnodes + */ + + +#include "node_shader_util.h" + +/* **************** Gamma Tools ******************** */ + +static bNodeSocketTemplate sh_node_gamma_in[]= { + { SOCK_RGBA, 1, "Color", 1.0f, 1.0f, 1.0f, 1.0f}, + { SOCK_FLOAT, 1, "Gamma", 1.0f, 0.0f, 0.0f, 0.0f, 0.001f, 10.0f, PROP_UNSIGNED}, + { -1, 0, "" } +}; + +static bNodeSocketTemplate sh_node_gamma_out[]= { + { SOCK_RGBA, 0, "Color"}, + { -1, 0, "" } +}; + +void register_node_type_sh_gamma(bNodeTreeType *ttype) +{ + static bNodeType ntype; + + node_type_base(ttype, &ntype, SH_NODE_GAMMA, "Gamma", NODE_CLASS_OP_COLOR, NODE_OPTIONS); + node_type_compatibility(&ntype, NODE_NEW_SHADING); + node_type_socket_templates(&ntype, sh_node_gamma_in, sh_node_gamma_out); + node_type_size(&ntype, 140, 100, 320); + node_type_init(&ntype, NULL); + node_type_storage(&ntype, "", NULL, NULL); + node_type_exec(&ntype, NULL); + node_type_gpu(&ntype, NULL); + + nodeRegisterType(ttype, &ntype); +} From 5fa014ff0229c54105d67d6d140be99cb3911c9b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 16 Dec 2011 22:00:53 +0000 Subject: [PATCH 59/70] Fix #29569: region expander widget drawing poorly antialiased. --- .../blender/editors/interface/interface_draw.c | 12 +----------- .../editors/interface/interface_intern.h | 1 + .../editors/interface/interface_widgets.c | 18 ++++++++++++++++++ 3 files changed, 20 insertions(+), 11 deletions(-) diff --git a/source/blender/editors/interface/interface_draw.c b/source/blender/editors/interface/interface_draw.c index f3a99ecf6b8..7dd07db9b30 100644 --- a/source/blender/editors/interface/interface_draw.c +++ b/source/blender/editors/interface/interface_draw.c @@ -389,17 +389,7 @@ void uiRoundBox(float minx, float miny, float maxx, float maxy, float rad) glEnable( GL_BLEND ); } - /* solid part */ - uiDrawBox(GL_POLYGON, minx, miny, maxx, maxy, rad); - - /* set antialias line */ - glEnable( GL_LINE_SMOOTH ); - glEnable( GL_BLEND ); - - uiDrawBox(GL_LINE_LOOP, minx, miny, maxx, maxy, rad); - - glDisable( GL_BLEND ); - glDisable( GL_LINE_SMOOTH ); + ui_draw_anti_roundbox(GL_POLYGON, minx, miny, maxx, maxy, rad); } diff --git a/source/blender/editors/interface/interface_intern.h b/source/blender/editors/interface/interface_intern.h index d6460f9046e..e4cc605e3f5 100644 --- a/source/blender/editors/interface/interface_intern.h +++ b/source/blender/editors/interface/interface_intern.h @@ -462,6 +462,7 @@ extern int ui_button_is_active(struct ARegion *ar); /* interface_widgets.c */ void ui_draw_anti_tria(float x1, float y1, float x2, float y2, float x3, float y3); +void ui_draw_anti_roundbox(int mode, float minx, float miny, float maxx, float maxy, float rad); void ui_draw_menu_back(struct uiStyle *style, uiBlock *block, rcti *rect); void ui_draw_search_back(struct uiStyle *style, uiBlock *block, rcti *rect); int ui_link_bezier_points(rcti *rect, float coord_array[][2], int resol); diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c index 9a438070e1e..0da4d3895e0 100644 --- a/source/blender/editors/interface/interface_widgets.c +++ b/source/blender/editors/interface/interface_widgets.c @@ -200,7 +200,25 @@ void ui_draw_anti_tria(float x1, float y1, float x2, float y2, float x3, float y glDisableClientState(GL_VERTEX_ARRAY); glDisable(GL_BLEND); +} + +void ui_draw_anti_roundbox(int mode, float minx, float miny, float maxx, float maxy, float rad) +{ + float color[4]; + int j; + glEnable(GL_BLEND); + glGetFloatv(GL_CURRENT_COLOR, color); + color[3] *= 0.125f; + glColor4fv(color); + + for(j=0; j<8; j++) { + glTranslatef(1.0f * jit[j][0], 1.0f * jit[j][1], 0.0f); + uiDrawBox(mode, minx, miny, maxx, maxy, rad); + glTranslatef(-1.0f * jit[j][0], -1.0f * jit[j][1], 0.0f); + } + + glDisable(GL_BLEND); } static void widget_init(uiWidgetBase *wtb) From c82fdb8e4189e6092c9c428d8540c01d677b6c54 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 16 Dec 2011 22:33:22 +0000 Subject: [PATCH 60/70] Fix use of deprecated im_type member in quicktime export. --- source/blender/quicktime/apple/qtkit_export.m | 4 ++-- source/blender/quicktime/apple/quicktime_export.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/quicktime/apple/qtkit_export.m b/source/blender/quicktime/apple/qtkit_export.m index c2e364b6080..75c7d890ddd 100644 --- a/source/blender/quicktime/apple/qtkit_export.m +++ b/source/blender/quicktime/apple/qtkit_export.m @@ -658,7 +658,7 @@ int append_qt(struct RenderData *rd, int frame, int *pixels, int rectx, int rect } else { //Error getting audio packets - BKE_reportf(reports, RPT_ERROR, "Unable to get further audio packets from frame %i, error = 0x%x",qtexport->audioTotalExportedFrames,err); + BKE_reportf(reports, RPT_ERROR, "Unable to get further audio packets from frame %i, error = 0x%x",(int)qtexport->audioTotalExportedFrames,err); break; } @@ -779,7 +779,7 @@ void free_qtcomponentdata(void) { void quicktime_verify_image_type(RenderData *rd) { - if (rd->imtype == R_IMF_IMTYPE_QUICKTIME) { + if (rd->im_format.imtype == R_IMF_IMTYPE_QUICKTIME) { if ((rd->qtcodecsettings.codecType<= 0) || (rd->qtcodecsettings.codecSpatialQuality <0) || (rd->qtcodecsettings.codecSpatialQuality > 100)) { diff --git a/source/blender/quicktime/apple/quicktime_export.c b/source/blender/quicktime/apple/quicktime_export.c index 18c1ed23f8a..937e1b6be46 100644 --- a/source/blender/quicktime/apple/quicktime_export.c +++ b/source/blender/quicktime/apple/quicktime_export.c @@ -689,7 +689,7 @@ static void check_renderbutton_framerate(RenderData *rd, ReportList *reports) void quicktime_verify_image_type(RenderData *rd) { - if (rd->imtype == R_IMF_IMTYPE_QUICKTIME) { + if (rd->im_format.imtype == R_IMF_IMTYPE_QUICKTIME) { if ((rd->qtcodecsettings.codecType== 0) || (rd->qtcodecsettings.codecSpatialQuality <0) || (rd->qtcodecsettings.codecSpatialQuality > 100)) { From 6f24642a2d5ff7754cf15c3cf21a89e2db54555d Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 16 Dec 2011 22:45:29 +0000 Subject: [PATCH 61/70] Fix #27847: sequencer scene strip rendering crash, due to use of freed RenderResult.rect. Sergey did all the work to track this down, I'm just committing a slighty different fix. --- source/blender/blenkernel/intern/image.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/image.c b/source/blender/blenkernel/intern/image.c index fb734ea4f3d..7c2542b33be 100644 --- a/source/blender/blenkernel/intern/image.c +++ b/source/blender/blenkernel/intern/image.c @@ -2277,7 +2277,10 @@ static ImBuf *image_get_render_result(Image *ima, ImageUser *iuser, void **lock_ ibuf->x= rres.rectx; ibuf->y= rres.recty; - if(ibuf->rect_float!=rectf || rect) /* ensure correct redraw */ + /* free rect buffer if float buffer changes, so it can be recreated with + the updated result, and also in case we got byte buffer from sequencer, + so we don't keep reference to freed buffer */ + if(ibuf->rect_float!=rectf || rect || !rectf) imb_freerectImBuf(ibuf); if(rect) From 4d6c34462c1473afb6a0896f97bc5cd2393d0171 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 16 Dec 2011 23:56:18 +0000 Subject: [PATCH 62/70] Fix #29640: make duplicates release keep hierarchy and parent properties not working for multiple objects. ID.newid only worked for one object, now it uses a hash instead. --- source/blender/blenlib/BLI_ghash.h | 10 ++++++ source/blender/blenlib/intern/BLI_ghash.c | 28 ++++++++++++++++ source/blender/editors/object/object_add.c | 37 +++++++++++++++++----- 3 files changed, 67 insertions(+), 8 deletions(-) diff --git a/source/blender/blenlib/BLI_ghash.h b/source/blender/blenlib/BLI_ghash.h index 976519c281a..5b9db7113cb 100644 --- a/source/blender/blenlib/BLI_ghash.h +++ b/source/blender/blenlib/BLI_ghash.h @@ -142,6 +142,16 @@ int BLI_ghashutil_strcmp (const void *a, const void *b); unsigned int BLI_ghashutil_inthash (const void *ptr); int BLI_ghashutil_intcmp (const void *a, const void *b); +typedef struct GHashPair { + const void *first; + int second; +} GHashPair; + +GHashPair* BLI_ghashutil_pairalloc (const void *first, int second); +unsigned int BLI_ghashutil_pairhash (const void *ptr); +int BLI_ghashutil_paircmp (const void *a, const void *b); +void BLI_ghashutil_pairfree (const void *ptr); + #ifdef __cplusplus } #endif diff --git a/source/blender/blenlib/intern/BLI_ghash.c b/source/blender/blenlib/intern/BLI_ghash.c index c1894088300..13f33f01420 100644 --- a/source/blender/blenlib/intern/BLI_ghash.c +++ b/source/blender/blenlib/intern/BLI_ghash.c @@ -285,3 +285,31 @@ unsigned int BLI_ghashutil_strhash(const void *ptr) { int BLI_ghashutil_strcmp(const void *a, const void *b) { return strcmp(a, b); } + +GHashPair *BLI_ghashutil_pairalloc(const void *first, int second) { + GHashPair *pair = MEM_mallocN(sizeof(GHashPair), "GHashPair"); + pair->first = first; + pair->second = second; + return pair; +} + +unsigned int BLI_ghashutil_pairhash(const void *ptr) { + const GHashPair *pair = ptr; + unsigned int hash = BLI_ghashutil_ptrhash(pair->first); + return hash ^ BLI_ghashutil_inthash(SET_INT_IN_POINTER(pair->second)); +} + +int BLI_ghashutil_paircmp(const void *a, const void *b) { + const GHashPair *A = a; + const GHashPair *B = b; + + int cmp = BLI_ghashutil_ptrcmp(A->first, B->first); + if(cmp == 0) + return BLI_ghashutil_intcmp(SET_INT_IN_POINTER(A->second), SET_INT_IN_POINTER(B->second)); + return cmp; +} + +void BLI_ghashutil_pairfree(const void *ptr) { + MEM_freeN((void*)ptr); +} + diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index 8c60a4d5868..1547c5daf54 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -47,9 +47,10 @@ #include "DNA_speaker_types.h" #include "DNA_vfont_types.h" +#include "BLI_ghash.h" +#include "BLI_listbase.h" #include "BLI_math.h" #include "BLI_string.h" -#include "BLI_listbase.h" #include "BLI_utildefines.h" #include "BKE_anim.h" @@ -1050,11 +1051,17 @@ static void make_object_duplilist_real(bContext *C, Scene *scene, Base *base, { ListBase *lb; DupliObject *dob; - + GHash *dupli_gh= NULL, *parent_gh= NULL; + if(!(base->object->transflag & OB_DUPLI)) return; lb= object_duplilist(scene, base->object); + + if(use_hierarchy || use_base_parent) { + dupli_gh= BLI_ghash_new(BLI_ghashutil_ptrhash, BLI_ghashutil_ptrcmp, "make_object_duplilist_real dupli_gh"); + parent_gh= BLI_ghash_new(BLI_ghashutil_pairhash, BLI_ghashutil_paircmp, "make_object_duplilist_real parent_gh"); + } for(dob= lb->first; dob; dob= dob->next) { Base *basen; @@ -1083,6 +1090,11 @@ static void make_object_duplilist_real(bContext *C, Scene *scene, Base *base, copy_m4_m4(ob->obmat, dob->mat); object_apply_mat4(ob, ob->obmat, FALSE, FALSE); + + if(dupli_gh) + BLI_ghash_insert(dupli_gh, dob, ob); + if(parent_gh) + BLI_ghash_insert(parent_gh, BLI_ghashutil_pairalloc(dob->ob, dob->index), ob); } if (use_hierarchy) { @@ -1091,12 +1103,17 @@ static void make_object_duplilist_real(bContext *C, Scene *scene, Base *base, Object *ob_src= dob->ob; Object *ob_src_par= ob_src->parent; - Object *ob_dst= (Object *)ob_src->id.newid; + Object *ob_dst= BLI_ghash_lookup(dupli_gh, dob); + Object *ob_dst_par= NULL; - if (ob_src_par && ob_src_par->id.newid) { - /* the parent was also made real, parent newly real duplis */ - Object *ob_dst_par= (Object *)ob_src_par->id.newid; + /* find parent that was also made real */ + if(ob_src_par) { + GHashPair *pair = BLI_ghashutil_pairalloc(ob_src_par, dob->index); + ob_dst_par = BLI_ghash_lookup(parent_gh, pair); + BLI_ghashutil_pairfree(pair); + } + if (ob_dst_par) { /* allow for all possible parent types */ ob_dst->partype= ob_src->partype; BLI_strncpy(ob_dst->parsubstr, ob_src->parsubstr, sizeof(ob_dst->parsubstr)); @@ -1130,8 +1147,7 @@ static void make_object_duplilist_real(bContext *C, Scene *scene, Base *base, * base object */ for(dob= lb->first; dob; dob= dob->next) { /* original parents */ - Object *ob_src= dob->ob; - Object *ob_dst= (Object *)ob_src->id.newid; + Object *ob_dst= BLI_ghash_lookup(dupli_gh, dob); ob_dst->parent= base->object; ob_dst->partype= PAROBJECT; @@ -1145,6 +1161,11 @@ static void make_object_duplilist_real(bContext *C, Scene *scene, Base *base, } } + if(dupli_gh) + BLI_ghash_free(dupli_gh, NULL, NULL); + if(parent_gh) + BLI_ghash_free(parent_gh, BLI_ghashutil_pairfree, NULL); + copy_object_set_idnew(C, 0); free_object_duplilist(lb); From 9276fb479ed1c5b472c5d831f52913157efe9288 Mon Sep 17 00:00:00 2001 From: Joerg Mueller Date: Sat, 17 Dec 2011 00:22:15 +0000 Subject: [PATCH 63/70] Automatically update sound animation cache when doing a mixdown. --- source/blender/editors/sound/sound_ops.c | 198 ++++++++++++----------- 1 file changed, 100 insertions(+), 98 deletions(-) diff --git a/source/blender/editors/sound/sound_ops.c b/source/blender/editors/sound/sound_ops.c index dd7ea81d520..8eb1f08b5b0 100644 --- a/source/blender/editors/sound/sound_ops.c +++ b/source/blender/editors/sound/sound_ops.c @@ -212,6 +212,104 @@ static void SOUND_OT_open_mono(wmOperatorType *ot) RNA_def_boolean(ot->srna, "mono", TRUE, "Mono", "Mixdown the sound to mono"); } +/* ******************************************************* */ + +static int sound_update_animation_flags_exec(bContext *C, wmOperator *UNUSED(op)) +{ + Sequence* seq; + Scene* scene = CTX_data_scene(C); + struct FCurve* fcu; + char driven; + + SEQ_BEGIN(scene->ed, seq) { + fcu = id_data_find_fcurve(&scene->id, seq, &RNA_Sequence, "volume", 0, &driven); + if(fcu || driven) + seq->flag |= SEQ_AUDIO_VOLUME_ANIMATED; + else + seq->flag &= ~SEQ_AUDIO_VOLUME_ANIMATED; + + fcu = id_data_find_fcurve(&scene->id, seq, &RNA_Sequence, "pitch", 0, &driven); + if(fcu || driven) + seq->flag |= SEQ_AUDIO_PITCH_ANIMATED; + else + seq->flag &= ~SEQ_AUDIO_PITCH_ANIMATED; + + fcu = id_data_find_fcurve(&scene->id, seq, &RNA_Sequence, "pan", 0, &driven); + if(fcu || driven) + seq->flag |= SEQ_AUDIO_PAN_ANIMATED; + else + seq->flag &= ~SEQ_AUDIO_PAN_ANIMATED; + } + SEQ_END + + fcu = id_data_find_fcurve(&scene->id, scene, &RNA_Scene, "audio_volume", 0, &driven); + if(fcu || driven) + scene->audio.flag |= AUDIO_VOLUME_ANIMATED; + else + scene->audio.flag &= ~AUDIO_VOLUME_ANIMATED; + + return OPERATOR_FINISHED; +} + +static void SOUND_OT_update_animation_flags(wmOperatorType *ot) +{ + /* + This operator is needed to set a correct state of the sound animation + System. Unfortunately there's no really correct place to call the exec + function, that's why I made it an operator that's only visible in the + search menu. Apart from that the bake animation operator calls it too. + */ + + /* identifiers */ + ot->name= "Update animation"; + ot->description= "Update animation flags"; + ot->idname= "SOUND_OT_update_animation_flags"; + + /* api callbacks */ + ot->exec= sound_update_animation_flags_exec; + + /* flags */ + ot->flag= OPTYPE_REGISTER; +} + +/* ******************************************************* */ + +static int sound_bake_animation_exec(bContext *C, wmOperator *UNUSED(op)) +{ + Main* bmain = CTX_data_main(C); + Scene* scene = CTX_data_scene(C); + int oldfra = scene->r.cfra; + int cfra; + + sound_update_animation_flags_exec(C, NULL); + + for(cfra = scene->r.sfra > 0 ? scene->r.sfra - 1 : 0; cfra <= scene->r.efra + 1; cfra++) + { + scene->r.cfra = cfra; + scene_update_for_newframe(bmain, scene, scene->lay); + } + + scene->r.cfra = oldfra; + scene_update_for_newframe(bmain, scene, scene->lay); + + return OPERATOR_FINISHED; +} + +static void SOUND_OT_bake_animation(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Update animation cache"; + ot->description= "Updates the audio animation cache so that it's up to date"; + ot->idname= "SOUND_OT_bake_animation"; + + /* api callbacks */ + ot->exec= sound_bake_animation_exec; + + /* flags */ + ot->flag= OPTYPE_REGISTER; +} + + /******************** mixdown operator ********************/ static int sound_mixdown_exec(bContext *C, wmOperator *op) @@ -228,6 +326,8 @@ static int sound_mixdown_exec(bContext *C, wmOperator *op) AUD_Codec codec; const char* result; + sound_bake_animation_exec(C, op); + RNA_string_get(op->ptr, "filepath", path); bitrate = RNA_int_get(op->ptr, "bitrate") * 1000; accuracy = RNA_int_get(op->ptr, "accuracy"); @@ -613,104 +713,6 @@ static void SOUND_OT_unpack(wmOperatorType *ot) RNA_def_string(ot->srna, "id", "", MAX_ID_NAME-2, "Sound Name", "Sound datablock name to unpack"); /* XXX, weark!, will fail with library, name collisions */ } -/* ******************************************************* */ - -static int sound_update_animation_flags_exec(bContext *C, wmOperator *UNUSED(op)) -{ - Sequence* seq; - Scene* scene = CTX_data_scene(C); - struct FCurve* fcu; - char driven; - - SEQ_BEGIN(scene->ed, seq) { - fcu = id_data_find_fcurve(&scene->id, seq, &RNA_Sequence, "volume", 0, &driven); - if(fcu || driven) - seq->flag |= SEQ_AUDIO_VOLUME_ANIMATED; - else - seq->flag &= ~SEQ_AUDIO_VOLUME_ANIMATED; - - fcu = id_data_find_fcurve(&scene->id, seq, &RNA_Sequence, "pitch", 0, &driven); - if(fcu || driven) - seq->flag |= SEQ_AUDIO_PITCH_ANIMATED; - else - seq->flag &= ~SEQ_AUDIO_PITCH_ANIMATED; - - fcu = id_data_find_fcurve(&scene->id, seq, &RNA_Sequence, "pan", 0, &driven); - if(fcu || driven) - seq->flag |= SEQ_AUDIO_PAN_ANIMATED; - else - seq->flag &= ~SEQ_AUDIO_PAN_ANIMATED; - } - SEQ_END - - fcu = id_data_find_fcurve(&scene->id, scene, &RNA_Scene, "audio_volume", 0, &driven); - if(fcu || driven) - scene->audio.flag |= AUDIO_VOLUME_ANIMATED; - else - scene->audio.flag &= ~AUDIO_VOLUME_ANIMATED; - - return OPERATOR_FINISHED; -} - -static void SOUND_OT_update_animation_flags(wmOperatorType *ot) -{ - /* - This operator is needed to set a correct state of the sound animation - System. Unfortunately there's no really correct place to call the exec - function, that's why I made it an operator that's only visible in the - search menu. Apart from that the bake animation operator calls it too. - */ - - /* identifiers */ - ot->name= "Update animation"; - ot->description= "Update animation flags"; - ot->idname= "SOUND_OT_update_animation_flags"; - - /* api callbacks */ - ot->exec= sound_update_animation_flags_exec; - - /* flags */ - ot->flag= OPTYPE_REGISTER; -} - -/* ******************************************************* */ - -static int sound_bake_animation_exec(bContext *C, wmOperator *UNUSED(op)) -{ - Main* bmain = CTX_data_main(C); - Scene* scene = CTX_data_scene(C); - int oldfra = scene->r.cfra; - int cfra; - - sound_update_animation_flags_exec(C, NULL); - - for(cfra = scene->r.sfra > 0 ? scene->r.sfra - 1 : 0; cfra <= scene->r.efra + 1; cfra++) - { - scene->r.cfra = cfra; - scene_update_for_newframe(bmain, scene, scene->lay); - } - - scene->r.cfra = oldfra; - scene_update_for_newframe(bmain, scene, scene->lay); - - return OPERATOR_FINISHED; -} - -static void SOUND_OT_bake_animation(wmOperatorType *ot) -{ - /* identifiers */ - ot->name= "Update animation cache"; - ot->description= "Updates the audio animation cache so that it's up to date"; - ot->idname= "SOUND_OT_bake_animation"; - - /* api callbacks */ - ot->exec= sound_bake_animation_exec; - - /* flags */ - ot->flag= OPTYPE_REGISTER; -} - - /* ******************************************************* */ void ED_operatortypes_sound(void) From ad96dacbc5a7cc61ccf74405927847f243a955b5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 17 Dec 2011 00:52:36 +0000 Subject: [PATCH 64/70] style edit only - move parenthesis onto second line of function definition (in keeping with most of blenders code) also split some long lines in own code. --- source/blender/avi/intern/avi.c | 57 ++++++++++----- source/blender/avi/intern/codecs.c | 15 ++-- source/blender/avi/intern/endian.c | 30 +++++--- source/blender/avi/intern/mjpeg.c | 57 ++++++++++----- source/blender/avi/intern/options.c | 3 +- source/blender/avi/intern/rgb32.c | 6 +- source/blender/blenkernel/intern/boids.c | 3 +- source/blender/blenkernel/intern/customdata.c | 6 +- source/blender/blenkernel/intern/ocean.c | 3 +- .../blender/blenkernel/intern/suggestions.c | 54 ++++++++++----- source/blender/blenkernel/intern/text.c | 12 ++-- source/blender/blenlib/BLI_ghash.h | 2 +- source/blender/blenlib/intern/BLI_dynstr.c | 9 ++- source/blender/blenlib/intern/BLI_ghash.c | 69 ++++++++++++------- source/blender/blenlib/intern/BLI_linklist.c | 24 ++++--- source/blender/blenlib/intern/BLI_memarena.c | 18 +++-- source/blender/blenlib/intern/edgehash.c | 45 ++++++++---- source/blender/blenlib/intern/rand.c | 39 +++++++---- source/blender/blenlib/intern/winstuff.c | 18 +++-- source/blender/editors/mesh/mesh_navmesh.c | 3 +- .../editors/physics/physics_pointcache.c | 3 +- source/blender/editors/transform/transform.c | 30 +++++--- .../editors/transform/transform_constraints.c | 36 ++++++---- .../editors/transform/transform_conversions.c | 12 ++-- .../transform/transform_orientations.c | 33 ++++++--- source/blender/gpu/intern/gpu_codegen.c | 6 +- source/blender/imbuf/intern/anim_movie.c | 51 +++++++++----- source/blender/imbuf/intern/bmp.c | 6 +- source/blender/imbuf/intern/jp2.c | 26 ++++--- source/blender/imbuf/intern/util.c | 15 ++-- .../python/mathutils/mathutils_geometry.c | 3 +- source/gameengine/Ketsji/KX_PythonInit.cpp | 10 ++- 32 files changed, 471 insertions(+), 233 deletions(-) diff --git a/source/blender/avi/intern/avi.c b/source/blender/avi/intern/avi.c index a021695b7c9..c6fdd2e1adc 100644 --- a/source/blender/avi/intern/avi.c +++ b/source/blender/avi/intern/avi.c @@ -63,7 +63,8 @@ char *tcc_to_char (unsigned int tcc); /* implemetation */ -unsigned int GET_FCC (FILE *fp) { +unsigned int GET_FCC (FILE *fp) +{ unsigned char tmp[4]; tmp[0] = getc(fp); @@ -74,7 +75,8 @@ unsigned int GET_FCC (FILE *fp) { return FCC (tmp); } -unsigned int GET_TCC (FILE *fp) { +unsigned int GET_TCC (FILE *fp) +{ char tmp[5]; tmp[0] = getc(fp); @@ -85,7 +87,8 @@ unsigned int GET_TCC (FILE *fp) { return FCC (tmp); } -char *fcc_to_char (unsigned int fcc) { +char *fcc_to_char (unsigned int fcc) +{ DEBUG_FCC[0]= (fcc)&127; DEBUG_FCC[1]= (fcc>>8)&127; DEBUG_FCC[2]= (fcc>>16)&127; @@ -94,7 +97,8 @@ char *fcc_to_char (unsigned int fcc) { return DEBUG_FCC; } -char *tcc_to_char (unsigned int tcc) { +char *tcc_to_char (unsigned int tcc) +{ DEBUG_FCC[0]= (tcc)&127; DEBUG_FCC[1]= (tcc>>8)&127; DEBUG_FCC[2]= 0; @@ -103,7 +107,8 @@ char *tcc_to_char (unsigned int tcc) { return DEBUG_FCC; } -int AVI_get_stream (AviMovie *movie, int avist_type, int stream_num) { +int AVI_get_stream (AviMovie *movie, int avist_type, int stream_num) +{ int cur_stream; if (movie == NULL) @@ -121,7 +126,8 @@ int AVI_get_stream (AviMovie *movie, int avist_type, int stream_num) { return -AVI_ERROR_FOUND; } -static int fcc_get_stream (int fcc) { +static int fcc_get_stream (int fcc) +{ char fccs[4]; fccs[0] = fcc; @@ -132,7 +138,8 @@ static int fcc_get_stream (int fcc) { return 10*(fccs[0]-'0') + (fccs[1]-'0'); } -static int fcc_is_data (int fcc) { +static int fcc_is_data (int fcc) +{ char fccs[4]; fccs[0] = fcc; @@ -148,7 +155,8 @@ static int fcc_is_data (int fcc) { return 1; } -AviError AVI_print_error (AviError in_error) { +AviError AVI_print_error (AviError in_error) +{ int error; if ((int) in_error < 0) @@ -190,12 +198,14 @@ AviError AVI_print_error (AviError in_error) { return in_error; } /* -void AVI_set_debug (int mode) { +void AVI_set_debug (int mode) +{ AVI_DEBUG= mode; } */ /* -int AVI_is_avi (char *name) { +int AVI_is_avi (char *name) +{ FILE *fp; int ret; @@ -216,7 +226,8 @@ int AVI_is_avi (char *name) { } */ -int AVI_is_avi (const char *name) { +int AVI_is_avi (const char *name) +{ int temp, fcca, j; AviMovie movie= {NULL}; AviMainHeader header; @@ -407,7 +418,8 @@ int AVI_is_avi (const char *name) { } -AviError AVI_open_movie (const char *name, AviMovie *movie) { +AviError AVI_open_movie (const char *name, AviMovie *movie) +{ int temp, fcca, size, j; DEBUG_PRINT("opening movie\n"); @@ -619,7 +631,11 @@ AviError AVI_open_movie (const char *name, AviMovie *movie) { movie->entries[temp].Offset = GET_FCC (movie->fp); movie->entries[temp].Size = GET_FCC (movie->fp); - if (AVI_DEBUG) printf ("Index entry %04d: ChunkId:%s Flags:%d Offset:%d Size:%d\n", temp, fcc_to_char(movie->entries[temp].ChunkId), movie->entries[temp].Flags, movie->entries[temp].Offset, movie->entries[temp].Size); + if (AVI_DEBUG) { + printf("Index entry %04d: ChunkId:%s Flags:%d Offset:%d Size:%d\n", + temp, fcc_to_char(movie->entries[temp].ChunkId), movie->entries[temp].Flags, + movie->entries[temp].Offset, movie->entries[temp].Size); + } } /* Some AVI's have offset entries in absolute coordinates @@ -637,7 +653,8 @@ AviError AVI_open_movie (const char *name, AviMovie *movie) { return AVI_ERROR_NONE; } -void *AVI_read_frame (AviMovie *movie, AviFormat format, int frame, int stream) { +void *AVI_read_frame (AviMovie *movie, AviFormat format, int frame, int stream) +{ int cur_frame=-1, temp, i=0, rewind=1; void *buffer; @@ -681,7 +698,8 @@ void *AVI_read_frame (AviMovie *movie, AviFormat format, int frame, int stream) return buffer; } -AviError AVI_close (AviMovie *movie) { +AviError AVI_close (AviMovie *movie) +{ int i; fclose (movie->fp); @@ -703,7 +721,8 @@ AviError AVI_close (AviMovie *movie) { return AVI_ERROR_NONE; } -AviError AVI_open_compress (char *name, AviMovie *movie, int streams, ...) { +AviError AVI_open_compress (char *name, AviMovie *movie, int streams, ...) +{ va_list ap; AviList list; AviChunk chunk; @@ -892,7 +911,8 @@ AviError AVI_open_compress (char *name, AviMovie *movie, int streams, ...) { return AVI_ERROR_NONE; } -AviError AVI_write_frame (AviMovie *movie, int frame_num, ...) { +AviError AVI_write_frame (AviMovie *movie, int frame_num, ...) +{ AviList list; AviChunk chunk; AviIndexEntry *temp; @@ -999,7 +1019,8 @@ AviError AVI_write_frame (AviMovie *movie, int frame_num, ...) { return AVI_ERROR_NONE; } -AviError AVI_close_compress (AviMovie *movie) { +AviError AVI_close_compress (AviMovie *movie) +{ int temp, movi_size, i; fseek (movie->fp, 0L, SEEK_END); diff --git a/source/blender/avi/intern/codecs.c b/source/blender/avi/intern/codecs.c index 78d8d4a32b2..73af7097994 100644 --- a/source/blender/avi/intern/codecs.c +++ b/source/blender/avi/intern/codecs.c @@ -40,7 +40,8 @@ #include "mjpeg.h" #include "rgb32.h" -void *avi_format_convert (AviMovie *movie, int stream, void *buffer, AviFormat from, AviFormat to, int *size) { +void *avi_format_convert (AviMovie *movie, int stream, void *buffer, AviFormat from, AviFormat to, int *size) +{ if (from == to) return buffer; @@ -82,7 +83,8 @@ void *avi_format_convert (AviMovie *movie, int stream, void *buffer, AviFormat f return buffer; } -int avi_get_data_id (AviFormat format, int stream) { +int avi_get_data_id (AviFormat format, int stream) +{ char fcc[5]; if (avi_get_format_type (format) == FCC("vids")) @@ -95,7 +97,8 @@ int avi_get_data_id (AviFormat format, int stream) { return FCC(fcc); } -int avi_get_format_type (AviFormat format) { +int avi_get_format_type (AviFormat format) +{ switch (format) { case AVI_FORMAT_RGB24: case AVI_FORMAT_RGB32: @@ -109,7 +112,8 @@ int avi_get_format_type (AviFormat format) { } } -int avi_get_format_fcc (AviFormat format) { +int avi_get_format_fcc (AviFormat format) +{ switch (format) { case AVI_FORMAT_RGB24: case AVI_FORMAT_RGB32: @@ -125,7 +129,8 @@ int avi_get_format_fcc (AviFormat format) { } } -int avi_get_format_compression (AviFormat format) { +int avi_get_format_compression (AviFormat format) +{ switch (format) { case AVI_FORMAT_RGB24: case AVI_FORMAT_RGB32: diff --git a/source/blender/avi/intern/endian.c b/source/blender/avi/intern/endian.c index 194880605b6..29b3047eca4 100644 --- a/source/blender/avi/intern/endian.c +++ b/source/blender/avi/intern/endian.c @@ -43,7 +43,8 @@ #include "avi_intern.h" #ifdef __BIG_ENDIAN__ -static void invert (int *num) { +static void invert (int *num) +{ int new=0,i,j; for (j=0; j < 4; j++) { @@ -55,7 +56,8 @@ static void invert (int *num) { *num = new; } -static void sinvert (short int *num) { +static void sinvert (short int *num) +{ short int new=0; int i,j; @@ -68,20 +70,23 @@ static void sinvert (short int *num) { *num = new; } -static void Ichunk (AviChunk *chunk) { +static void Ichunk (AviChunk *chunk) +{ invert (&chunk->fcc); invert (&chunk->size); } #endif #ifdef __BIG_ENDIAN__ -static void Ilist (AviList *list){ +static void Ilist (AviList *list) +{ invert (&list->fcc); invert (&list->size); invert (&list->ids); } -static void Imainh (AviMainHeader *mainh) { +static void Imainh (AviMainHeader *mainh) +{ invert (&mainh->fcc); invert (&mainh->size); invert (&mainh->MicroSecPerFrame); @@ -100,7 +105,8 @@ static void Imainh (AviMainHeader *mainh) { invert (&mainh->Reserved[3]); } -static void Istreamh (AviStreamHeader *streamh) { +static void Istreamh (AviStreamHeader *streamh) +{ invert (&streamh->fcc); invert (&streamh->size); invert (&streamh->Type); @@ -122,7 +128,8 @@ static void Istreamh (AviStreamHeader *streamh) { sinvert (&streamh->bottom); } -static void Ibitmaph (AviBitmapInfoHeader *bitmaph) { +static void Ibitmaph (AviBitmapInfoHeader *bitmaph) +{ invert (&bitmaph->fcc); invert (&bitmaph->size); invert (&bitmaph->Size); @@ -138,7 +145,8 @@ static void Ibitmaph (AviBitmapInfoHeader *bitmaph) { invert (&bitmaph->ClrImportant); } -static void Imjpegu (AviMJPEGUnknown *mjpgu) { +static void Imjpegu (AviMJPEGUnknown *mjpgu) +{ invert (&mjpgu->a); invert (&mjpgu->b); invert (&mjpgu->c); @@ -148,7 +156,8 @@ static void Imjpegu (AviMJPEGUnknown *mjpgu) { invert (&mjpgu->g); } -static void Iindexe (AviIndexEntry *indexe) { +static void Iindexe (AviIndexEntry *indexe) +{ invert (&indexe->ChunkId); invert (&indexe->Flags); invert (&indexe->Offset); @@ -156,7 +165,8 @@ static void Iindexe (AviIndexEntry *indexe) { } #endif /* __BIG_ENDIAN__ */ -void awrite (AviMovie *movie, void *datain, int block, int size, FILE *fp, int type) { +void awrite (AviMovie *movie, void *datain, int block, int size, FILE *fp, int type) +{ #ifdef __BIG_ENDIAN__ void *data; diff --git a/source/blender/avi/intern/mjpeg.c b/source/blender/avi/intern/mjpeg.c index e55549bd05e..dab0b213d95 100644 --- a/source/blender/avi/intern/mjpeg.c +++ b/source/blender/avi/intern/mjpeg.c @@ -50,7 +50,8 @@ static void jpegmemsrcmgr_build (j_decompress_ptr dinfo, unsigned char *buffer, static int numbytes; -static void add_huff_table (j_decompress_ptr dinfo, JHUFF_TBL **htblptr, const UINT8 *bits, const UINT8 *val) { +static void add_huff_table (j_decompress_ptr dinfo, JHUFF_TBL **htblptr, const UINT8 *bits, const UINT8 *val) +{ if (*htblptr == NULL) *htblptr = jpeg_alloc_huff_table((j_common_ptr) dinfo); @@ -64,7 +65,8 @@ static void add_huff_table (j_decompress_ptr dinfo, JHUFF_TBL **htblptr, const U /* Set up the standard Huffman tables (cf. JPEG standard section K.3) */ /* IMPORTANT: these are only valid for 8-bit data precision! */ -static void std_huff_tables (j_decompress_ptr dinfo) { +static void std_huff_tables (j_decompress_ptr dinfo) +{ static const UINT8 bits_dc_luminance[17] = { /* 0-base */ 0, 0, 1, 5, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0 }; @@ -142,7 +144,8 @@ static void std_huff_tables (j_decompress_ptr dinfo) { bits_ac_chrominance, val_ac_chrominance); } -static int Decode_JPEG(unsigned char *inBuffer, unsigned char *outBuffer, unsigned int width, unsigned int height, int bufsize) { +static int Decode_JPEG(unsigned char *inBuffer, unsigned char *outBuffer, unsigned int width, unsigned int height, int bufsize) +{ int rowstride; unsigned int y; struct jpeg_decompress_struct dinfo; @@ -194,7 +197,8 @@ static int Decode_JPEG(unsigned char *inBuffer, unsigned char *outBuffer, unsign return 1; } -static void Compress_JPEG(int quality, unsigned char *outbuffer, unsigned char *inBuffer, int width, int height, int bufsize) { +static void Compress_JPEG(int quality, unsigned char *outbuffer, unsigned char *inBuffer, int width, int height, int bufsize) +{ int i, rowstride; unsigned int y; struct jpeg_compress_struct cinfo; @@ -255,7 +259,8 @@ static void Compress_JPEG(int quality, unsigned char *outbuffer, unsigned char * jpeg_destroy_compress(&cinfo); } -static void interlace(unsigned char *to, unsigned char *from, int width, int height) { +static void interlace(unsigned char *to, unsigned char *from, int width, int height) +{ int i, rowstride= width*3; for (i=0; idest->free_in_buffer; MEM_freeN(cinfo->dest); } -static void jpegmemdestmgr_build(j_compress_ptr cinfo, unsigned char *buffer, int bufsize) { +static void jpegmemdestmgr_build(j_compress_ptr cinfo, unsigned char *buffer, int bufsize) +{ cinfo->dest= MEM_mallocN(sizeof(*(cinfo->dest)), "avi.jpegmemdestmgr_build"); cinfo->dest->init_destination= jpegmemdestmgr_init_destination; @@ -410,11 +424,13 @@ static void jpegmemdestmgr_build(j_compress_ptr cinfo, unsigned char *buffer, in /* Decompression from memory */ -static void jpegmemsrcmgr_init_source(j_decompress_ptr dinfo) { +static void jpegmemsrcmgr_init_source(j_decompress_ptr dinfo) +{ (void)dinfo; } -static boolean jpegmemsrcmgr_fill_input_buffer(j_decompress_ptr dinfo) { +static boolean jpegmemsrcmgr_fill_input_buffer(j_decompress_ptr dinfo) +{ unsigned char *buf= (unsigned char*) dinfo->src->next_input_byte-2; /* if we get called, must have run out of data */ @@ -429,7 +445,8 @@ static boolean jpegmemsrcmgr_fill_input_buffer(j_decompress_ptr dinfo) { return TRUE; } -static void jpegmemsrcmgr_skip_input_data(j_decompress_ptr dinfo, long skipcnt) { +static void jpegmemsrcmgr_skip_input_data(j_decompress_ptr dinfo, long skipcnt) +{ if (dinfo->src->bytes_in_buffersrc->bytes_in_buffer; @@ -437,13 +454,15 @@ static void jpegmemsrcmgr_skip_input_data(j_decompress_ptr dinfo, long skipcnt) dinfo->src->bytes_in_buffer-= skipcnt; } -static void jpegmemsrcmgr_term_source(j_decompress_ptr dinfo) { +static void jpegmemsrcmgr_term_source(j_decompress_ptr dinfo) +{ numbytes-= dinfo->src->bytes_in_buffer; MEM_freeN(dinfo->src); } -static void jpegmemsrcmgr_build(j_decompress_ptr dinfo, unsigned char *buffer, int bufsize) { +static void jpegmemsrcmgr_build(j_decompress_ptr dinfo, unsigned char *buffer, int bufsize) +{ dinfo->src= MEM_mallocN(sizeof(*(dinfo->src)), "avi.jpegmemsrcmgr_build"); dinfo->src->init_source= jpegmemsrcmgr_init_source; diff --git a/source/blender/avi/intern/options.c b/source/blender/avi/intern/options.c index bda153d0cd3..483b708bee6 100644 --- a/source/blender/avi/intern/options.c +++ b/source/blender/avi/intern/options.c @@ -43,7 +43,8 @@ /* avi_set_compress_options gets its own file... now don't WE feel important? */ -AviError AVI_set_compress_option (AviMovie *movie, int option_type, int stream, AviOption option, void *opt_data) { +AviError AVI_set_compress_option (AviMovie *movie, int option_type, int stream, AviOption option, void *opt_data) +{ int i; int useconds; diff --git a/source/blender/avi/intern/rgb32.c b/source/blender/avi/intern/rgb32.c index 4d088377c9e..e3be082cca6 100644 --- a/source/blender/avi/intern/rgb32.c +++ b/source/blender/avi/intern/rgb32.c @@ -40,7 +40,8 @@ #include "MEM_guardedalloc.h" #include "rgb32.h" -void *avi_converter_from_rgb32 (AviMovie *movie, int stream, unsigned char *buffer, int *size) { +void *avi_converter_from_rgb32 (AviMovie *movie, int stream, unsigned char *buffer, int *size) +{ int y, x, rowstridea, rowstrideb; unsigned char *buf; @@ -65,7 +66,8 @@ void *avi_converter_from_rgb32 (AviMovie *movie, int stream, unsigned char *buff return buf; } -void *avi_converter_to_rgb32 (AviMovie *movie, int stream, unsigned char *buffer, int *size) { +void *avi_converter_to_rgb32 (AviMovie *movie, int stream, unsigned char *buffer, int *size) +{ int i; unsigned char *buf; unsigned char *to, *from; diff --git a/source/blender/blenkernel/intern/boids.c b/source/blender/blenkernel/intern/boids.c index 6656d06e72e..ec2e6b3c078 100644 --- a/source/blender/blenkernel/intern/boids.c +++ b/source/blender/blenkernel/intern/boids.c @@ -1514,7 +1514,8 @@ BoidState *boid_new_state(BoidSettings *boids) return state; } -BoidState *boid_duplicate_state(BoidSettings *boids, BoidState *state) { +BoidState *boid_duplicate_state(BoidSettings *boids, BoidState *state) +{ BoidState *staten = MEM_dupallocN(state); BLI_duplicatelist(&staten->rules, &state->rules); diff --git a/source/blender/blenkernel/intern/customdata.c b/source/blender/blenkernel/intern/customdata.c index 6efd0a2727f..c88b21e2813 100644 --- a/source/blender/blenkernel/intern/customdata.c +++ b/source/blender/blenkernel/intern/customdata.c @@ -1995,7 +1995,8 @@ void CustomData_to_bmeshpoly(CustomData *fdata, CustomData *pdata, CustomData *l CustomData_add_layer(ldata, CD_MLOOPCOL, CD_CALLOC, &(fdata->layers[i].name), 0); } } -void CustomData_from_bmeshpoly(CustomData *fdata, CustomData *pdata, CustomData *ldata, int total){ +void CustomData_from_bmeshpoly(CustomData *fdata, CustomData *pdata, CustomData *ldata, int total) +{ int i; for(i=0; i < pdata->totlayer; i++){ if(pdata->layers[i].type == CD_MTEXPOLY) @@ -2008,7 +2009,8 @@ void CustomData_from_bmeshpoly(CustomData *fdata, CustomData *pdata, CustomData } -void CustomData_bmesh_init_pool(CustomData *data, int allocsize){ +void CustomData_bmesh_init_pool(CustomData *data, int allocsize) +{ if(data->totlayer)data->pool = BLI_mempool_create(data->totsize, allocsize, allocsize, FALSE, FALSE); } diff --git a/source/blender/blenkernel/intern/ocean.c b/source/blender/blenkernel/intern/ocean.c index ae622358fd2..15ce2e377b6 100644 --- a/source/blender/blenkernel/intern/ocean.c +++ b/source/blender/blenkernel/intern/ocean.c @@ -1343,7 +1343,8 @@ typedef struct Ocean { } Ocean; -float BKE_ocean_jminus_to_foam(float UNUSED(jminus), float UNUSED(coverage)) { +float BKE_ocean_jminus_to_foam(float UNUSED(jminus), float UNUSED(coverage)) +{ return 0.0f; } diff --git a/source/blender/blenkernel/intern/suggestions.c b/source/blender/blenkernel/intern/suggestions.c index 48bc4926a85..e1e872c42b6 100644 --- a/source/blender/blenkernel/intern/suggestions.c +++ b/source/blender/blenkernel/intern/suggestions.c @@ -47,7 +47,8 @@ static SuggList suggestions = {NULL, NULL, NULL, NULL, NULL}; static char *documentation = NULL; //static int doc_lines = 0; -static int txttl_cmp(const char *first, const char *second, int len) { +static int txttl_cmp(const char *first, const char *second, int len) +{ int cmp, i; for (cmp=0, i=0; iprev; @@ -69,7 +71,8 @@ static void txttl_free_suggest(void) { suggestions.top = 0; } -static void txttl_free_docs(void) { +static void txttl_free_docs(void) +{ if (documentation) { MEM_freeN(documentation); documentation = NULL; @@ -80,23 +83,27 @@ static void txttl_free_docs(void) { /* General tool functions */ /**************************/ -void free_texttools(void) { +void free_texttools(void) +{ txttl_free_suggest(); txttl_free_docs(); } -void texttool_text_set_active(Text *text) { +void texttool_text_set_active(Text *text) +{ if (activeToolText == text) return; texttool_text_clear(); activeToolText = text; } -void texttool_text_clear(void) { +void texttool_text_clear(void) +{ free_texttools(); activeToolText = NULL; } -short texttool_text_is_active(Text *text) { +short texttool_text_is_active(Text *text) +{ return activeToolText==text ? 1 : 0; } @@ -104,7 +111,8 @@ short texttool_text_is_active(Text *text) { /* Suggestion list methods */ /***************************/ -void texttool_suggest_add(const char *name, char type) { +void texttool_suggest_add(const char *name, char type) +{ SuggItem *newitem, *item; int len, cmp; @@ -154,7 +162,8 @@ void texttool_suggest_add(const char *name, char type) { suggestions.top= 0; } -void texttool_suggest_prefix(const char *prefix) { +void texttool_suggest_prefix(const char *prefix) +{ SuggItem *match, *first, *last; int cmp, len = strlen(prefix), top = 0; @@ -194,27 +203,33 @@ void texttool_suggest_prefix(const char *prefix) { } } -void texttool_suggest_clear(void) { +void texttool_suggest_clear(void) +{ txttl_free_suggest(); } -SuggItem *texttool_suggest_first(void) { +SuggItem *texttool_suggest_first(void) +{ return suggestions.firstmatch; } -SuggItem *texttool_suggest_last(void) { +SuggItem *texttool_suggest_last(void) +{ return suggestions.lastmatch; } -void texttool_suggest_select(SuggItem *sel) { +void texttool_suggest_select(SuggItem *sel) +{ suggestions.selected = sel; } -SuggItem *texttool_suggest_selected(void) { +SuggItem *texttool_suggest_selected(void) +{ return suggestions.selected; } -int *texttool_suggest_top(void) { +int *texttool_suggest_top(void) +{ return &suggestions.top; } @@ -222,7 +237,8 @@ int *texttool_suggest_top(void) { /* Documentation methods */ /*************************/ -void texttool_docs_show(const char *docs) { +void texttool_docs_show(const char *docs) +{ int len; if (!docs) return; @@ -246,10 +262,12 @@ void texttool_docs_show(const char *docs) { documentation[len] = '\0'; } -char *texttool_docs_get(void) { +char *texttool_docs_get(void) +{ return documentation; } -void texttool_docs_clear(void) { +void texttool_docs_clear(void) +{ txttl_free_docs(); } diff --git a/source/blender/blenkernel/intern/text.c b/source/blender/blenkernel/intern/text.c index 60cc029bf6e..7e102bc9854 100644 --- a/source/blender/blenkernel/intern/text.c +++ b/source/blender/blenkernel/intern/text.c @@ -2851,7 +2851,8 @@ void txt_add_marker(Text *text, TextLine *line, int start, int end, const unsign /* Returns the first matching marker on the specified line between two points. If the group or flags fields are non-zero the returned flag must be in the specified group and have at least the specified flags set. */ -TextMarker *txt_find_marker_region(Text *text, TextLine *line, int start, int end, int group, int flags) { +TextMarker *txt_find_marker_region(Text *text, TextLine *line, int start, int end, int group, int flags) +{ TextMarker *marker, *next; int lineno= txt_get_span(text->lines.first, line); @@ -2918,7 +2919,8 @@ short txt_clear_markers(Text *text, int group, int flags) /* Finds the marker at the specified line and cursor position with at least the specified flags set in the given group (if non-zero). */ -TextMarker *txt_find_marker(Text *text, TextLine *line, int curs, int group, int flags) { +TextMarker *txt_find_marker(Text *text, TextLine *line, int curs, int group, int flags) +{ TextMarker *marker; int lineno= txt_get_span(text->lines.first, line); @@ -2936,7 +2938,8 @@ TextMarker *txt_find_marker(Text *text, TextLine *line, int curs, int group, int /* Finds the previous marker in the same group. If no other is found, the same marker will be returned */ -TextMarker *txt_prev_marker(Text *text, TextMarker *marker) { +TextMarker *txt_prev_marker(Text *text, TextMarker *marker) +{ TextMarker *tmp= marker; while (tmp) { if (tmp->prev) tmp= tmp->prev; @@ -2949,7 +2952,8 @@ TextMarker *txt_prev_marker(Text *text, TextMarker *marker) { /* Finds the next marker in the same group. If no other is found, the same marker will be returned */ -TextMarker *txt_next_marker(Text *text, TextMarker *marker) { +TextMarker *txt_next_marker(Text *text, TextMarker *marker) +{ TextMarker *tmp= marker; while (tmp) { if (tmp->next) tmp= tmp->next; diff --git a/source/blender/blenlib/BLI_ghash.h b/source/blender/blenlib/BLI_ghash.h index 5b9db7113cb..f2a7e73e5e0 100644 --- a/source/blender/blenlib/BLI_ghash.h +++ b/source/blender/blenlib/BLI_ghash.h @@ -150,7 +150,7 @@ typedef struct GHashPair { GHashPair* BLI_ghashutil_pairalloc (const void *first, int second); unsigned int BLI_ghashutil_pairhash (const void *ptr); int BLI_ghashutil_paircmp (const void *a, const void *b); -void BLI_ghashutil_pairfree (const void *ptr); +void BLI_ghashutil_pairfree (void *ptr); #ifdef __cplusplus } diff --git a/source/blender/blenlib/intern/BLI_dynstr.c b/source/blender/blenlib/intern/BLI_dynstr.c index 5cdadce7c01..349bc3492e7 100644 --- a/source/blender/blenlib/intern/BLI_dynstr.c +++ b/source/blender/blenlib/intern/BLI_dynstr.c @@ -94,7 +94,8 @@ void BLI_dynstr_append(DynStr *ds, const char *cstr) ds->curlen+= cstrlen; } -void BLI_dynstr_nappend(DynStr *ds, const char *cstr, int len) { +void BLI_dynstr_nappend(DynStr *ds, const char *cstr, int len) +{ DynStrElem *dse= malloc(sizeof(*dse)); int cstrlen= BLI_strnlen(cstr, len); @@ -225,7 +226,8 @@ int BLI_dynstr_get_len(DynStr *ds) return ds->curlen; } -char *BLI_dynstr_get_cstring(DynStr *ds) { +char *BLI_dynstr_get_cstring(DynStr *ds) +{ char *s, *rets= MEM_mallocN(ds->curlen+1, "dynstr_cstring"); DynStrElem *dse; @@ -241,7 +243,8 @@ char *BLI_dynstr_get_cstring(DynStr *ds) { return rets; } -void BLI_dynstr_free(DynStr *ds) { +void BLI_dynstr_free(DynStr *ds) +{ DynStrElem *dse; for (dse= ds->elems; dse; ) { diff --git a/source/blender/blenlib/intern/BLI_ghash.c b/source/blender/blenlib/intern/BLI_ghash.c index 13f33f01420..9f388b68c38 100644 --- a/source/blender/blenlib/intern/BLI_ghash.c +++ b/source/blender/blenlib/intern/BLI_ghash.c @@ -56,7 +56,8 @@ static unsigned int hashsizes[]= { /***/ -GHash *BLI_ghash_new(GHashHashFP hashfp, GHashCmpFP cmpfp, const char *info) { +GHash *BLI_ghash_new(GHashHashFP hashfp, GHashCmpFP cmpfp, const char *info) +{ GHash *gh= MEM_mallocN(sizeof(*gh), info); gh->hashfp= hashfp; gh->cmpfp= cmpfp; @@ -72,11 +73,13 @@ GHash *BLI_ghash_new(GHashHashFP hashfp, GHashCmpFP cmpfp, const char *info) { return gh; } -int BLI_ghash_size(GHash *gh) { +int BLI_ghash_size(GHash *gh) +{ return gh->nentries; } -void BLI_ghash_insert(GHash *gh, void *key, void *val) { +void BLI_ghash_insert(GHash *gh, void *key, void *val) +{ unsigned int hash= gh->hashfp(key)%gh->nbuckets; Entry *e= (Entry*) BLI_mempool_alloc(gh->entrypool); @@ -109,7 +112,8 @@ void BLI_ghash_insert(GHash *gh, void *key, void *val) { } } -void *BLI_ghash_lookup(GHash *gh, const void *key) { +void *BLI_ghash_lookup(GHash *gh, const void *key) +{ if(gh) { unsigned int hash= gh->hashfp(key)%gh->nbuckets; Entry *e; @@ -151,7 +155,8 @@ int BLI_ghash_remove (GHash *gh, void *key, GHashKeyFreeFP keyfreefp, GHashValFr return 0; } -int BLI_ghash_haskey(GHash *gh, void *key) { +int BLI_ghash_haskey(GHash *gh, void *key) +{ unsigned int hash= gh->hashfp(key)%gh->nbuckets; Entry *e; @@ -162,7 +167,8 @@ int BLI_ghash_haskey(GHash *gh, void *key) { return 0; } -void BLI_ghash_free(GHash *gh, GHashKeyFreeFP keyfreefp, GHashValFreeFP valfreefp) { +void BLI_ghash_free(GHash *gh, GHashKeyFreeFP keyfreefp, GHashValFreeFP valfreefp) +{ int i; if (keyfreefp || valfreefp) { @@ -190,7 +196,8 @@ void BLI_ghash_free(GHash *gh, GHashKeyFreeFP keyfreefp, GHashValFreeFP valfreef /***/ -GHashIterator *BLI_ghashIterator_new(GHash *gh) { +GHashIterator *BLI_ghashIterator_new(GHash *gh) +{ GHashIterator *ghi= MEM_mallocN(sizeof(*ghi), "ghash iterator"); ghi->gh= gh; ghi->curEntry= NULL; @@ -203,7 +210,8 @@ GHashIterator *BLI_ghashIterator_new(GHash *gh) { } return ghi; } -void BLI_ghashIterator_init(GHashIterator *ghi, GHash *gh) { +void BLI_ghashIterator_init(GHashIterator *ghi, GHash *gh) +{ ghi->gh= gh; ghi->curEntry= NULL; ghi->curBucket= -1; @@ -214,18 +222,22 @@ void BLI_ghashIterator_init(GHashIterator *ghi, GHash *gh) { ghi->curEntry= ghi->gh->buckets[ghi->curBucket]; } } -void BLI_ghashIterator_free(GHashIterator *ghi) { +void BLI_ghashIterator_free(GHashIterator *ghi) +{ MEM_freeN(ghi); } -void *BLI_ghashIterator_getKey(GHashIterator *ghi) { +void *BLI_ghashIterator_getKey(GHashIterator *ghi) +{ return ghi->curEntry?ghi->curEntry->key:NULL; } -void *BLI_ghashIterator_getValue(GHashIterator *ghi) { +void *BLI_ghashIterator_getValue(GHashIterator *ghi) +{ return ghi->curEntry?ghi->curEntry->val:NULL; } -void BLI_ghashIterator_step(GHashIterator *ghi) { +void BLI_ghashIterator_step(GHashIterator *ghi) +{ if (ghi->curEntry) { ghi->curEntry= ghi->curEntry->next; while (!ghi->curEntry) { @@ -236,23 +248,27 @@ void BLI_ghashIterator_step(GHashIterator *ghi) { } } } -int BLI_ghashIterator_isDone(GHashIterator *ghi) { +int BLI_ghashIterator_isDone(GHashIterator *ghi) +{ return !ghi->curEntry; } /***/ -unsigned int BLI_ghashutil_ptrhash(const void *key) { +unsigned int BLI_ghashutil_ptrhash(const void *key) +{ return (unsigned int)(intptr_t)key; } -int BLI_ghashutil_ptrcmp(const void *a, const void *b) { +int BLI_ghashutil_ptrcmp(const void *a, const void *b) +{ if (a==b) return 0; else return (afirst = first; pair->second = second; return pair; } -unsigned int BLI_ghashutil_pairhash(const void *ptr) { +unsigned int BLI_ghashutil_pairhash(const void *ptr) +{ const GHashPair *pair = ptr; unsigned int hash = BLI_ghashutil_ptrhash(pair->first); return hash ^ BLI_ghashutil_inthash(SET_INT_IN_POINTER(pair->second)); } -int BLI_ghashutil_paircmp(const void *a, const void *b) { +int BLI_ghashutil_paircmp(const void *a, const void *b) +{ const GHashPair *A = a; const GHashPair *B = b; @@ -309,7 +331,8 @@ int BLI_ghashutil_paircmp(const void *a, const void *b) { return cmp; } -void BLI_ghashutil_pairfree(const void *ptr) { +void BLI_ghashutil_pairfree(void *ptr) +{ MEM_freeN((void*)ptr); } diff --git a/source/blender/blenlib/intern/BLI_linklist.c b/source/blender/blenlib/intern/BLI_linklist.c index a9b8cbb6467..6300817ec03 100644 --- a/source/blender/blenlib/intern/BLI_linklist.c +++ b/source/blender/blenlib/intern/BLI_linklist.c @@ -35,7 +35,8 @@ #include "BLI_linklist.h" #include "BLI_memarena.h" -int BLI_linklist_length(LinkNode *list) { +int BLI_linklist_length(LinkNode *list) +{ if (0) { return list?(1+BLI_linklist_length(list->next)):0; } else { @@ -70,7 +71,8 @@ LinkNode *BLI_linklist_find(LinkNode *list, int index) return NULL; } -void BLI_linklist_reverse(LinkNode **listp) { +void BLI_linklist_reverse(LinkNode **listp) +{ LinkNode *rhead= NULL, *cur= *listp; while (cur) { @@ -85,7 +87,8 @@ void BLI_linklist_reverse(LinkNode **listp) { *listp= rhead; } -void BLI_linklist_prepend(LinkNode **listp, void *ptr) { +void BLI_linklist_prepend(LinkNode **listp, void *ptr) +{ LinkNode *nlink= MEM_mallocN(sizeof(*nlink), "nlink"); nlink->link= ptr; @@ -93,7 +96,8 @@ void BLI_linklist_prepend(LinkNode **listp, void *ptr) { *listp= nlink; } -void BLI_linklist_append(LinkNode **listp, void *ptr) { +void BLI_linklist_append(LinkNode **listp, void *ptr) +{ LinkNode *nlink= MEM_mallocN(sizeof(*nlink), "nlink"); LinkNode *node = *listp; @@ -110,7 +114,8 @@ void BLI_linklist_append(LinkNode **listp, void *ptr) { } } -void BLI_linklist_prepend_arena(LinkNode **listp, void *ptr, MemArena *ma) { +void BLI_linklist_prepend_arena(LinkNode **listp, void *ptr, MemArena *ma) +{ LinkNode *nlink= BLI_memarena_alloc(ma, sizeof(*nlink)); nlink->link= ptr; @@ -118,7 +123,8 @@ void BLI_linklist_prepend_arena(LinkNode **listp, void *ptr, MemArena *ma) { *listp= nlink; } -void BLI_linklist_insert_after(LinkNode **listp, void *ptr) { +void BLI_linklist_insert_after(LinkNode **listp, void *ptr) +{ LinkNode *nlink= MEM_mallocN(sizeof(*nlink), "nlink"); LinkNode *node = *listp; @@ -134,7 +140,8 @@ void BLI_linklist_insert_after(LinkNode **listp, void *ptr) { } } -void BLI_linklist_free(LinkNode *list, LinkNodeFreeFP freefunc) { +void BLI_linklist_free(LinkNode *list, LinkNodeFreeFP freefunc) +{ while (list) { LinkNode *next= list->next; @@ -146,7 +153,8 @@ void BLI_linklist_free(LinkNode *list, LinkNodeFreeFP freefunc) { } } -void BLI_linklist_apply(LinkNode *list, LinkNodeApplyFP applyfunc, void *userdata) { +void BLI_linklist_apply(LinkNode *list, LinkNodeApplyFP applyfunc, void *userdata) +{ for (; list; list= list->next) applyfunc(list->link, userdata); } diff --git a/source/blender/blenlib/intern/BLI_memarena.c b/source/blender/blenlib/intern/BLI_memarena.c index 308fc6a61e6..4debe1a4b04 100644 --- a/source/blender/blenlib/intern/BLI_memarena.c +++ b/source/blender/blenlib/intern/BLI_memarena.c @@ -48,7 +48,8 @@ struct MemArena { LinkNode *bufs; }; -MemArena *BLI_memarena_new(int bufsize, const char *name) { +MemArena *BLI_memarena_new(int bufsize, const char *name) +{ MemArena *ma= MEM_callocN(sizeof(*ma), "memarena"); ma->bufsize= bufsize; ma->align = 8; @@ -57,20 +58,24 @@ MemArena *BLI_memarena_new(int bufsize, const char *name) { return ma; } -void BLI_memarena_use_calloc(MemArena *ma) { +void BLI_memarena_use_calloc(MemArena *ma) +{ ma->use_calloc= 1; } -void BLI_memarena_use_malloc(MemArena *ma) { +void BLI_memarena_use_malloc(MemArena *ma) +{ ma->use_calloc= 0; } -void BLI_memarena_use_align(struct MemArena *ma, int align) { +void BLI_memarena_use_align(struct MemArena *ma, int align) +{ /* align should be a power of two */ ma->align = align; } -void BLI_memarena_free(MemArena *ma) { +void BLI_memarena_free(MemArena *ma) +{ BLI_linklist_free(ma->bufs, (void(*)(void*)) MEM_freeN); MEM_freeN(ma); } @@ -78,7 +83,8 @@ void BLI_memarena_free(MemArena *ma) { /* amt must be power of two */ #define PADUP(num, amt) ((num+(amt-1))&~(amt-1)) -void *BLI_memarena_alloc(MemArena *ma, int size) { +void *BLI_memarena_alloc(MemArena *ma, int size) +{ void *ptr; /* ensure proper alignment by rounding diff --git a/source/blender/blenlib/intern/edgehash.c b/source/blender/blenlib/intern/edgehash.c index 0eda3e78824..7ae68101154 100644 --- a/source/blender/blenlib/intern/edgehash.c +++ b/source/blender/blenlib/intern/edgehash.c @@ -64,7 +64,8 @@ struct EdgeHash { /***/ -EdgeHash *BLI_edgehash_new(void) { +EdgeHash *BLI_edgehash_new(void) +{ EdgeHash *eh= MEM_mallocN(sizeof(*eh), "EdgeHash"); eh->cursize= 0; eh->nentries= 0; @@ -76,7 +77,8 @@ EdgeHash *BLI_edgehash_new(void) { return eh; } -void BLI_edgehash_insert(EdgeHash *eh, int v0, int v1, void *val) { +void BLI_edgehash_insert(EdgeHash *eh, int v0, int v1, void *val) +{ unsigned int hash; Entry *e= malloc(sizeof(*e)); @@ -117,7 +119,8 @@ void BLI_edgehash_insert(EdgeHash *eh, int v0, int v1, void *val) { } } -void** BLI_edgehash_lookup_p(EdgeHash *eh, int v0, int v1) { +void** BLI_edgehash_lookup_p(EdgeHash *eh, int v0, int v1) +{ unsigned int hash; Entry *e; @@ -134,21 +137,25 @@ void** BLI_edgehash_lookup_p(EdgeHash *eh, int v0, int v1) { return NULL; } -void* BLI_edgehash_lookup(EdgeHash *eh, int v0, int v1) { +void* BLI_edgehash_lookup(EdgeHash *eh, int v0, int v1) +{ void **value_p = BLI_edgehash_lookup_p(eh,v0,v1); return value_p?*value_p:NULL; } -int BLI_edgehash_haskey(EdgeHash *eh, int v0, int v1) { +int BLI_edgehash_haskey(EdgeHash *eh, int v0, int v1) +{ return BLI_edgehash_lookup_p(eh, v0, v1)!=NULL; } -int BLI_edgehash_size(EdgeHash *eh) { +int BLI_edgehash_size(EdgeHash *eh) +{ return eh->nentries; } -void BLI_edgehash_clear(EdgeHash *eh, EdgeHashFreeFP valfreefp) { +void BLI_edgehash_clear(EdgeHash *eh, EdgeHashFreeFP valfreefp) +{ int i; for (i=0; inbuckets; i++) { @@ -168,7 +175,8 @@ void BLI_edgehash_clear(EdgeHash *eh, EdgeHashFreeFP valfreefp) { eh->nentries= 0; } -void BLI_edgehash_free(EdgeHash *eh, EdgeHashFreeFP valfreefp) { +void BLI_edgehash_free(EdgeHash *eh, EdgeHashFreeFP valfreefp) +{ BLI_edgehash_clear(eh, valfreefp); free(eh->buckets); @@ -184,7 +192,8 @@ struct EdgeHashIterator { Entry *curEntry; }; -EdgeHashIterator *BLI_edgehashIterator_new(EdgeHash *eh) { +EdgeHashIterator *BLI_edgehashIterator_new(EdgeHash *eh) +{ EdgeHashIterator *ehi= malloc(sizeof(*ehi)); ehi->eh= eh; ehi->curEntry= NULL; @@ -197,26 +206,31 @@ EdgeHashIterator *BLI_edgehashIterator_new(EdgeHash *eh) { } return ehi; } -void BLI_edgehashIterator_free(EdgeHashIterator *ehi) { +void BLI_edgehashIterator_free(EdgeHashIterator *ehi) +{ free(ehi); } -void BLI_edgehashIterator_getKey(EdgeHashIterator *ehi, int *v0_r, int *v1_r) { +void BLI_edgehashIterator_getKey(EdgeHashIterator *ehi, int *v0_r, int *v1_r) +{ if (ehi->curEntry) { *v0_r = ehi->curEntry->v0; *v1_r = ehi->curEntry->v1; } } -void *BLI_edgehashIterator_getValue(EdgeHashIterator *ehi) { +void *BLI_edgehashIterator_getValue(EdgeHashIterator *ehi) +{ return ehi->curEntry?ehi->curEntry->val:NULL; } -void BLI_edgehashIterator_setValue(EdgeHashIterator *ehi, void *val) { +void BLI_edgehashIterator_setValue(EdgeHashIterator *ehi, void *val) +{ if(ehi->curEntry) ehi->curEntry->val= val; } -void BLI_edgehashIterator_step(EdgeHashIterator *ehi) { +void BLI_edgehashIterator_step(EdgeHashIterator *ehi) +{ if (ehi->curEntry) { ehi->curEntry= ehi->curEntry->next; while (!ehi->curEntry) { @@ -227,7 +241,8 @@ void BLI_edgehashIterator_step(EdgeHashIterator *ehi) { } } } -int BLI_edgehashIterator_isDone(EdgeHashIterator *ehi) { +int BLI_edgehashIterator_isDone(EdgeHashIterator *ehi) +{ return !ehi->curEntry; } diff --git a/source/blender/blenlib/intern/rand.c b/source/blender/blenlib/intern/rand.c index b1b7ebed18e..28dc5a696d5 100644 --- a/source/blender/blenlib/intern/rand.c +++ b/source/blender/blenlib/intern/rand.c @@ -78,11 +78,13 @@ void rng_free(RNG* rng) MEM_freeN(rng); } -void rng_seed(RNG *rng, unsigned int seed) { +void rng_seed(RNG *rng, unsigned int seed) +{ rng->X= (((r_uint64) seed)<<16) | LOWSEED; } -void rng_srandom(RNG *rng, unsigned int seed) { +void rng_srandom(RNG *rng, unsigned int seed) +{ rng_seed(rng, seed + hash[seed & 255]); seed= rng_getInt(rng); rng_seed(rng, seed + hash[seed & 255]); @@ -90,16 +92,19 @@ void rng_srandom(RNG *rng, unsigned int seed) { rng_seed(rng, seed + hash[seed & 255]); } -int rng_getInt(RNG *rng) { +int rng_getInt(RNG *rng) +{ rng->X= (MULTIPLIER*rng->X + ADDEND)&MASK; return (int) (rng->X>>17); } -double rng_getDouble(RNG *rng) { +double rng_getDouble(RNG *rng) +{ return (double) rng_getInt(rng)/0x80000000; } -float rng_getFloat(RNG *rng) { +float rng_getFloat(RNG *rng) +{ return (float) rng_getInt(rng)/0x80000000; } @@ -135,28 +140,34 @@ void rng_skip(RNG *rng, int n) static RNG theBLI_rng = {0}; /* note, this one creates periodical patterns */ -void BLI_srand(unsigned int seed) { +void BLI_srand(unsigned int seed) +{ rng_seed(&theBLI_rng, seed); } /* using hash table to create better seed */ -void BLI_srandom(unsigned int seed) { +void BLI_srandom(unsigned int seed) +{ rng_srandom(&theBLI_rng, seed); } -int BLI_rand(void) { +int BLI_rand(void) +{ return rng_getInt(&theBLI_rng); } -double BLI_drand(void) { +double BLI_drand(void) +{ return rng_getDouble(&theBLI_rng); } -float BLI_frand(void) { +float BLI_frand(void) +{ return rng_getFloat(&theBLI_rng); } -void BLI_fillrand(void *addr, int len) { +void BLI_fillrand(void *addr, int len) +{ RNG rng; unsigned char *p= addr; @@ -188,11 +199,13 @@ void BLI_thread_srandom(int thread, unsigned int seed) rng_seed(&rng_tab[thread], seed + hash[seed & 255]); } -int BLI_thread_rand(int thread) { +int BLI_thread_rand(int thread) +{ return rng_getInt(&rng_tab[thread]); } -float BLI_thread_frand(int thread) { +float BLI_thread_frand(int thread) +{ return rng_getFloat(&rng_tab[thread]); } diff --git a/source/blender/blenlib/intern/winstuff.c b/source/blender/blenlib/intern/winstuff.c index 1b5bb607386..b2002b63a22 100644 --- a/source/blender/blenlib/intern/winstuff.c +++ b/source/blender/blenlib/intern/winstuff.c @@ -49,7 +49,8 @@ /* FILE_MAX */ -int BLI_getInstallationDir( char * str ) { +int BLI_getInstallationDir( char * str ) +{ char dir[FILE_MAXDIR]; int a; @@ -73,7 +74,8 @@ void RegisterBlendExtension_Fail(HKEY root) TerminateProcess(GetCurrentProcess(),1); } -void RegisterBlendExtension(void) { +void RegisterBlendExtension(void) +{ LONG lresult; HKEY hkey = 0; HKEY root = 0; @@ -167,7 +169,8 @@ void RegisterBlendExtension(void) { TerminateProcess(GetCurrentProcess(),0); } -DIR *opendir (const char *path) { +DIR *opendir (const char *path) +{ if (GetFileAttributes(path) & FILE_ATTRIBUTE_DIRECTORY) { DIR *newd= MEM_mallocN(sizeof(DIR), "opendir"); @@ -185,7 +188,8 @@ DIR *opendir (const char *path) { } } -struct dirent *readdir(DIR *dp) { +struct dirent *readdir(DIR *dp) +{ if (dp->direntry.d_name) { MEM_freeN(dp->direntry.d_name); dp->direntry.d_name= NULL; @@ -208,7 +212,8 @@ struct dirent *readdir(DIR *dp) { } } -int closedir (DIR *dp) { +int closedir (DIR *dp) +{ if (dp->direntry.d_name) MEM_freeN(dp->direntry.d_name); if (dp->handle!=INVALID_HANDLE_VALUE) FindClose(dp->handle); @@ -217,7 +222,8 @@ int closedir (DIR *dp) { return 0; } -void get_default_root(char* root) { +void get_default_root(char* root) +{ char str[MAX_PATH+1]; /* the default drive to resolve a directory without a specified drive diff --git a/source/blender/editors/mesh/mesh_navmesh.c b/source/blender/editors/mesh/mesh_navmesh.c index 48d2c629148..973659cbb35 100644 --- a/source/blender/editors/mesh/mesh_navmesh.c +++ b/source/blender/editors/mesh/mesh_navmesh.c @@ -534,7 +534,8 @@ void MESH_OT_navmesh_face_copy(struct wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; } -static int compare(const void * a, const void * b){ +static int compare(const void * a, const void * b) +{ return ( *(int*)a - *(int*)b ); } diff --git a/source/blender/editors/physics/physics_pointcache.c b/source/blender/editors/physics/physics_pointcache.c index 0cecfa05b49..62e0e5e201d 100644 --- a/source/blender/editors/physics/physics_pointcache.c +++ b/source/blender/editors/physics/physics_pointcache.c @@ -59,7 +59,8 @@ #include "physics_intern.h" -static int cache_break_test(void *UNUSED(cbd)) { +static int cache_break_test(void *UNUSED(cbd)) +{ return G.afbreek==1; } static int ptcache_bake_all_poll(bContext *C) diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index cee7b19470b..8e6e5d08266 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -376,7 +376,8 @@ static void viewRedrawPost(bContext *C, TransInfo *t) /* ************************** TRANSFORMATIONS **************************** */ -void BIF_selectOrientation(void) { +void BIF_selectOrientation(void) +{ #if 0 // TRANSFORM_FIX_ME short val; char *str_menu = BIF_menustringTransformOrientation("Orientation"); @@ -2547,7 +2548,8 @@ void initResize(TransInfo *t) t->num.increment = t->snap[1]; } -static void headerResize(TransInfo *t, float vec[3], char *str) { +static void headerResize(TransInfo *t, float vec[3], char *str) +{ char tvec[60]; char *spos= str; if (hasNumInput(&t->num)) { @@ -2607,7 +2609,8 @@ static void TransMat3ToSize( float mat[][3], float smat[][3], float *size) } -static void ElementResize(TransInfo *t, TransData *td, float mat[3][3]) { +static void ElementResize(TransInfo *t, TransData *td, float mat[3][3]) +{ float tmat[3][3], smat[3][3], center[3]; float vec[3]; @@ -2904,7 +2907,8 @@ void initRotation(TransInfo *t) copy_v3_v3(t->axis_orig, t->axis); } -static void ElementRotation(TransInfo *t, TransData *td, float mat[3][3], short around) { +static void ElementRotation(TransInfo *t, TransData *td, float mat[3][3], short around) +{ float vec[3], totmat[3][3], smat[3][3]; float eul[3], fmat[3][3], quat[4]; float *center = t->center; @@ -3344,7 +3348,8 @@ void initTranslation(TransInfo *t) t->num.increment = t->snap[1]; } -static void headerTranslation(TransInfo *t, float vec[3], char *str) { +static void headerTranslation(TransInfo *t, float vec[3], char *str) +{ char *spos= str; char tvec[60]; char distvec[20]; @@ -3418,7 +3423,8 @@ static void headerTranslation(TransInfo *t, float vec[3], char *str) { (void)spos; } -static void applyTranslation(TransInfo *t, float vec[3]) { +static void applyTranslation(TransInfo *t, float vec[3]) +{ TransData *td = t->data; float tvec[3]; int i; @@ -4099,7 +4105,8 @@ void initBoneSize(TransInfo *t) t->num.increment = t->snap[1]; } -static void headerBoneSize(TransInfo *t, float vec[3], char *str) { +static void headerBoneSize(TransInfo *t, float vec[3], char *str) +{ char tvec[60]; if (hasNumInput(&t->num)) { outputNumInput(&(t->num), tvec); @@ -5302,7 +5309,8 @@ static void headerSeqSlide(TransInfo *t, float val[2], char *str) sprintf(str, "Sequence Slide: %s%s", &tvec[0], t->con.text); } -static void applySeqSlide(TransInfo *t, float val[2]) { +static void applySeqSlide(TransInfo *t, float val[2]) +{ TransData *td = t->data; int i; @@ -5826,7 +5834,8 @@ void initTimeScale(TransInfo *t) t->num.increment = t->snap[1]; } -static void headerTimeScale(TransInfo *t, char *str) { +static void headerTimeScale(TransInfo *t, char *str) +{ char tvec[60]; if (hasNumInput(&t->num)) @@ -5837,7 +5846,8 @@ static void headerTimeScale(TransInfo *t, char *str) { sprintf(str, "ScaleX: %s", &tvec[0]); } -static void applyTimeScale(TransInfo *t) { +static void applyTimeScale(TransInfo *t) +{ Scene *scene = t->scene; TransData *td = t->data; TransData2D *td2d = t->data2d; diff --git a/source/blender/editors/transform/transform_constraints.c b/source/blender/editors/transform/transform_constraints.c index bfb96149ed3..b88e57e1861 100644 --- a/source/blender/editors/transform/transform_constraints.c +++ b/source/blender/editors/transform/transform_constraints.c @@ -138,7 +138,8 @@ void constraintNumInput(TransInfo *t, float vec[3]) } } -static void postConstraintChecks(TransInfo *t, float vec[3], float pvec[3]) { +static void postConstraintChecks(TransInfo *t, float vec[3], float pvec[3]) +{ int i = 0; mul_m3_v3(t->con.imtx, vec); @@ -209,7 +210,8 @@ static void viewAxisCorrectCenter(TransInfo *t, float t_con_center[3]) } } -static void axisProjection(TransInfo *t, float axis[3], float in[3], float out[3]) { +static void axisProjection(TransInfo *t, float axis[3], float in[3], float out[3]) +{ float norm[3], vec[3], factor, angle; float t_con_center[3]; @@ -284,7 +286,8 @@ static void axisProjection(TransInfo *t, float axis[3], float in[3], float out[3 } } -static void planeProjection(TransInfo *t, float in[3], float out[3]) { +static void planeProjection(TransInfo *t, float in[3], float out[3]) +{ float vec[3], factor, norm[3]; add_v3_v3v3(vec, in, t->con.center); @@ -547,7 +550,8 @@ static void applyObjectConstraintRot(TransInfo *t, TransData *td, float vec[3], /*--------------------- INTERNAL SETUP CALLS ------------------*/ -void setConstraint(TransInfo *t, float space[3][3], int mode, const char text[]) { +void setConstraint(TransInfo *t, float space[3][3], int mode, const char text[]) +{ strncpy(t->con.text + 1, text, 48); copy_m3_m3(t->con.mtx, space); t->con.mode = mode; @@ -562,7 +566,8 @@ void setConstraint(TransInfo *t, float space[3][3], int mode, const char text[]) t->redraw = 1; } -void setLocalConstraint(TransInfo *t, int mode, const char text[]) { +void setLocalConstraint(TransInfo *t, int mode, const char text[]) +{ if (t->flag & T_EDIT) { float obmat[3][3]; copy_m3_m4(obmat, t->scene->obedit->obmat); @@ -596,7 +601,8 @@ void setLocalConstraint(TransInfo *t, int mode, const char text[]) { ftext is a format string passed to sprintf. It will add the name of the orientation where %s is (logically). */ -void setUserConstraint(TransInfo *t, short orientation, int mode, const char ftext[]) { +void setUserConstraint(TransInfo *t, short orientation, int mode, const char ftext[]) +{ char text[40]; switch(orientation) { @@ -744,7 +750,8 @@ void drawPropCircle(const struct bContext *C, TransInfo *t) } } -static void drawObjectConstraint(TransInfo *t) { +static void drawObjectConstraint(TransInfo *t) +{ int i; TransData * td = t->data; @@ -781,13 +788,15 @@ static void drawObjectConstraint(TransInfo *t) { /*--------------------- START / STOP CONSTRAINTS ---------------------- */ -void startConstraint(TransInfo *t) { +void startConstraint(TransInfo *t) +{ t->con.mode |= CON_APPLY; *t->con.text = ' '; t->num.idx_max = MIN2(getConstraintSpaceDimension(t) - 1, t->idx_max); } -void stopConstraint(TransInfo *t) { +void stopConstraint(TransInfo *t) +{ t->con.mode &= ~(CON_APPLY|CON_SELECT); *t->con.text = '\0'; t->num.idx_max = t->idx_max; @@ -836,7 +845,8 @@ void initSelectConstraint(TransInfo *t, float mtx[3][3]) t->con.applyRot = applyAxisConstraintRot; } -void selectConstraint(TransInfo *t) { +void selectConstraint(TransInfo *t) +{ if (t->con.mode & CON_SELECT) { setNearestAxis(t); startConstraint(t); @@ -970,7 +980,8 @@ void setNearestAxis(TransInfo *t) /*-------------- HELPER FUNCTIONS ----------------*/ -char constraintModeToChar(TransInfo *t) { +char constraintModeToChar(TransInfo *t) +{ if ((t->con.mode & CON_APPLY)==0) { return '\0'; } @@ -990,7 +1001,8 @@ char constraintModeToChar(TransInfo *t) { } -int isLockConstraint(TransInfo *t) { +int isLockConstraint(TransInfo *t) +{ int mode = t->con.mode; if ( (mode & (CON_AXIS0|CON_AXIS1)) == (CON_AXIS0|CON_AXIS1)) diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index fd74458b953..4b6c3a7031b 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -118,7 +118,8 @@ static short constraints_list_needinv(TransInfo *t, ListBase *list); /* ************************** Functions *************************** */ -static void qsort_trans_data(TransInfo *t, TransData *head, TransData *tail, TransData *temp) { +static void qsort_trans_data(TransInfo *t, TransData *head, TransData *tail, TransData *temp) +{ TransData *ihead = head; TransData *itail = tail; *temp = *head; @@ -165,7 +166,8 @@ static void qsort_trans_data(TransInfo *t, TransData *head, TransData *tail, Tra } } -void sort_trans_data_dist(TransInfo *t) { +void sort_trans_data_dist(TransInfo *t) +{ TransData temp; TransData *start = t->data; int i = 1; @@ -1326,7 +1328,8 @@ static void createTransMBallVerts(TransInfo *t) /* ********************* curve/surface ********* */ -static void calc_distanceCurveVerts(TransData *head, TransData *tail) { +static void calc_distanceCurveVerts(TransData *head, TransData *tail) +{ TransData *td, *td_near = NULL; for (td = head; td<=tail; td++) { if (td->flag & TD_SELECTED) { @@ -1371,7 +1374,8 @@ static void calc_distanceCurveVerts(TransData *head, TransData *tail) { } /* Utility function for getting the handle data from bezier's */ -static TransDataCurveHandleFlags *initTransDataCurveHandles(TransData *td, struct BezTriple *bezt) { +static TransDataCurveHandleFlags *initTransDataCurveHandles(TransData *td, struct BezTriple *bezt) +{ TransDataCurveHandleFlags *hdata; td->flag |= TD_BEZTRIPLE; hdata = td->hdata = MEM_mallocN(sizeof(TransDataCurveHandleFlags), "CuHandle Data"); diff --git a/source/blender/editors/transform/transform_orientations.c b/source/blender/editors/transform/transform_orientations.c index 442ad662813..3cb35c48f39 100644 --- a/source/blender/editors/transform/transform_orientations.c +++ b/source/blender/editors/transform/transform_orientations.c @@ -127,7 +127,8 @@ void BIF_createTransformOrientation(bContext *C, ReportList *reports, char *name } } -TransformOrientation *createObjectSpace(bContext *C, ReportList *UNUSED(reports), char *name, int overwrite) { +TransformOrientation *createObjectSpace(bContext *C, ReportList *UNUSED(reports), char *name, int overwrite) +{ Base *base = CTX_data_active_base(C); Object *ob; float mat[3][3]; @@ -150,7 +151,8 @@ TransformOrientation *createObjectSpace(bContext *C, ReportList *UNUSED(reports) return addMatrixSpace(C, mat, name, overwrite); } -TransformOrientation *createBoneSpace(bContext *C, ReportList *reports, char *name, int overwrite) { +TransformOrientation *createBoneSpace(bContext *C, ReportList *reports, char *name, int overwrite) +{ float mat[3][3]; float normal[3], plane[3]; @@ -169,7 +171,8 @@ TransformOrientation *createBoneSpace(bContext *C, ReportList *reports, char *na return addMatrixSpace(C, mat, name, overwrite); } -TransformOrientation *createMeshSpace(bContext *C, ReportList *reports, char *name, int overwrite) { +TransformOrientation *createMeshSpace(bContext *C, ReportList *reports, char *name, int overwrite) +{ float mat[3][3]; float normal[3], plane[3]; int type; @@ -267,7 +270,8 @@ int createSpaceNormalTangent(float mat[3][3], float normal[3], float tangent[3]) return 1; } -TransformOrientation* addMatrixSpace(bContext *C, float mat[3][3], char name[], int overwrite) { +TransformOrientation* addMatrixSpace(bContext *C, float mat[3][3], char name[], int overwrite) +{ ListBase *transform_spaces = &CTX_data_scene(C)->transform_spaces; TransformOrientation *ts = NULL; @@ -294,7 +298,8 @@ TransformOrientation* addMatrixSpace(bContext *C, float mat[3][3], char name[], return ts; } -void BIF_removeTransformOrientation(bContext *C, TransformOrientation *target) { +void BIF_removeTransformOrientation(bContext *C, TransformOrientation *target) +{ ListBase *transform_spaces = &CTX_data_scene(C)->transform_spaces; TransformOrientation *ts; int i; @@ -321,7 +326,8 @@ void BIF_removeTransformOrientation(bContext *C, TransformOrientation *target) { } } -void BIF_removeTransformOrientationIndex(bContext *C, int index) { +void BIF_removeTransformOrientationIndex(bContext *C, int index) +{ ListBase *transform_spaces = &CTX_data_scene(C)->transform_spaces; TransformOrientation *ts= BLI_findlink(transform_spaces, index); @@ -344,7 +350,8 @@ void BIF_removeTransformOrientationIndex(bContext *C, int index) { } } -void BIF_selectTransformOrientation(bContext *C, TransformOrientation *target) { +void BIF_selectTransformOrientation(bContext *C, TransformOrientation *target) +{ ListBase *transform_spaces = &CTX_data_scene(C)->transform_spaces; View3D *v3d = CTX_wm_view3d(C); TransformOrientation *ts; @@ -358,7 +365,8 @@ void BIF_selectTransformOrientation(bContext *C, TransformOrientation *target) { } } -void BIF_selectTransformOrientationValue(bContext *C, int orientation) { +void BIF_selectTransformOrientationValue(bContext *C, int orientation) +{ View3D *v3d = CTX_wm_view3d(C); if(v3d) /* currently using generic poll */ v3d->twmode = orientation; @@ -407,7 +415,8 @@ EnumPropertyItem *BIF_enumTransformOrientation(bContext *C) return item; } -const char * BIF_menustringTransformOrientation(const bContext *C, const char *title) { +const char * BIF_menustringTransformOrientation(const bContext *C, const char *title) +{ const char* menu = IFACE_("%t|Global%x0|Local%x1|Gimbal%x4|Normal%x2|View%x3"); ListBase *transform_spaces = &CTX_data_scene(C)->transform_spaces; TransformOrientation *ts; @@ -429,7 +438,8 @@ const char * BIF_menustringTransformOrientation(const bContext *C, const char *t return str_menu; } -int BIF_countTransformOrientation(const bContext *C) { +int BIF_countTransformOrientation(const bContext *C) +{ ListBase *transform_spaces = &CTX_data_scene(C)->transform_spaces; TransformOrientation *ts; int count = 0; @@ -441,7 +451,8 @@ int BIF_countTransformOrientation(const bContext *C) { return count; } -void applyTransformOrientation(const bContext *C, float mat[3][3], char *name) { +void applyTransformOrientation(const bContext *C, float mat[3][3], char *name) +{ TransformOrientation *ts; View3D *v3d = CTX_wm_view3d(C); int selected_index = (v3d->twmode - V3D_MANIP_CUSTOM); diff --git a/source/blender/gpu/intern/gpu_codegen.c b/source/blender/gpu/intern/gpu_codegen.c index cc4b092a071..33796b7c215 100644 --- a/source/blender/gpu/intern/gpu_codegen.c +++ b/source/blender/gpu/intern/gpu_codegen.c @@ -647,11 +647,13 @@ static char *code_generate_vertex(ListBase *nodes) return code; } -int GPU_bicubic_bump_support(void){ +int GPU_bicubic_bump_support(void) +{ return GLEW_ARB_texture_gather && GLEW_ARB_texture_query_lod && GLEW_VERSION_3_0; } -void GPU_code_generate_glsl_lib(void){ +void GPU_code_generate_glsl_lib(void) +{ DynStr *ds; /* only initialize the library once */ diff --git a/source/blender/imbuf/intern/anim_movie.c b/source/blender/imbuf/intern/anim_movie.c index 8928774dcb4..7d0c201a07c 100644 --- a/source/blender/imbuf/intern/anim_movie.c +++ b/source/blender/imbuf/intern/anim_movie.c @@ -110,7 +110,8 @@ #endif #endif -int ismovie(const char *UNUSED(filepath)) { +int ismovie(const char *UNUSED(filepath)) +{ return 0; } @@ -126,7 +127,8 @@ static void free_anim_movie(struct anim *UNUSED(anim)) { ; } # define PATHSEPERATOR '/' #endif -static int an_stringdec(const char *string, char* head, char *tail, unsigned short *numlen) { +static int an_stringdec(const char *string, char* head, char *tail, unsigned short *numlen) +{ unsigned short len,nume,nums=0; short i,found=FALSE; @@ -161,11 +163,13 @@ static int an_stringdec(const char *string, char* head, char *tail, unsigned sho } -static void an_stringenc(char *string, const char *head, const char *tail, unsigned short numlen, int pic) { +static void an_stringenc(char *string, const char *head, const char *tail, unsigned short numlen, int pic) +{ BLI_stringenc(string, head, tail, numlen, pic); } -static void free_anim_avi (struct anim *anim) { +static void free_anim_avi (struct anim *anim) +{ #if defined(_WIN32) && !defined(FREE_WINDOWS) int i; #endif @@ -206,7 +210,8 @@ static void free_anim_ffmpeg(struct anim * anim); static void free_anim_redcode(struct anim * anim); #endif -void IMB_free_anim(struct anim * anim) { +void IMB_free_anim(struct anim * anim) +{ if (anim == NULL) { printf("free anim, anim == NULL\n"); return; @@ -229,14 +234,16 @@ void IMB_free_anim(struct anim * anim) { MEM_freeN(anim); } -void IMB_close_anim(struct anim * anim) { +void IMB_close_anim(struct anim * anim) +{ if (anim == NULL) return; IMB_free_anim(anim); } -struct anim * IMB_open_anim( const char * name, int ib_flags, int streamindex) { +struct anim * IMB_open_anim( const char * name, int ib_flags, int streamindex) +{ struct anim * anim; anim = (struct anim*)MEM_callocN(sizeof(struct anim), "anim struct"); @@ -249,7 +256,8 @@ struct anim * IMB_open_anim( const char * name, int ib_flags, int streamindex) { } -static int startavi (struct anim *anim) { +static int startavi (struct anim *anim) +{ AviError avierror; #if defined(_WIN32) && !defined(FREE_WINDOWS) @@ -355,7 +363,8 @@ static int startavi (struct anim *anim) { return 0; } -static ImBuf * avi_fetchibuf (struct anim *anim, int position) { +static ImBuf * avi_fetchibuf (struct anim *anim, int position) +{ ImBuf *ibuf = NULL; int *tmp; int y; @@ -405,7 +414,8 @@ static ImBuf * avi_fetchibuf (struct anim *anim, int position) { extern void do_init_ffmpeg(void); -static int startffmpeg(struct anim * anim) { +static int startffmpeg(struct anim * anim) +{ int i, videoStream; AVCodec *pCodec; @@ -1032,7 +1042,8 @@ static ImBuf * ffmpeg_fetchibuf(struct anim * anim, int position, return anim->last_frame; } -static void free_anim_ffmpeg(struct anim * anim) { +static void free_anim_ffmpeg(struct anim * anim) +{ if (anim == NULL) return; if (anim->pCodecCtx) { @@ -1058,7 +1069,8 @@ static void free_anim_ffmpeg(struct anim * anim) { #ifdef WITH_REDCODE -static int startredcode(struct anim * anim) { +static int startredcode(struct anim * anim) +{ anim->redcodeCtx = redcode_open(anim->name); if (!anim->redcodeCtx) { return -1; @@ -1068,7 +1080,8 @@ static int startredcode(struct anim * anim) { return 0; } -static ImBuf * redcode_fetchibuf(struct anim * anim, int position) { +static ImBuf * redcode_fetchibuf(struct anim * anim, int position) +{ struct ImBuf * ibuf; struct redcode_frame * frame; struct redcode_frame_raw * raw_frame; @@ -1099,7 +1112,8 @@ static ImBuf * redcode_fetchibuf(struct anim * anim, int position) { return ibuf; } -static void free_anim_redcode(struct anim * anim) { +static void free_anim_redcode(struct anim * anim) +{ if (anim->redcodeCtx) { redcode_close(anim->redcodeCtx); anim->redcodeCtx = 0; @@ -1113,7 +1127,8 @@ static void free_anim_redcode(struct anim * anim) { /* Geen plaatje, probeer dan volgende animatie te openen */ /* gelukt, haal dan eerste plaatje van animatie */ -static struct ImBuf * anim_getnew(struct anim * anim) { +static struct ImBuf * anim_getnew(struct anim * anim) +{ struct ImBuf *ibuf = NULL; if (anim == NULL) return(NULL); @@ -1175,7 +1190,8 @@ static struct ImBuf * anim_getnew(struct anim * anim) { return(ibuf); } -struct ImBuf * IMB_anim_previewframe(struct anim * anim) { +struct ImBuf * IMB_anim_previewframe(struct anim * anim) +{ struct ImBuf * ibuf = NULL; int position = 0; @@ -1282,7 +1298,8 @@ struct ImBuf * IMB_anim_absolute(struct anim * anim, int position, /***/ -int IMB_anim_get_duration(struct anim *anim, IMB_Timecode_Type tc) { +int IMB_anim_get_duration(struct anim *anim, IMB_Timecode_Type tc) +{ struct anim_index * idx; if (tc == IMB_TC_NONE) { return anim->duration; diff --git a/source/blender/imbuf/intern/bmp.c b/source/blender/imbuf/intern/bmp.c index a9c2d72b188..77fc6bdf856 100644 --- a/source/blender/imbuf/intern/bmp.c +++ b/source/blender/imbuf/intern/bmp.c @@ -185,14 +185,16 @@ struct ImBuf *imb_bmp_decode(unsigned char *mem, size_t size, int flags) } /* Couple of helper functions for writing our data */ -static int putIntLSB(unsigned int ui,FILE *ofile) { +static int putIntLSB(unsigned int ui,FILE *ofile) +{ putc((ui>>0)&0xFF,ofile); putc((ui>>8)&0xFF,ofile); putc((ui>>16)&0xFF,ofile); return putc((ui>>24)&0xFF,ofile); } -static int putShortLSB(unsigned short us,FILE *ofile) { +static int putShortLSB(unsigned short us,FILE *ofile) +{ putc((us>>0)&0xFF,ofile); return putc((us>>8)&0xFF,ofile); } diff --git a/source/blender/imbuf/intern/jp2.c b/source/blender/imbuf/intern/jp2.c index 568dd7a9fb7..f8082c95f84 100644 --- a/source/blender/imbuf/intern/jp2.c +++ b/source/blender/imbuf/intern/jp2.c @@ -70,21 +70,24 @@ int imb_is_a_jp2(unsigned char *buf) /** sample error callback expecting a FILE* client object */ -static void error_callback(const char *msg, void *client_data) { +static void error_callback(const char *msg, void *client_data) +{ FILE *stream = (FILE*)client_data; fprintf(stream, "[ERROR] %s", msg); } /** sample warning callback expecting a FILE* client object */ -static void warning_callback(const char *msg, void *client_data) { +static void warning_callback(const char *msg, void *client_data) +{ FILE *stream = (FILE*)client_data; fprintf(stream, "[WARNING] %s", msg); } /** sample debug callback expecting no client object */ -static void info_callback(const char *msg, void *client_data) { +static void info_callback(const char *msg, void *client_data) +{ (void)client_data; fprintf(stdout, "[INFO] %s", msg); } @@ -305,7 +308,8 @@ struct ImBuf *imb_jp2_decode(unsigned char *mem, size_t size, int flags) #define COMP_48_CS 520833 /*Maximum size per color component for 2K @ 48fps*/ -static int initialise_4K_poc(opj_poc_t *POC, int numres){ +static int initialise_4K_poc(opj_poc_t *POC, int numres) +{ POC[0].tile = 1; POC[0].resno0 = 0; POC[0].compno0 = 0; @@ -323,7 +327,8 @@ static int initialise_4K_poc(opj_poc_t *POC, int numres){ return 2; } -static void cinema_parameters(opj_cparameters_t *parameters){ +static void cinema_parameters(opj_cparameters_t *parameters) +{ parameters->tile_size_on = false; parameters->cp_tdx=1; parameters->cp_tdy=1; @@ -356,7 +361,8 @@ static void cinema_parameters(opj_cparameters_t *parameters){ } -static void cinema_setup_encoder(opj_cparameters_t *parameters,opj_image_t *image, img_fol_t *img_fol){ +static void cinema_setup_encoder(opj_cparameters_t *parameters,opj_image_t *image, img_fol_t *img_fol) +{ int i; float temp_rate; @@ -442,8 +448,8 @@ static void cinema_setup_encoder(opj_cparameters_t *parameters,opj_image_t *imag } -static opj_image_t* ibuftoimage(ImBuf *ibuf, opj_cparameters_t *parameters) { - +static opj_image_t* ibuftoimage(ImBuf *ibuf, opj_cparameters_t *parameters) +{ unsigned char *rect; float *rect_float; @@ -662,8 +668,8 @@ static opj_image_t* ibuftoimage(ImBuf *ibuf, opj_cparameters_t *parameters) { /* Found write info at http://users.ece.gatech.edu/~slabaugh/personal/c/bitmapUnix.c */ -int imb_savejp2(struct ImBuf *ibuf, const char *name, int flags) { - +int imb_savejp2(struct ImBuf *ibuf, const char *name, int flags) +{ int quality = ibuf->ftype & 0xff; int bSuccess; diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c index 872b78743be..47dad378eb7 100644 --- a/source/blender/imbuf/intern/util.c +++ b/source/blender/imbuf/intern/util.c @@ -199,12 +199,14 @@ int IMB_ispic(const char *filename) -static int isavi (const char *name) { +static int isavi (const char *name) +{ return AVI_is_avi (name); } #ifdef WITH_QUICKTIME -static int isqtime (const char *name) { +static int isqtime (const char *name) +{ return anim_is_quicktime (name); } #endif @@ -240,7 +242,8 @@ void do_init_ffmpeg(void) } } -static int isffmpeg (const char *filename) { +static int isffmpeg (const char *filename) +{ AVFormatContext *pFormatCtx; unsigned int i; int videoStream; @@ -323,7 +326,8 @@ static int isredcode(const char * filename) #endif -int imb_get_anim_type(const char * name) { +int imb_get_anim_type(const char * name) +{ int type; struct stat st; @@ -364,7 +368,8 @@ int imb_get_anim_type(const char * name) { return(0); } -int IMB_isanim(const char *filename) { +int IMB_isanim(const char *filename) +{ int type; if(U.uiflag & USER_FILTERFILEEXTS) { diff --git a/source/blender/python/mathutils/mathutils_geometry.c b/source/blender/python/mathutils/mathutils_geometry.c index c5e0d2ab95d..d3b6e2e8b29 100644 --- a/source/blender/python/mathutils/mathutils_geometry.c +++ b/source/blender/python/mathutils/mathutils_geometry.c @@ -805,7 +805,8 @@ static PyObject *M_Geometry_intersect_point_tri_2d(PyObject *UNUSED(self), PyObj PyDoc_STRVAR(M_Geometry_intersect_point_quad_2d_doc, ".. function:: intersect_point_quad_2d(pt, quad_p1, quad_p2, quad_p3, quad_p4)\n" "\n" -" Takes 5 vectors (using only the x and y coordinates): one is the point and the next 4 define the quad, only the x and y are used from the vectors. Returns 1 if the point is within the quad, otherwise 0.\n" +" Takes 5 vectors (using only the x and y coordinates): one is the point and the next 4 define the quad, \n" +" only the x and y are used from the vectors. Returns 1 if the point is within the quad, otherwise 0.\n" "\n" " :arg pt: Point\n" " :type pt: :class:`mathutils.Vector`\n" diff --git a/source/gameengine/Ketsji/KX_PythonInit.cpp b/source/gameengine/Ketsji/KX_PythonInit.cpp index d9822d131eb..29871c2b3cd 100644 --- a/source/gameengine/Ketsji/KX_PythonInit.cpp +++ b/source/gameengine/Ketsji/KX_PythonInit.cpp @@ -1950,7 +1950,15 @@ void setupGamePython(KX_KetsjiEngine* ketsjiengine, KX_Scene* startscene, Main * initVideoTexture(); /* could be done a lot more nicely, but for now a quick way to get bge.* working */ - PyRun_SimpleString("sys = __import__('sys');mod = sys.modules['bge'] = type(sys)('bge');mod.__dict__.update({'logic':__import__('GameLogic'), 'render':__import__('Rasterizer'), 'events':__import__('GameKeys'), 'constraints':__import__('PhysicsConstraints'), 'types':__import__('GameTypes'), 'texture':__import__('VideoTexture')});"); + PyRun_SimpleString("sys = __import__('sys');" + "mod = sys.modules['bge'] = type(sys)('bge');" + "mod.__dict__.update({'logic':__import__('GameLogic'), " + "'render':__import__('Rasterizer'), " + "'events':__import__('GameKeys'), " + "'constraints':__import__('PhysicsConstraints'), " + "'types':__import__('GameTypes'), " + "'texture':__import__('VideoTexture')});" + ); } static struct PyModuleDef Rasterizer_module_def = { From 994f4bb3f78a467b6c34e30a9b8868fc4d01caf0 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Sat, 17 Dec 2011 01:13:02 +0000 Subject: [PATCH 65/70] Code cleanup: fix a few warnings (>= 0 and == -1 tests on unsigned types). --- source/blender/blenkernel/intern/image.c | 5 +---- source/blender/editors/object/object_vgroup.c | 4 ++-- source/blender/editors/sculpt_paint/paint_vertex.c | 7 ++++--- source/blender/editors/space_outliner/outliner_select.c | 2 +- source/blender/imbuf/intern/anim_movie.c | 1 - 5 files changed, 8 insertions(+), 11 deletions(-) diff --git a/source/blender/blenkernel/intern/image.c b/source/blender/blenkernel/intern/image.c index 7c2542b33be..25ff7b5fa04 100644 --- a/source/blender/blenkernel/intern/image.c +++ b/source/blender/blenkernel/intern/image.c @@ -1508,10 +1508,7 @@ int BKE_write_ibuf(ImBuf *ibuf, const char *name, ImageFormatData *imf) int ok; - if(imtype == -1) { - /* use whatever existing image type is set by 'ibuf' */ - } - else if(imtype== R_IMF_IMTYPE_IRIS) { + if(imtype== R_IMF_IMTYPE_IRIS) { ibuf->ftype= IMAGIC; } #ifdef WITH_HDR diff --git a/source/blender/editors/object/object_vgroup.c b/source/blender/editors/object/object_vgroup.c index 50fe9d26cf9..e117a934cd7 100644 --- a/source/blender/editors/object/object_vgroup.c +++ b/source/blender/editors/object/object_vgroup.c @@ -2599,8 +2599,8 @@ static int set_active_group_exec(bContext *C, wmOperator *op) Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; int nr= RNA_enum_get(op->ptr, "group"); + BLI_assert(nr+1 >= 0); ob->actdef= nr+1; - BLI_assert(ob->actdef >= 0); DAG_id_tag_update(&ob->id, OB_RECALC_DATA); WM_event_add_notifier(C, NC_GEOM|ND_DATA, ob); @@ -2733,8 +2733,8 @@ static int vgroup_do_remap(Object *ob, char *name_array, wmOperator *op) sort_map_update[0]= 0; vgroup_remap_update_users(ob, sort_map_update); + BLI_assert(sort_map_update[ob->actdef] >= 0); ob->actdef= sort_map_update[ob->actdef]; - BLI_assert(ob->actdef >= 0); MEM_freeN(sort_map_update); diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c index a5da5938f82..c0e3d00343b 100644 --- a/source/blender/editors/sculpt_paint/paint_vertex.c +++ b/source/blender/editors/sculpt_paint/paint_vertex.c @@ -1023,8 +1023,8 @@ static int weight_sample_group_exec(bContext *C, wmOperator *op) ViewContext vc; view3d_set_viewcontext(C, &vc); + BLI_assert(type + 1 >= 0); vc.obact->actdef= type + 1; - BLI_assert(vc.obact->actdef >= 0); DAG_id_tag_update(&vc.obact->id, OB_RECALC_DATA); WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, vc.obact); @@ -1918,8 +1918,9 @@ static int wpaint_stroke_test_start(bContext *C, wmOperator *op, wmEvent *UNUSED dg= ED_vgroup_add_name(ob, pchan->name); /* sets actdef */ } else { - ob->actdef= 1 + BLI_findindex(&ob->defbase, dg); - BLI_assert(ob->actdef >= 0); + int actdef = 1 + BLI_findindex(&ob->defbase, dg); + BLI_assert(actdef >= 0); + ob->actdef= actdef; } } } diff --git a/source/blender/editors/space_outliner/outliner_select.c b/source/blender/editors/space_outliner/outliner_select.c index 89547edaafa..e728267f45f 100644 --- a/source/blender/editors/space_outliner/outliner_select.c +++ b/source/blender/editors/space_outliner/outliner_select.c @@ -396,8 +396,8 @@ static int tree_element_active_defgroup(bContext *C, Scene *scene, TreeElement * /* id in tselem is object */ ob= (Object *)tselem->id; if(set) { + BLI_assert(te->index+1 >= 0); ob->actdef= te->index+1; - BLI_assert(ob->actdef >= 0); DAG_id_tag_update(&ob->id, OB_RECALC_DATA); WM_event_add_notifier(C, NC_OBJECT|ND_TRANSFORM, ob); diff --git a/source/blender/imbuf/intern/anim_movie.c b/source/blender/imbuf/intern/anim_movie.c index 7d0c201a07c..45264fa862b 100644 --- a/source/blender/imbuf/intern/anim_movie.c +++ b/source/blender/imbuf/intern/anim_movie.c @@ -703,7 +703,6 @@ static void ffmpeg_postprocess(struct anim * anim) int dstStride2[4] = { -dstStride[0], 0, 0, 0 }; uint8_t* dst2[4] = { dst[0] + (anim->y - 1)*dstStride[0], 0, 0, 0 }; - int i; sws_scale(anim->img_convert_ctx, (const uint8_t * const *)input->data, From 84236c2502e83f6622ede35d18b3a0df94bb54ab Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 17 Dec 2011 03:46:38 +0000 Subject: [PATCH 66/70] use 2d copy functions with UV's in more places. --- source/blender/blenkernel/intern/CCGSubSurf.c | 36 +++++++++---------- source/blender/blenkernel/intern/CCGSubSurf.h | 24 ++++++------- source/blender/blenkernel/intern/anim.c | 18 ++++------ .../blender/blenkernel/intern/subsurf_ccg.c | 19 ++++------ source/blender/editors/uvedit/uvedit_ops.c | 3 +- .../blender/modifiers/intern/MOD_uvproject.c | 28 ++++++--------- 6 files changed, 54 insertions(+), 74 deletions(-) diff --git a/source/blender/blenkernel/intern/CCGSubSurf.c b/source/blender/blenkernel/intern/CCGSubSurf.c index 140f596f78c..3ab52a7c17b 100644 --- a/source/blender/blenkernel/intern/CCGSubSurf.c +++ b/source/blender/blenkernel/intern/CCGSubSurf.c @@ -218,7 +218,7 @@ static CCGAllocatorIFC *_getStandardAllocatorIFC(void) { /***/ -static int VertDataEqual(float *a, float *b) { +static int VertDataEqual(const float *a, const float *b) { return a[0]==b[0] && a[1]==b[1] && a[2]==b[2]; } #define VertDataZero(av) { float *_a = (float*) av; _a[0] = _a[1] = _a[2] = 0.0f; } @@ -238,7 +238,7 @@ static int VertDataEqual(float *a, float *b) { #define NormAdd(av, bv) { float *_a = (float*) av, *_b = (float*) bv; _a[0]+=_b[0]; _a[1]+=_b[1]; _a[2]+=_b[2]; } -static int _edge_isBoundary(CCGEdge *e); +static int _edge_isBoundary(const CCGEdge *e); /***/ @@ -392,7 +392,7 @@ static void _vert_addFace(CCGVert *v, CCGFace *f, CCGSubSurf *ss) { v->faces = CCGSUBSURF_realloc(ss, v->faces, (v->numFaces+1)*sizeof(*v->faces), v->numFaces*sizeof(*v->faces)); v->faces[v->numFaces++] = f; } -static CCGEdge *_vert_findEdgeTo(CCGVert *v, CCGVert *vQ) { +static CCGEdge *_vert_findEdgeTo(const CCGVert *v, const CCGVert *vQ) { int i; for (i=0; inumEdges; i++) { CCGEdge *e = v->edges[v->numEdges-1-i]; // XXX, note reverse @@ -402,7 +402,7 @@ static CCGEdge *_vert_findEdgeTo(CCGVert *v, CCGVert *vQ) { } return NULL; } -static int _vert_isBoundary(CCGVert *v) { +static int _vert_isBoundary(const CCGVert *v) { int i; for (i=0; inumEdges; i++) if (_edge_isBoundary(v->edges[i])) @@ -423,7 +423,7 @@ static void _vert_free(CCGVert *v, CCGSubSurf *ss) { CCGSUBSURF_free(ss, v); } -static int VERT_seam(CCGVert *v) { +static int VERT_seam(const CCGVert *v) { return ((v->flags & Vert_eSeam) != 0); } @@ -462,7 +462,7 @@ static void _edge_addFace(CCGEdge *e, CCGFace *f, CCGSubSurf *ss) { e->faces = CCGSUBSURF_realloc(ss, e->faces, (e->numFaces+1)*sizeof(*e->faces), e->numFaces*sizeof(*e->faces)); e->faces[e->numFaces++] = f; } -static int _edge_isBoundary(CCGEdge *e) { +static int _edge_isBoundary(const CCGEdge *e) { return e->numFaces<2; } @@ -900,7 +900,7 @@ CCGError ccgSubSurf_syncFaceDel(CCGSubSurf *ss, CCGFaceHDL fHDL) { return eCCGError_None; } -CCGError ccgSubSurf_syncVert(CCGSubSurf *ss, CCGVertHDL vHDL, void *vertData, int seam, CCGVert **v_r) { +CCGError ccgSubSurf_syncVert(CCGSubSurf *ss, CCGVertHDL vHDL, const void *vertData, int seam, CCGVert **v_r) { void **prevp; CCGVert *v = NULL; short seamflag = (seam)? Vert_eSeam: 0; @@ -2484,13 +2484,13 @@ CCGError ccgSubSurf_updateLevels(CCGSubSurf *ss, int lvl, CCGFace **effectedF, i /*** External API accessor functions ***/ -int ccgSubSurf_getNumVerts(CCGSubSurf *ss) { +int ccgSubSurf_getNumVerts(const CCGSubSurf *ss) { return ss->vMap->numEntries; } -int ccgSubSurf_getNumEdges(CCGSubSurf *ss) { +int ccgSubSurf_getNumEdges(const CCGSubSurf *ss) { return ss->eMap->numEntries; } -int ccgSubSurf_getNumFaces(CCGSubSurf *ss) { +int ccgSubSurf_getNumFaces(const CCGSubSurf *ss) { return ss->fMap->numEntries; } @@ -2504,23 +2504,23 @@ CCGFace *ccgSubSurf_getFace(CCGSubSurf *ss, CCGFaceHDL f) { return (CCGFace*) _ehash_lookup(ss->fMap, f); } -int ccgSubSurf_getSubdivisionLevels(CCGSubSurf *ss) { +int ccgSubSurf_getSubdivisionLevels(const CCGSubSurf *ss) { return ss->subdivLevels; } -int ccgSubSurf_getEdgeSize(CCGSubSurf *ss) { +int ccgSubSurf_getEdgeSize(const CCGSubSurf *ss) { return ccgSubSurf_getEdgeLevelSize(ss, ss->subdivLevels); } -int ccgSubSurf_getEdgeLevelSize(CCGSubSurf *ss, int level) { +int ccgSubSurf_getEdgeLevelSize(const CCGSubSurf *ss, int level) { if (level<1 || level>ss->subdivLevels) { return -1; } else { return 1 + (1<subdivLevels); } -int ccgSubSurf_getGridLevelSize(CCGSubSurf *ss, int level) { +int ccgSubSurf_getGridLevelSize(const CCGSubSurf *ss, int level) { if (level<1 || level>ss->subdivLevels) { return -1; } else { @@ -2736,19 +2736,19 @@ void ccgFaceIterator_free(CCGFaceIterator *vi) { /*** Extern API final vert/edge/face interface ***/ -int ccgSubSurf_getNumFinalVerts(CCGSubSurf *ss) { +int ccgSubSurf_getNumFinalVerts(const CCGSubSurf *ss) { int edgeSize = 1 + (1<subdivLevels); int gridSize = 1 + (1<<(ss->subdivLevels-1)); int numFinalVerts = ss->vMap->numEntries + ss->eMap->numEntries*(edgeSize-2) + ss->fMap->numEntries + ss->numGrids*((gridSize-2) + ((gridSize-2)*(gridSize-2))); return numFinalVerts; } -int ccgSubSurf_getNumFinalEdges(CCGSubSurf *ss) { +int ccgSubSurf_getNumFinalEdges(const CCGSubSurf *ss) { int edgeSize = 1 + (1<subdivLevels); int gridSize = 1 + (1<<(ss->subdivLevels-1)); int numFinalEdges = ss->eMap->numEntries*(edgeSize-1) + ss->numGrids*((gridSize-1) + 2*((gridSize-2)*(gridSize-1))); return numFinalEdges; } -int ccgSubSurf_getNumFinalFaces(CCGSubSurf *ss) { +int ccgSubSurf_getNumFinalFaces(const CCGSubSurf *ss) { int gridSize = 1 + (1<<(ss->subdivLevels-1)); int numFinalFaces = ss->numGrids*((gridSize-1)*(gridSize-1)); return numFinalFaces; diff --git a/source/blender/blenkernel/intern/CCGSubSurf.h b/source/blender/blenkernel/intern/CCGSubSurf.h index 457ad2af353..543411f26f4 100644 --- a/source/blender/blenkernel/intern/CCGSubSurf.h +++ b/source/blender/blenkernel/intern/CCGSubSurf.h @@ -56,7 +56,7 @@ CCGError ccgSubSurf_sync (CCGSubSurf *ss); CCGError ccgSubSurf_initFullSync (CCGSubSurf *ss); CCGError ccgSubSurf_initPartialSync (CCGSubSurf *ss); -CCGError ccgSubSurf_syncVert (CCGSubSurf *ss, CCGVertHDL vHDL, void *vertData, int seam, CCGVert **v_r); +CCGError ccgSubSurf_syncVert (CCGSubSurf *ss, CCGVertHDL vHDL, const void *vertData, int seam, CCGVert **v_r); CCGError ccgSubSurf_syncEdge (CCGSubSurf *ss, CCGEdgeHDL eHDL, CCGVertHDL e_vHDL0, CCGVertHDL e_vHDL1, float crease, CCGEdge **e_r); CCGError ccgSubSurf_syncFace (CCGSubSurf *ss, CCGFaceHDL fHDL, int numVerts, CCGVertHDL *vHDLs, CCGFace **f_r); @@ -84,15 +84,15 @@ CCGError ccgSubSurf_setCalcVertexNormals (CCGSubSurf *ss, int useVertNormals, i /***/ -int ccgSubSurf_getNumVerts (CCGSubSurf *ss); -int ccgSubSurf_getNumEdges (CCGSubSurf *ss); -int ccgSubSurf_getNumFaces (CCGSubSurf *ss); +int ccgSubSurf_getNumVerts (const CCGSubSurf *ss); +int ccgSubSurf_getNumEdges (const CCGSubSurf *ss); +int ccgSubSurf_getNumFaces (const CCGSubSurf *ss); -int ccgSubSurf_getSubdivisionLevels (CCGSubSurf *ss); -int ccgSubSurf_getEdgeSize (CCGSubSurf *ss); -int ccgSubSurf_getEdgeLevelSize (CCGSubSurf *ss, int level); -int ccgSubSurf_getGridSize (CCGSubSurf *ss); -int ccgSubSurf_getGridLevelSize (CCGSubSurf *ss, int level); +int ccgSubSurf_getSubdivisionLevels (const CCGSubSurf *ss); +int ccgSubSurf_getEdgeSize (const CCGSubSurf *ss); +int ccgSubSurf_getEdgeLevelSize (const CCGSubSurf *ss, int level); +int ccgSubSurf_getGridSize (const CCGSubSurf *ss); +int ccgSubSurf_getGridLevelSize (const CCGSubSurf *ss, int level); CCGVert* ccgSubSurf_getVert (CCGSubSurf *ss, CCGVertHDL v); CCGVertHDL ccgSubSurf_getVertVertHandle (CCGVert *v); @@ -135,9 +135,9 @@ void* ccgSubSurf_getFaceGridEdgeData (CCGSubSurf *ss, CCGFace *f, int gridInde void* ccgSubSurf_getFaceGridDataArray (CCGSubSurf *ss, CCGFace *f, int gridIndex); void* ccgSubSurf_getFaceGridData (CCGSubSurf *ss, CCGFace *f, int gridIndex, int x, int y); -int ccgSubSurf_getNumFinalVerts (CCGSubSurf *ss); -int ccgSubSurf_getNumFinalEdges (CCGSubSurf *ss); -int ccgSubSurf_getNumFinalFaces (CCGSubSurf *ss); +int ccgSubSurf_getNumFinalVerts (const CCGSubSurf *ss); +int ccgSubSurf_getNumFinalEdges (const CCGSubSurf *ss); +int ccgSubSurf_getNumFinalFaces (const CCGSubSurf *ss); /***/ diff --git a/source/blender/blenkernel/intern/anim.c b/source/blender/blenkernel/intern/anim.c index bb8022c59fe..89bad72044e 100644 --- a/source/blender/blenkernel/intern/anim.c +++ b/source/blender/blenkernel/intern/anim.c @@ -1143,21 +1143,17 @@ static void face_duplilist(ListBase *lb, ID *id, Scene *scene, Object *par, floa madd_v3_v3v3fl(dob->orco, dob->orco, orco[mv1], w); madd_v3_v3v3fl(dob->orco, dob->orco, orco[mv2], w); madd_v3_v3v3fl(dob->orco, dob->orco, orco[mv3], w); - if(mv4) + if (mv4) { madd_v3_v3v3fl(dob->orco, dob->orco, orco[mv4], w); + } } if(mtface) { - dob->uv[0] += w*mtface[a].uv[0][0]; - dob->uv[1] += w*mtface[a].uv[0][1]; - dob->uv[0] += w*mtface[a].uv[1][0]; - dob->uv[1] += w*mtface[a].uv[1][1]; - dob->uv[0] += w*mtface[a].uv[2][0]; - dob->uv[1] += w*mtface[a].uv[2][1]; - - if(mv4) { - dob->uv[0] += w*mtface[a].uv[3][0]; - dob->uv[1] += w*mtface[a].uv[3][1]; + madd_v2_v2v2fl(dob->uv, dob->uv, mtface[a].uv[0], w); + madd_v2_v2v2fl(dob->uv, dob->uv, mtface[a].uv[1], w); + madd_v2_v2v2fl(dob->uv, dob->uv, mtface[a].uv[2], w); + if (mv4) { + madd_v2_v2v2fl(dob->uv, dob->uv, mtface[a].uv[3], w); } } } diff --git a/source/blender/blenkernel/intern/subsurf_ccg.c b/source/blender/blenkernel/intern/subsurf_ccg.c index f7cf0122269..374ef3512e8 100644 --- a/source/blender/blenkernel/intern/subsurf_ccg.c +++ b/source/blender/blenkernel/intern/subsurf_ccg.c @@ -225,6 +225,7 @@ static int ss_sync_from_uv(CCGSubSurf *ss, CCGSubSurf *origss, DerivedMesh *dm, CCGVertHDL fverts[4]; EdgeHash *ehash; float creaseFactor = (float)ccgSubSurf_getSubdivisionLevels(ss); + float uv[3]= {0.0f, 0.0f, 0.0f}; /* only first 2 values are written into */ limit[0]= limit[1]= STD_UV_CONNECT_LIMIT; vmap= make_uv_vert_map(mface, tface, totface, totvert, 0, limit); @@ -248,11 +249,8 @@ static int ss_sync_from_uv(CCGSubSurf *ss, CCGSubSurf *origss, DerivedMesh *dm, if (v->separate) { CCGVert *ssv; CCGVertHDL vhdl = SET_INT_IN_POINTER(v->f*4 + v->tfindex); - float uv[3]; - uv[0]= (tface+v->f)->uv[v->tfindex][0]; - uv[1]= (tface+v->f)->uv[v->tfindex][1]; - uv[2]= 0.0f; + copy_v2_v2(uv, (tface+v->f)->uv[v->tfindex]); ccgSubSurf_syncVert(ss, vhdl, uv, seam, &ssv); } @@ -359,15 +357,10 @@ static void set_subsurf_uv(CCGSubSurf *ss, DerivedMesh *dm, DerivedMesh *result, for(y = 0; y < gridFaces; y++) { for(x = 0; x < gridFaces; x++) { - float *a = faceGridData[(y + 0)*gridSize + x + 0].co; - float *b = faceGridData[(y + 0)*gridSize + x + 1].co; - float *c = faceGridData[(y + 1)*gridSize + x + 1].co; - float *d = faceGridData[(y + 1)*gridSize + x + 0].co; - - tf->uv[0][0] = a[0]; tf->uv[0][1] = a[1]; - tf->uv[1][0] = d[0]; tf->uv[1][1] = d[1]; - tf->uv[2][0] = c[0]; tf->uv[2][1] = c[1]; - tf->uv[3][0] = b[0]; tf->uv[3][1] = b[1]; + copy_v2_v2(tf->uv[0], faceGridData[(y + 0)*gridSize + x + 0].co); + copy_v2_v2(tf->uv[1], faceGridData[(y + 1)*gridSize + x + 0].co); + copy_v2_v2(tf->uv[2], faceGridData[(y + 1)*gridSize + x + 1].co); + copy_v2_v2(tf->uv[3], faceGridData[(y + 0)*gridSize + x + 1].co); tf++; } diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c index 92bd74db68a..1f71cd8a4c6 100644 --- a/source/blender/editors/uvedit/uvedit_ops.c +++ b/source/blender/editors/uvedit/uvedit_ops.c @@ -590,8 +590,7 @@ static void find_nearest_uv_face(Scene *scene, Image *ima, EditMesh *em, float c cent[0]= cent[1]= 0.0f; for(i=0; iuv[i][0]; - cent[1] += tf->uv[i][1]; + add_v2_v2(cent, tf->uv[i]); } cent[0] /= nverts; diff --git a/source/blender/modifiers/intern/MOD_uvproject.c b/source/blender/modifiers/intern/MOD_uvproject.c index af61c8049b1..acf65a56561 100644 --- a/source/blender/modifiers/intern/MOD_uvproject.c +++ b/source/blender/modifiers/intern/MOD_uvproject.c @@ -295,15 +295,11 @@ static DerivedMesh *uvprojectModifier_do(UVProjectModifierData *umd, } else { /* apply transformed coords as UVs */ - tface->uv[0][0] = coords[mf->v1][0]; - tface->uv[0][1] = coords[mf->v1][1]; - tface->uv[1][0] = coords[mf->v2][0]; - tface->uv[1][1] = coords[mf->v2][1]; - tface->uv[2][0] = coords[mf->v3][0]; - tface->uv[2][1] = coords[mf->v3][1]; - if(mf->v4) { - tface->uv[3][0] = coords[mf->v4][0]; - tface->uv[3][1] = coords[mf->v4][1]; + copy_v2_v2(tface->uv[0], coords[mf->v1]); + copy_v2_v2(tface->uv[1], coords[mf->v2]); + copy_v2_v2(tface->uv[2], coords[mf->v3]); + if (mf->v4) { + copy_v2_v2(tface->uv[3], coords[mf->v4]); } } } else { @@ -358,15 +354,11 @@ static DerivedMesh *uvprojectModifier_do(UVProjectModifierData *umd, mul_project_m4_v3(best_projector->projmat, co4); /* apply transformed coords as UVs */ - tface->uv[0][0] = co1[0]; - tface->uv[0][1] = co1[1]; - tface->uv[1][0] = co2[0]; - tface->uv[1][1] = co2[1]; - tface->uv[2][0] = co3[0]; - tface->uv[2][1] = co3[1]; - if(mf->v4) { - tface->uv[3][0] = co4[0]; - tface->uv[3][1] = co4[1]; + copy_v2_v2(tface->uv[0], co1); + copy_v2_v2(tface->uv[1], co2); + copy_v2_v2(tface->uv[2], co3); + if (mf->v4) { + copy_v2_v2(tface->uv[3], co4); } } } From 04fbfc2179358400229682978778dc1a3b629e6b Mon Sep 17 00:00:00 2001 From: Jason Wilkins Date: Sat, 17 Dec 2011 03:49:39 +0000 Subject: [PATCH 67/70] Calculation of the center and normal for sculpting would ignore whether the sculpting tool is using the current vertex positions/normals or the positions/normals from before the current edit. Most of the time this will lead to subtle and hard to predict differences from what a user might expect. There was sum testing and discussion about at the end of last summer and even some screen shots showing the difference. I'm going to go ahead and apply this since I do not think it is controversial. --- source/blender/editors/sculpt_paint/sculpt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c index 4cd95dca9f9..272475194ee 100644 --- a/source/blender/editors/sculpt_paint/sculpt.c +++ b/source/blender/editors/sculpt_paint/sculpt.c @@ -1688,7 +1688,7 @@ static void calc_flatten_center(Sculpt *sd, Object *ob, PBVHNode **nodes, int to if(ss->cache->original) { BLI_pbvh_vertex_iter_begin(ss->pbvh, nodes[n], vd, PBVH_ITER_UNIQUE) { if(sculpt_brush_test_fast(&test, unode->co[vd.i])) { - add_v3_v3(private_fc, vd.co); + add_v3_v3(private_fc, unode->co[vd.i]); private_count++; } } @@ -1758,7 +1758,7 @@ static void calc_area_normal_and_flatten_center(Sculpt *sd, Object *ob, PBVHNode add_norm_if(ss->cache->view_normal, private_an, private_out_flip, fno); // fc - add_v3_v3(private_fc, vd.co); + add_v3_v3(private_fc, unode->co[vd.i]); private_count++; } } From 7d2fbfeb9f59be3d60ce9370d74440d4490014e4 Mon Sep 17 00:00:00 2001 From: Antony Riakiotakis Date: Sat, 17 Dec 2011 12:58:20 +0000 Subject: [PATCH 68/70] move GPU_code_generate_glsl_lib to GPU_extensions_init. This makes more sense as we cleanup the library string in GPU_extensions_exit. Thanks to Mitchel Stokes for reporting and proposing this --- source/blender/gpu/intern/gpu_extensions.c | 4 ++++ source/blender/windowmanager/intern/wm_init_exit.c | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c index 4c0a3d6c5e4..5f8e165ea80 100644 --- a/source/blender/gpu/intern/gpu_extensions.c +++ b/source/blender/gpu/intern/gpu_extensions.c @@ -112,6 +112,10 @@ void GPU_extensions_init(void) if (!GLEW_ARB_vertex_shader) GG.glslsupport = 0; if (!GLEW_ARB_fragment_shader) GG.glslsupport = 0; + if(GG.glslsupport){ + GPU_code_generate_glsl_lib(); + } + glGetIntegerv(GL_RED_BITS, &r); glGetIntegerv(GL_GREEN_BITS, &g); glGetIntegerv(GL_BLUE_BITS, &b); diff --git a/source/blender/windowmanager/intern/wm_init_exit.c b/source/blender/windowmanager/intern/wm_init_exit.c index 7026323bf97..2695f3d680d 100644 --- a/source/blender/windowmanager/intern/wm_init_exit.c +++ b/source/blender/windowmanager/intern/wm_init_exit.c @@ -176,7 +176,6 @@ void WM_init(bContext *C, int argc, const char **argv) GPU_extensions_init(); GPU_set_mipmap(!(U.gameflags & USER_DISABLE_MIPMAP)); GPU_set_anisotropic(U.anisotropic_filter); - GPU_code_generate_glsl_lib(); UI_init(); } From b8e96e70dc7997226cd06d3179572ab34e9756ad Mon Sep 17 00:00:00 2001 From: Antony Riakiotakis Date: Sat, 17 Dec 2011 13:02:31 +0000 Subject: [PATCH 69/70] better to generate the library string always because it could lead to null pointer dereferences. I don't have a non-shader system to check so skipping the conditional just to be safe --- source/blender/gpu/intern/gpu_extensions.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c index 5f8e165ea80..eaa661a9dcf 100644 --- a/source/blender/gpu/intern/gpu_extensions.c +++ b/source/blender/gpu/intern/gpu_extensions.c @@ -112,9 +112,7 @@ void GPU_extensions_init(void) if (!GLEW_ARB_vertex_shader) GG.glslsupport = 0; if (!GLEW_ARB_fragment_shader) GG.glslsupport = 0; - if(GG.glslsupport){ - GPU_code_generate_glsl_lib(); - } + GPU_code_generate_glsl_lib(); glGetIntegerv(GL_RED_BITS, &r); glGetIntegerv(GL_GREEN_BITS, &g); From 74a112305932eff7c68c23c6df265e72de7195f8 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Sat, 17 Dec 2011 16:22:08 +0000 Subject: [PATCH 70/70] Quite some compiler warnings... --- source/blender/blenkernel/intern/cdderivedmesh.c | 4 ++-- source/blender/blenkernel/intern/deform.c | 2 +- source/blender/blenkernel/intern/dynamicpaint.c | 4 ++-- source/blender/blenkernel/intern/tracking.c | 2 +- source/blender/editors/object/object_vgroup.c | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/source/blender/blenkernel/intern/cdderivedmesh.c b/source/blender/blenkernel/intern/cdderivedmesh.c index d4d83fec0eb..2cf2225607e 100644 --- a/source/blender/blenkernel/intern/cdderivedmesh.c +++ b/source/blender/blenkernel/intern/cdderivedmesh.c @@ -657,7 +657,7 @@ static void cdDM_drawFacesTex_common(DerivedMesh *dm, float *nors= dm->getFaceDataArray(dm, CD_NORMAL); MTFace *tf = DM_get_face_data_layer(dm, CD_MTFACE); int i, j, orig, *index = DM_get_face_data_layer(dm, CD_ORIGINDEX); - int startFace = 0, lastFlag = 0xdeadbeef; + int startFace = 0 /*, lastFlag = 0xdeadbeef */ /* UNUSED */; MCol *mcol = dm->getFaceDataArray(dm, CD_WEIGHT_MCOL); if(!mcol) mcol = dm->getFaceDataArray(dm, CD_MCOL); @@ -776,7 +776,7 @@ static void cdDM_drawFacesTex_common(DerivedMesh *dm, int next_actualFace= dm->drawObject->triangle_to_mface[0]; glShadeModel( GL_SMOOTH ); - lastFlag = 0; + /* lastFlag = 0; */ /* UNUSED */ for(i = 0; i < tottri; i++) { int actualFace = next_actualFace; int flag = 1; diff --git a/source/blender/blenkernel/intern/deform.c b/source/blender/blenkernel/intern/deform.c index f7f10276ee4..6fb4164d6c6 100644 --- a/source/blender/blenkernel/intern/deform.c +++ b/source/blender/blenkernel/intern/deform.c @@ -213,7 +213,7 @@ void defvert_normalize_lock(MDeformVert *dvert, const int def_nr_lock) dvert->dw[0].weight= 1.0f; } else { - MDeformWeight *dw_lock; + MDeformWeight *dw_lock = NULL; MDeformWeight *dw; unsigned int i; float tot_weight= 0.0f; diff --git a/source/blender/blenkernel/intern/dynamicpaint.c b/source/blender/blenkernel/intern/dynamicpaint.c index b592e078db3..955e747eded 100644 --- a/source/blender/blenkernel/intern/dynamicpaint.c +++ b/source/blender/blenkernel/intern/dynamicpaint.c @@ -3220,7 +3220,7 @@ static int dynamicPaint_paintMesh(DynamicPaintSurface *surface, /* hit data */ float hitCoord[3]; int hitFace = -1; - short hitQuad; + short hitQuad = 0; /* Supersampling factor */ if (samples > 1 && surface->format == MOD_DPAINT_SURFACE_F_IMAGESEQ) @@ -4647,7 +4647,7 @@ static int dynamicPaint_generateBakeData(DynamicPaintSurface *surface, Scene *sc #pragma omp parallel for schedule(static) for (index=0; indextotal_points; index++) { - float prev_point[3]; + float prev_point[3] = {0.0f, 0.0f, 0.0f}; if (do_velocity_data && !new_bdata) { copy_v3_v3(prev_point, bData->realCoord[bData->s_pos[index]].v); } diff --git a/source/blender/blenkernel/intern/tracking.c b/source/blender/blenkernel/intern/tracking.c index 828ecb2d535..83adfa12236 100644 --- a/source/blender/blenkernel/intern/tracking.c +++ b/source/blender/blenkernel/intern/tracking.c @@ -1154,7 +1154,7 @@ int BKE_tracking_next(MovieTrackingContext *context) #pragma omp parallel for private(a) shared(ibuf_new, ok) if(map_size>1) for(a= 0; atotweight; float oldw = 0; float oldPos[3] = {0}; - float vc, hc, dist; + float vc, hc, dist = 0.0f; int i, k; float (*changes)[2] = MEM_mallocN(sizeof(float *)*totweight*2, "vertHorzChange"); float *dists = MEM_mallocN(sizeof(float)*totweight, "distance");

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%0DfH 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