From 04e0c7e4f17042da3a0b1a203dc6296dddc7f717 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sat, 27 Nov 2021 17:07:27 -0500 Subject: [PATCH] Support tracing through --hierarchical/--lib-create libraries (#3200). --- Changes | 1 + docs/guide/extensions.rst | 7 + src/V3Ast.h | 4 + src/V3AstNodes.h | 12 +- src/V3EmitCModel.cpp | 62 +- src/V3ProtectLib.cpp | 29 + src/V3Task.cpp | 5 +- src/verilog.l | 1 + src/verilog.y | 29 +- test_regress/t/t_hier_block_trace.out | 6533 ++++++++++++++++++++++++- 10 files changed, 6654 insertions(+), 29 deletions(-) diff --git a/Changes b/Changes index c8dcd808d..3362d93e7 100644 --- a/Changes +++ b/Changes @@ -14,6 +14,7 @@ Verilator 4.215 devel **Major:** * Add --lib-create, similar to --protect-lib but without protections. +* Support tracing through --hierarchical/--lib-create libraries (#3200). **Minor:** diff --git a/docs/guide/extensions.rst b/docs/guide/extensions.rst index 0b17a725e..ff79df1f4 100644 --- a/docs/guide/extensions.rst +++ b/docs/guide/extensions.rst @@ -489,6 +489,13 @@ or "`ifdef`"'s may break other tools. Verilator) text that should be passed through to the XML output as a tag, for use by downstream applications. +.. option:: /*verilator&32;trace_init_task*/ + + Attached to a DPI import to indicate that function should be called when + initializing tracing. This attribute is indented only to be used + internally in code that Verilator generates when :vlopt:`--lib-create` + or :vlopt:`--hierarchical` is used along with :vlopt:`--trace`. + .. option:: /*verilator&32;tracing_off*/ Disable waveform tracing for all future signals that are declared in diff --git a/src/V3Ast.h b/src/V3Ast.h index 873ea632e..4f5d56651 100644 --- a/src/V3Ast.h +++ b/src/V3Ast.h @@ -2737,6 +2737,7 @@ private: bool m_dpiContext : 1; // DPI import context bool m_dpiOpenChild : 1; // DPI import open array child wrapper bool m_dpiTask : 1; // DPI import task (vs. void function) + bool m_dpiTraceInit : 1; // DPI trace_init bool m_isConstructor : 1; // Class constructor bool m_isHideLocal : 1; // Verilog local bool m_isHideProtected : 1; // Verilog protected @@ -2760,6 +2761,7 @@ protected: , m_dpiContext{false} , m_dpiOpenChild{false} , m_dpiTask{false} + , m_dpiTraceInit{false} , m_isConstructor{false} , m_isHideLocal{false} , m_isHideProtected{false} @@ -2822,6 +2824,8 @@ public: bool dpiOpenChild() const { return m_dpiOpenChild; } void dpiTask(bool flag) { m_dpiTask = flag; } bool dpiTask() const { return m_dpiTask; } + void dpiTraceInit(bool flag) { m_dpiTraceInit = flag; } + bool dpiTraceInit() const { return m_dpiTraceInit; } void isConstructor(bool flag) { m_isConstructor = flag; } bool isConstructor() const { return m_isConstructor; } bool isHideLocal() const { return m_isHideLocal; } diff --git a/src/V3AstNodes.h b/src/V3AstNodes.h index e6f028df6..88a5ed4c0 100644 --- a/src/V3AstNodes.h +++ b/src/V3AstNodes.h @@ -8781,11 +8781,12 @@ private: bool m_isVirtual : 1; // Virtual function bool m_entryPoint : 1; // User may call into this top level function bool m_pure : 1; // Pure function + bool m_dpiContext : 1; // Declared as 'context' DPI import/export function bool m_dpiExportDispatcher : 1; // This is the DPI export entry point (i.e.: called by user) bool m_dpiExportImpl : 1; // DPI export implementation (called from DPI dispatcher via lookup) bool m_dpiImportPrototype : 1; // This is the DPI import prototype (i.e.: provided by user) bool m_dpiImportWrapper : 1; // Wrapper for invoking DPI import prototype from generated code - bool m_dpiContext : 1; // Declared as 'context' DPI import/export function + bool m_dpiTraceInit : 1; // DPI trace_init public: AstCFunc(FileLine* fl, const string& name, AstScope* scopep, const string& rtnType = "") : ASTGEN_SUPER_CFunc(fl) { @@ -8808,11 +8809,12 @@ public: m_isVirtual = false; m_entryPoint = false; m_pure = false; + m_dpiContext = false; m_dpiExportDispatcher = false; m_dpiExportImpl = false; m_dpiImportPrototype = false; m_dpiImportWrapper = false; - m_dpiContext = false; + m_dpiTraceInit = false; } ASTNODE_NODE_FUNCS(CFunc) virtual string name() const override { return m_name; } @@ -8880,6 +8882,8 @@ public: void entryPoint(bool flag) { m_entryPoint = flag; } bool pure() const { return m_pure; } void pure(bool flag) { m_pure = flag; } + bool dpiContext() const { return m_dpiContext; } + void dpiContext(bool flag) { m_dpiContext = flag; } bool dpiExportDispatcher() const { return m_dpiExportDispatcher; } void dpiExportDispatcher(bool flag) { m_dpiExportDispatcher = flag; } bool dpiExportImpl() const { return m_dpiExportImpl; } @@ -8888,8 +8892,8 @@ public: void dpiImportPrototype(bool flag) { m_dpiImportPrototype = flag; } bool dpiImportWrapper() const { return m_dpiImportWrapper; } void dpiImportWrapper(bool flag) { m_dpiImportWrapper = flag; } - bool dpiContext() const { return m_dpiContext; } - void dpiContext(bool flag) { m_dpiContext = flag; } + void dpiTraceInit(bool flag) { m_dpiTraceInit = flag; } + bool dpiTraceInit() const { return m_dpiTraceInit; } // // If adding node accessors, see below emptyBody AstNode* argsp() const { return op1p(); } diff --git a/src/V3EmitCModel.cpp b/src/V3EmitCModel.cpp index 82ef2a97e..93d84d292 100644 --- a/src/V3EmitCModel.cpp +++ b/src/V3EmitCModel.cpp @@ -23,14 +23,31 @@ #include "V3UniqueNames.h" #include +#include #include class EmitCModel final : public EmitCFunc { + // TYPES + using CFuncVector = std::vector; + + // MEMBERS V3UniqueNames m_uniqueNames; // For generating unique file names // METHODS VL_DEBUG_FUNC; + CFuncVector findFuncps(std::function cb) { + CFuncVector funcps; + for (AstNode* nodep = m_modp->stmtsp(); nodep; nodep = nodep->nextp()) { + if (const AstCFunc* const funcp = VN_CAST(nodep, CFunc)) { + if (cb(funcp)) funcps.push_back(funcp); + } + } + stable_sort(funcps.begin(), funcps.end(), + [](const AstNode* ap, const AstNode* bp) { return ap->name() < bp->name(); }); + return funcps; + } + void putSectionDelimiter(const string& name) { puts("\n"); puts("//============================================================\n"); @@ -187,22 +204,11 @@ class EmitCModel final : public EmitCFunc { // Emit DPI export dispatcher declarations { - std::vector funcps; - - for (AstNode* nodep = modp->stmtsp(); nodep; nodep = nodep->nextp()) { - if (const AstCFunc* const funcp = VN_CAST(nodep, CFunc)) { - if (!funcp->dpiExportDispatcher()) continue; - funcps.push_back(funcp); - } - } - - stable_sort(funcps.begin(), funcps.end(), [](const AstNode* ap, const AstNode* bp) { - return ap->name() < bp->name(); - }); - + const CFuncVector funcps + = findFuncps([](const AstCFunc* nodep) { return nodep->dpiExportDispatcher(); }); if (!funcps.empty()) { puts("\n/// DPI Export functions\n"); - for (const AstCFunc* funcp : funcps) { emitCFuncDecl(funcp, modp); } + for (const AstCFunc* funcp : funcps) emitCFuncDecl(funcp, modp); } } @@ -568,12 +574,38 @@ class EmitCModel final : public EmitCFunc { + topModNameProtected + "* vlSelf, " + v3Global.opt.traceClassBase() + "* tracep);\n"); + const CFuncVector traceInitFuncps + = findFuncps([](const AstCFunc* nodep) { return nodep->dpiTraceInit(); }); + for (const AstCFunc* const funcp : traceInitFuncps) emitCFuncDecl(funcp, modp); + // ::trace puts("\nVL_ATTR_COLD void " + topClassName() + "::trace("); - puts(v3Global.opt.traceClassBase() + "C* tfp, int, int) {\n"); + puts(v3Global.opt.traceClassBase() + "C* tfp, int levels, int options) {\n"); + puts(/**/ "if (false && levels && options) {} // Prevent unused\n"); puts(/**/ "tfp->spTrace()->addInitCb(&" + protect("trace_init") + ", &(vlSymsp->TOP));\n"); puts(/**/ topModNameProtected + "__" + protect("trace_register") + "(&(vlSymsp->TOP), tfp->spTrace());\n"); + + if (!traceInitFuncps.empty()) { + puts(/**/ "if (levels > 0) {\n"); + puts(/****/ "const QData tfpq = reinterpret_cast(tfp);\n"); + for (const AstCFunc* const funcp : traceInitFuncps) { + // Some hackery to locate handle__V for trace_init_task + // Considered a pragma on the handle, but that still doesn't help us attach it here + string handle = funcp->name(); + const size_t wr_len = strlen("__Vdpiimwrap_"); + UASSERT_OBJ(handle.substr(0, wr_len) == "__Vdpiimwrap_", funcp, + "Strange trace_init_task function name"); + handle = "vlSymsp->TOP." + handle.substr(wr_len); + const string::size_type pos = handle.rfind("__DOT__"); + UASSERT_OBJ(pos != string::npos, funcp, "Strange trace_init_task function name"); + handle = handle.substr(0, pos) + "__DOT__handle___05FV"; + puts(funcNameProtect(funcp, modp) + "(" + handle + + ", tfpq, levels - 1, options);\n"); + } + puts(/**/ "}\n"); + } + puts("}\n"); } diff --git a/src/V3ProtectLib.cpp b/src/V3ProtectLib.cpp index aa8f7230f..67280e92c 100644 --- a/src/V3ProtectLib.cpp +++ b/src/V3ProtectLib.cpp @@ -124,6 +124,11 @@ private: addComment(txtp, fl, "Evaluates the library module's final process"); } + void traceComment(AstTextBlock* txtp, FileLine* fl) { + addComment(txtp, fl, "Enables the library module's tracing"); + addComment(txtp, fl, "Only usable when used with called from Verilator"); + } + void createSvFile(FileLine* fl, AstNodeModule* modp) { // Comments AstTextBlock* const txtp = new AstTextBlock(fl); @@ -197,6 +202,18 @@ private: txtp->addText(fl, "import \"DPI-C\" function void " + m_libName + "_protectlib_final(chandle handle__V);\n\n"); + if (v3Global.opt.trace() && !v3Global.opt.protectIds()) { + txtp->addText(fl, "`ifdef verilator\n"); + traceComment(txtp, fl); + txtp->addText(fl, "import \"DPI-C\" function void " + m_libName + + "_protectlib_trace(chandle handle__V, " + "chandle tfp, int levels, int options)" + + " /*verilator trace_init_task*/;\n"); + // Note V3EmitCModel.cpp requires the name "handle__V". + txtp->addText(fl, "`endif // verilator\n"); + txtp->addText(fl, "\n"); + } + // Local variables // Avoid tracing handle, as it is not a stable value, so breaks vcddiff // Likewise other internals aren't interesting to the user @@ -387,6 +404,18 @@ private: txtp->addText(fl, /**/ "delete handlep__V;\n"); txtp->addText(fl, "}\n\n"); + if (v3Global.opt.trace() && !v3Global.opt.protectIds()) { + traceComment(txtp, fl); + txtp->addText(fl, "void " + m_libName + + "_protectlib_trace(void* vhandlep__V, void* tfp, int levels, " + "int options) {\n"); + castPtr(fl, txtp); + txtp->addText( + fl, + /**/ "handlep__V->trace(static_cast(tfp), levels, options);\n"); + txtp->addText(fl, "}\n\n"); + } + txtp->addText(fl, "}\n"); m_cfilep->tblockp(txtp); } diff --git a/src/V3Task.cpp b/src/V3Task.cpp index 3b6177bcc..b9aa8ebc7 100644 --- a/src/V3Task.cpp +++ b/src/V3Task.cpp @@ -933,8 +933,8 @@ private: : nodep->dpiTask() ? "int" : ""; AstCFunc* const funcp = new AstCFunc(nodep->fileline(), nodep->cname(), m_scopep, rtnType); - funcp->dpiImportPrototype(true); funcp->dpiContext(nodep->dpiContext()); + funcp->dpiImportPrototype(true); funcp->dontCombine(true); funcp->entryPoint(false); funcp->isMethod(false); @@ -1201,9 +1201,10 @@ private: cfuncp->dontCombine(!nodep->dpiImport()); cfuncp->entryPoint(!nodep->dpiImport()); cfuncp->funcPublic(nodep->taskPublic()); + cfuncp->dpiContext(nodep->dpiContext()); cfuncp->dpiExportImpl(nodep->dpiExport()); cfuncp->dpiImportWrapper(nodep->dpiImport()); - cfuncp->dpiContext(nodep->dpiContext()); + cfuncp->dpiTraceInit(nodep->dpiTraceInit()); if (nodep->dpiImport() || nodep->dpiExport()) { cfuncp->isStatic(true); cfuncp->isLoose(true); diff --git a/src/verilog.l b/src/verilog.l index 166d9b0f3..31cf6481f 100644 --- a/src/verilog.l +++ b/src/verilog.l @@ -745,6 +745,7 @@ vnum {vnum1}|{vnum2}|{vnum3}|{vnum4}|{vnum5} "/*verilator split_var*/" { FL; return yVL_SPLIT_VAR; } "/*verilator tag"[^*]*"*/" { FL; yylval.strp = PARSEP->newString(V3ParseImp::lexParseTag(yytext)); return yVL_TAG; } + "/*verilator trace_init_task*/" { FL; return yVL_TRACE_INIT_TASK; } "/*verilator tracing_off*/" { FL_FWD; PARSEP->lexFileline()->tracingOn(false); FL_BRK; } "/*verilator tracing_on*/" { FL_FWD; PARSEP->lexFileline()->tracingOn(true); FL_BRK; } diff --git a/src/verilog.y b/src/verilog.y index 18779d05e..2238e184a 100644 --- a/src/verilog.y +++ b/src/verilog.y @@ -829,6 +829,7 @@ BISONPRE_VERSION(3.7,%define api.header.include {"V3ParseBison.h"}) %token yVL_SFORMAT "/*verilator sformat*/" %token yVL_SPLIT_VAR "/*verilator split_var*/" %token yVL_TAG "/*verilator tag*/" +%token yVL_TRACE_INIT_TASK "/*verilator trace_init_task*/" %token yP_TICK "'" %token yP_TICKBRA "'{" @@ -4125,16 +4126,24 @@ array_methodWith: ; dpi_import_export: // ==IEEE: dpi_import_export - yIMPORT yaSTRING dpi_tf_import_propertyE dpi_importLabelE function_prototype ';' - { $$ = $5; if (*$4 != "") $5->cname(*$4); - $5->dpiContext($3==iprop_CONTEXT); $5->pure($3==iprop_PURE); - $5->dpiImport(true); GRAMMARP->checkDpiVer($1,*$2); v3Global.dpi(true); + yIMPORT yaSTRING dpi_tf_import_propertyE dpi_importLabelE function_prototype dpi_tf_TraceInitE ';' + { $$ = $5; + if (*$4 != "") $5->cname(*$4); + $5->dpiContext($3 == iprop_CONTEXT); + $5->pure($3 == iprop_PURE); + $5->dpiImport(true); + $5->dpiTraceInit($6); + GRAMMARP->checkDpiVer($1, *$2); v3Global.dpi(true); if ($$->prettyName()[0]=='$') SYMP->reinsert($$,nullptr,$$->prettyName()); // For $SysTF overriding SYMP->reinsert($$); } | yIMPORT yaSTRING dpi_tf_import_propertyE dpi_importLabelE task_prototype ';' - { $$ = $5; if (*$4 != "") $5->cname(*$4); - $5->dpiContext($3==iprop_CONTEXT); $5->pure($3==iprop_PURE); - $5->dpiImport(true); $5->dpiTask(true); GRAMMARP->checkDpiVer($1,*$2); v3Global.dpi(true); + { $$ = $5; + if (*$4 != "") $5->cname(*$4); + $5->dpiContext($3 == iprop_CONTEXT); + $5->pure($3 == iprop_PURE); + $5->dpiImport(true); + $5->dpiTask(true); + GRAMMARP->checkDpiVer($1, *$2); v3Global.dpi(true); if ($$->prettyName()[0]=='$') SYMP->reinsert($$,nullptr,$$->prettyName()); // For $SysTF overriding SYMP->reinsert($$); } | yEXPORT yaSTRING dpi_importLabelE yFUNCTION idAny ';' @@ -4156,6 +4165,12 @@ dpi_tf_import_propertyE: // IEEE: [ dpi_function_import_property + dpi_ta | yPURE { $$ = iprop_PURE; } ; +dpi_tf_TraceInitE: // Verilator extension + /* empty */ { $$ = false; } + | yVL_TRACE_INIT_TASK { $$ = true; $$ = $1; } + ; + + //************************************************ // Expressions // diff --git a/test_regress/t/t_hier_block_trace.out b/test_regress/t/t_hier_block_trace.out index 91473c385..cd600aaa9 100644 --- a/test_regress/t/t_hier_block_trace.out +++ b/test_regress/t/t_hier_block_trace.out @@ -1,5 +1,5 @@ $version Generated by VerilatedVcd $end -$date Sun Nov 14 10:12:01 2021 $end +$date Sat Nov 27 16:51:43 2021 $end $timescale 1ps $end $scope module top $end @@ -56,6 +56,963 @@ $timescale 1ps $end $upscope $end $upscope $end $upscope $end + $scope module top.t.i_delay0 $end + $var wire 1 - clk $end + $var wire 8 . in [7:0] $end + $var wire 8 / out [7:0] $end + $scope module delay_2 $end + $var wire 32 2 WIDTH [31:0] $end + $var wire 1 - clk $end + $var wire 8 . in [7:0] $end + $var wire 8 / out [7:0] $end + $var wire 8 0 tmp [7:0] $end + $scope module genblk1 $end + $scope module i_delay $end + $var wire 32 3 N [31:0] $end + $var wire 32 2 WIDTH [31:0] $end + $var wire 1 - clk $end + $var wire 8 0 in [7:0] $end + $var wire 8 / out [7:0] $end + $var wire 8 1 tmp [7:0] $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_delay1 $end + $var wire 1 8 clk $end + $var wire 8 9 in [7:0] $end + $var wire 8 : out [7:0] $end + $scope module delay_9 $end + $var wire 32 ; WIDTH [31:0] $end + $var wire 1 8 clk $end + $var wire 8 9 in [7:0] $end + $var wire 8 : out [7:0] $end + $var wire 8 5 tmp [7:0] $end + $scope module genblk1 $end + $scope module i_delay $end + $var wire 32 < N [31:0] $end + $var wire 32 ; WIDTH [31:0] $end + $var wire 1 8 clk $end + $var wire 8 5 in [7:0] $end + $var wire 8 : out [7:0] $end + $var wire 8 6 tmp [7:0] $end + $scope module genblk1 $end + $scope module i_delay $end + $var wire 32 = N [31:0] $end + $var wire 32 ; WIDTH [31:0] $end + $var wire 1 8 clk $end + $var wire 8 6 in [7:0] $end + $var wire 8 : out [7:0] $end + $var wire 8 7 tmp [7:0] $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_sub0.i_sub0 $end + $var wire 1 ? clk $end + $var wire 8 @ in [7:0] $end + $var wire 8 A out [7:0] $end + $scope module sub0 $end + $var wire 1 ? clk $end + $var wire 8 B ff [7:0] $end + $var wire 8 @ in [7:0] $end + $var wire 8 A out [7:0] $end + $upscope $end + $upscope $end + $scope module top.t.i_sub1 $end + $var wire 1 D clk $end + $var wire 8 E in [7:0] $end + $var wire 8 F out [7:0] $end + $scope module sub1 $end + $var wire 1 D clk $end + $var wire 8 G ff [7:0] $end + $var wire 8 E in [7:0] $end + $var wire 8 F out [7:0] $end + $upscope $end + $upscope $end + $scope module top.t.i_sub2 $end + $var wire 1 I clk $end + $var wire 8 J in [7:0] $end + $var wire 8 K out [7:0] $end + $scope module sub2 $end + $var wire 1 I clk $end + $var wire 8 L ff [7:0] $end + $var wire 8 J in [7:0] $end + $var wire 8 K out [7:0] $end + $scope module i_sub3 $end + $var wire 8 L in_wire [7:0] $end + $var wire 8 M out_1 [7:0] $end + $var wire 8 N out_2 [7:0] $end + $scope module i_sub3 $end + $var wire 1 I clk $end + $var wire 8 L in [7:0] $end + $var wire 8 M out [7:0] $end + $upscope $end + $scope module i_sub3_2 $end + $var wire 1 I clk $end + $var wire 8 L in [7:0] $end + $var wire 8 N out [7:0] $end + $upscope $end + $scope interface in $end + $var wire 1 I clk $end + $var wire 8 L data [7:0] $end + $upscope $end + $scope interface out $end + $var wire 1 I clk $end + $var wire 8 M data [7:0] $end + $upscope $end + $upscope $end + $scope interface in_ifs $end + $var wire 1 I clk $end + $var wire 8 L data [7:0] $end + $upscope $end + $scope interface out_ifs $end + $var wire 1 I clk $end + $var wire 8 M data [7:0] $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_sub2.sub2.i_sub3.i_sub3 $end + $var wire 1 P clk $end + $var wire 8 Q in [7:0] $end + $var wire 8 R out [7:0] $end + $scope module sub3_c $end + $var wire 32 V UNPACKED_ARRAY[0] [31:0] $end + $var wire 32 W UNPACKED_ARRAY[1] [31:0] $end + $var wire 1 P clk $end + $var wire 8 S ff [7:0] $end + $var wire 8 Q in [7:0] $end + $var wire 8 R out [7:0] $end + $var wire 8 T out4 [7:0] $end + $var wire 8 U out4_2 [7:0] $end + $scope module i_sub4_0 $end + $var wire 1 P clk $end + $var wire 8 S in [7:0] $end + $var wire 8 T out [7:0] $end + $upscope $end + $scope module i_sub4_1 $end + $var wire 1 P clk $end + $var wire 8 S in [7:0] $end + $var wire 8 U out [7:0] $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_sub2.sub2.i_sub3.i_sub3.sub3_c.i_sub4_0 $end + $var wire 1 ! out [7:0] $end + $scope module sub4_2 $end + $var wire 1 ! out [7:0] $end + $var wire 128 Z sub5_in[0][0] [127:0] $end + $var wire 128 ^ sub5_in[0][1] [127:0] $end + $var wire 128 b sub5_in[0][2] [127:0] $end + $var wire 128 f sub5_in[1][0] [127:0] $end + $var wire 128 j sub5_in[1][1] [127:0] $end + $var wire 128 n sub5_in[1][2] [127:0] $end + $var wire 8 0! sub5_out[0][0] [7:0] $end + $var wire 8 1! sub5_out[0][1] [7:0] $end + $var wire 8 2! sub5_out[0][2] [7:0] $end + $var wire 8 3! sub5_out[1][0] [7:0] $end + $var wire 8 4! sub5_out[1][1] [7:0] $end + $var wire 8 5! sub5_out[1][2] [7:0] $end + $scope module i_sub5 $end + $var wire 1 & UNPACKED_ARRAY[1] [31:0] $end + $var wire 16 ?& UNUSED [15:0] $end + $var wire 1 7& clk $end + $var wire 8 :& ff [7:0] $end + $var wire 8 8& in [7:0] $end + $var wire 8 9& out [7:0] $end + $var wire 8 ;& out4 [7:0] $end + $var wire 8 <& out4_2 [7:0] $end + $scope module i_sub4_0 $end + $var wire 1 7& clk $end + $var wire 8 :& in [7:0] $end + $var wire 8 ;& out [7:0] $end + $upscope $end + $scope module i_sub4_1 $end + $var wire 1 7& clk $end + $var wire 8 :& in [7:0] $end + $var wire 8 <& out [7:0] $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_sub3.sub3_d.i_sub4_0 $end + $var wire 1 $' clk $end + $var wire 8 %' in [7:0] $end + $var wire 8 &' out [7:0] $end + $scope module sub4_2 $end + $var wire 1 $' clk $end + $var wire 32 Z& count [31:0] $end + $var wire 8 A& ff [7:0] $end + $var wire 8 %' in [7:0] $end + $var wire 8 &' out [7:0] $end + $var wire 128 B& sub5_in[0][0] [127:0] $end + $var wire 128 F& sub5_in[0][1] [127:0] $end + $var wire 128 J& sub5_in[0][2] [127:0] $end + $var wire 128 N& sub5_in[1][0] [127:0] $end + $var wire 128 R& sub5_in[1][1] [127:0] $end + $var wire 128 V& sub5_in[1][2] [127:0] $end + $var wire 8 v& sub5_out[0][0] [7:0] $end + $var wire 8 w& sub5_out[0][1] [7:0] $end + $var wire 8 x& sub5_out[0][2] [7:0] $end + $var wire 8 y& sub5_out[1][0] [7:0] $end + $var wire 8 z& sub5_out[1][1] [7:0] $end + $var wire 8 {& sub5_out[1][2] [7:0] $end + $scope module i_sub5 $end + $var wire 1 $' clk $end + $var wire 128 ^& in[0][0] [127:0] $end + $var wire 128 b& in[0][1] [127:0] $end + $var wire 128 f& in[0][2] [127:0] $end + $var wire 128 j& in[1][0] [127:0] $end + $var wire 128 n& in[1][1] [127:0] $end + $var wire 128 r& in[1][2] [127:0] $end + $var wire 8 |& out[0][0] [7:0] $end + $var wire 8 }& out[0][1] [7:0] $end + $var wire 8 ~& out[0][2] [7:0] $end + $var wire 8 !' out[1][0] [7:0] $end + $var wire 8 "' out[1][1] [7:0] $end + $var wire 8 #' out[1][2] [7:0] $end + $upscope $end + $scope module unnamedblk1 $end + $var wire 32 [& i [31:0] $end + $scope module unnamedblk2 $end + $var wire 32 \& j [31:0] $end + $scope module unnamedblk3 $end + $var wire 8 ]& exp [7:0] $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_sub3.sub3_d.i_sub4_0.sub4_2.i_sub5 $end + $var wire 1 ?' clk $end + $var wire 128 @' in[0][0] [127:0] $end + $var wire 128 D' in[0][1] [127:0] $end + $var wire 128 H' in[0][2] [127:0] $end + $var wire 128 L' in[1][0] [127:0] $end + $var wire 128 P' in[1][1] [127:0] $end + $var wire 128 T' in[1][2] [127:0] $end + $var wire 8 X' out[0][0] [7:0] $end + $var wire 8 Y' out[0][1] [7:0] $end + $var wire 8 Z' out[0][2] [7:0] $end + $var wire 8 [' out[1][0] [7:0] $end + $var wire 8 \' out[1][1] [7:0] $end + $var wire 8 ]' out[1][2] [7:0] $end + $scope module sub5 $end + $var wire 1 ?' clk $end + $var wire 32 8' count [31:0] $end + $var wire 128 @' in[0][0] [127:0] $end + $var wire 128 D' in[0][1] [127:0] $end + $var wire 128 H' in[0][2] [127:0] $end + $var wire 128 L' in[1][0] [127:0] $end + $var wire 128 P' in[1][1] [127:0] $end + $var wire 128 T' in[1][2] [127:0] $end + $var wire 8 X' out[0][0] [7:0] $end + $var wire 8 Y' out[0][1] [7:0] $end + $var wire 8 Z' out[0][2] [7:0] $end + $var wire 8 [' out[1][0] [7:0] $end + $var wire 8 \' out[1][1] [7:0] $end + $var wire 8 ]' out[1][2] [7:0] $end + $var wire 8 (' val0[0] [7:0] $end + $var wire 8 )' val0[1] [7:0] $end + $var wire 8 *' val1[0] [7:0] $end + $var wire 8 +' val1[1] [7:0] $end + $var wire 8 ,' val2[0] [7:0] $end + $var wire 8 -' val2[1] [7:0] $end + $var wire 8 .' val3[0] [7:0] $end + $var wire 8 /' val3[1] [7:0] $end + $scope module i_sub0 $end + $var wire 32 ^' P0 [31:0] $end + $var wire 32 _' P1 [31:0] $end + $var wire 8 0' out[0] [7:0] $end + $var wire 8 1' out[1] [7:0] $end + $upscope $end + $scope module i_sub1 $end + $var wire 32 ^' P0 [31:0] $end + $var wire 32 _' P1 [31:0] $end + $var wire 8 2' out[0] [7:0] $end + $var wire 8 3' out[1] [7:0] $end + $upscope $end + $scope module i_sub2 $end + $var wire 32 ^' P0 [31:0] $end + $var wire 32 _' P1 [31:0] $end + $var wire 8 4' out[0] [7:0] $end + $var wire 8 5' out[1] [7:0] $end + $upscope $end + $scope module i_sub3 $end + $var wire 8 6' out[0] [7:0] $end + $var wire 8 7' out[1] [7:0] $end + $upscope $end + $scope module unnamedblk1 $end + $var wire 32 9' i [31:0] $end + $scope module unnamedblk2 $end + $var wire 32 :' j [31:0] $end + $scope module unnamedblk3 $end + $var wire 128 ;' exp [127:0] $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_sub3.sub3_d.i_sub4_0.sub4_2.i_sub5.sub5.i_sub3 $end + $var wire 8 a' out[0] [7:0] $end + $var wire 8 b' out[1] [7:0] $end + $scope module sub6_9 $end + $var wire 32 c' P0 [31:0] $end + $var wire 8 a' out[0] [7:0] $end + $var wire 8 b' out[1] [7:0] $end + $upscope $end + $upscope $end + $scope module top.t.i_sub3.sub3_d.i_sub4_1 $end + $var wire 1 H( clk $end + $var wire 8 I( in [7:0] $end + $var wire 8 J( out [7:0] $end + $scope module sub4_b $end + $var wire 1 H( clk $end + $var wire 32 ~' count [31:0] $end + $var wire 8 e' ff [7:0] $end + $var wire 8 I( in [7:0] $end + $var wire 8 J( out [7:0] $end + $var wire 128 f' sub5_in[0][0] [127:0] $end + $var wire 128 j' sub5_in[0][1] [127:0] $end + $var wire 128 n' sub5_in[0][2] [127:0] $end + $var wire 128 r' sub5_in[1][0] [127:0] $end + $var wire 128 v' sub5_in[1][1] [127:0] $end + $var wire 128 z' sub5_in[1][2] [127:0] $end + $var wire 8 <( sub5_out[0][0] [7:0] $end + $var wire 8 =( sub5_out[0][1] [7:0] $end + $var wire 8 >( sub5_out[0][2] [7:0] $end + $var wire 8 ?( sub5_out[1][0] [7:0] $end + $var wire 8 @( sub5_out[1][1] [7:0] $end + $var wire 8 A( sub5_out[1][2] [7:0] $end + $scope module i_sub5 $end + $var wire 1 H( clk $end + $var wire 128 $( in[0][0] [127:0] $end + $var wire 128 (( in[0][1] [127:0] $end + $var wire 128 ,( in[0][2] [127:0] $end + $var wire 128 0( in[1][0] [127:0] $end + $var wire 128 4( in[1][1] [127:0] $end + $var wire 128 8( in[1][2] [127:0] $end + $var wire 8 B( out[0][0] [7:0] $end + $var wire 8 C( out[0][1] [7:0] $end + $var wire 8 D( out[0][2] [7:0] $end + $var wire 8 E( out[1][0] [7:0] $end + $var wire 8 F( out[1][1] [7:0] $end + $var wire 8 G( out[1][2] [7:0] $end + $upscope $end + $scope module unnamedblk1 $end + $var wire 32 !( i [31:0] $end + $scope module unnamedblk2 $end + $var wire 32 "( j [31:0] $end + $scope module unnamedblk3 $end + $var wire 8 #( exp [7:0] $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_sub3.sub3_d.i_sub4_1.sub4_b.i_sub5 $end + $var wire 1 c( clk $end + $var wire 128 d( in[0][0] [127:0] $end + $var wire 128 h( in[0][1] [127:0] $end + $var wire 128 l( in[0][2] [127:0] $end + $var wire 128 p( in[1][0] [127:0] $end + $var wire 128 t( in[1][1] [127:0] $end + $var wire 128 x( in[1][2] [127:0] $end + $var wire 8 |( out[0][0] [7:0] $end + $var wire 8 }( out[0][1] [7:0] $end + $var wire 8 ~( out[0][2] [7:0] $end + $var wire 8 !) out[1][0] [7:0] $end + $var wire 8 ") out[1][1] [7:0] $end + $var wire 8 #) out[1][2] [7:0] $end + $scope module sub5 $end + $var wire 1 c( clk $end + $var wire 32 \( count [31:0] $end + $var wire 128 d( in[0][0] [127:0] $end + $var wire 128 h( in[0][1] [127:0] $end + $var wire 128 l( in[0][2] [127:0] $end + $var wire 128 p( in[1][0] [127:0] $end + $var wire 128 t( in[1][1] [127:0] $end + $var wire 128 x( in[1][2] [127:0] $end + $var wire 8 |( out[0][0] [7:0] $end + $var wire 8 }( out[0][1] [7:0] $end + $var wire 8 ~( out[0][2] [7:0] $end + $var wire 8 !) out[1][0] [7:0] $end + $var wire 8 ") out[1][1] [7:0] $end + $var wire 8 #) out[1][2] [7:0] $end + $var wire 8 L( val0[0] [7:0] $end + $var wire 8 M( val0[1] [7:0] $end + $var wire 8 N( val1[0] [7:0] $end + $var wire 8 O( val1[1] [7:0] $end + $var wire 8 P( val2[0] [7:0] $end + $var wire 8 Q( val2[1] [7:0] $end + $var wire 8 R( val3[0] [7:0] $end + $var wire 8 S( val3[1] [7:0] $end + $scope module i_sub0 $end + $var wire 32 $) P0 [31:0] $end + $var wire 32 %) P1 [31:0] $end + $var wire 8 T( out[0] [7:0] $end + $var wire 8 U( out[1] [7:0] $end + $upscope $end + $scope module i_sub1 $end + $var wire 32 $) P0 [31:0] $end + $var wire 32 %) P1 [31:0] $end + $var wire 8 V( out[0] [7:0] $end + $var wire 8 W( out[1] [7:0] $end + $upscope $end + $scope module i_sub2 $end + $var wire 32 $) P0 [31:0] $end + $var wire 32 %) P1 [31:0] $end + $var wire 8 X( out[0] [7:0] $end + $var wire 8 Y( out[1] [7:0] $end + $upscope $end + $scope module i_sub3 $end + $var wire 8 Z( out[0] [7:0] $end + $var wire 8 [( out[1] [7:0] $end + $upscope $end + $scope module unnamedblk1 $end + $var wire 32 ]( i [31:0] $end + $scope module unnamedblk2 $end + $var wire 32 ^( j [31:0] $end + $scope module unnamedblk3 $end + $var wire 128 _( exp [127:0] $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_sub3.sub3_d.i_sub4_1.sub4_b.i_sub5.sub5.i_sub3 $end + $var wire 8 ') out[0] [7:0] $end + $var wire 8 () out[1] [7:0] $end + $scope module sub6_9 $end + $var wire 32 )) P0 [31:0] $end + $var wire 8 ') out[0] [7:0] $end + $var wire 8 () out[1] [7:0] $end + $upscope $end + $upscope $end + $scope module top.t.i_sub3_2 $end + $var wire 1 C# clk $end + $var wire 8 D# in [7:0] $end + $var wire 8 E# out [7:0] $end + $scope module sub3_2 $end + $var wire 32 I# UNPACKED_ARRAY[0] [31:0] $end + $var wire 32 J# UNPACKED_ARRAY[1] [31:0] $end + $var wire 16 K# UNUSED [15:0] $end + $var wire 1 C# clk $end + $var wire 8 F# ff [7:0] $end + $var wire 8 D# in [7:0] $end + $var wire 8 E# out [7:0] $end + $var wire 8 G# out4 [7:0] $end + $var wire 8 H# out4_2 [7:0] $end + $scope module i_sub4_0 $end + $var wire 1 C# clk $end + $var wire 8 F# in [7:0] $end + $var wire 8 G# out [7:0] $end + $upscope $end + $scope module i_sub4_1 $end + $var wire 1 C# clk $end + $var wire 8 F# in [7:0] $end + $var wire 8 H# out [7:0] $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_sub3_2.sub3_2.i_sub4_0 $end + $var wire 1 0$ clk $end + $var wire 8 1$ in [7:0] $end + $var wire 8 2$ out [7:0] $end + $scope module sub4_2 $end + $var wire 1 0$ clk $end + $var wire 32 f# count [31:0] $end + $var wire 8 M# ff [7:0] $end + $var wire 8 1$ in [7:0] $end + $var wire 8 2$ out [7:0] $end + $var wire 128 N# sub5_in[0][0] [127:0] $end + $var wire 128 R# sub5_in[0][1] [127:0] $end + $var wire 128 V# sub5_in[0][2] [127:0] $end + $var wire 128 Z# sub5_in[1][0] [127:0] $end + $var wire 128 ^# sub5_in[1][1] [127:0] $end + $var wire 128 b# sub5_in[1][2] [127:0] $end + $var wire 8 $$ sub5_out[0][0] [7:0] $end + $var wire 8 %$ sub5_out[0][1] [7:0] $end + $var wire 8 &$ sub5_out[0][2] [7:0] $end + $var wire 8 '$ sub5_out[1][0] [7:0] $end + $var wire 8 ($ sub5_out[1][1] [7:0] $end + $var wire 8 )$ sub5_out[1][2] [7:0] $end + $scope module i_sub5 $end + $var wire 1 0$ clk $end + $var wire 128 j# in[0][0] [127:0] $end + $var wire 128 n# in[0][1] [127:0] $end + $var wire 128 r# in[0][2] [127:0] $end + $var wire 128 v# in[1][0] [127:0] $end + $var wire 128 z# in[1][1] [127:0] $end + $var wire 128 ~# in[1][2] [127:0] $end + $var wire 8 *$ out[0][0] [7:0] $end + $var wire 8 +$ out[0][1] [7:0] $end + $var wire 8 ,$ out[0][2] [7:0] $end + $var wire 8 -$ out[1][0] [7:0] $end + $var wire 8 .$ out[1][1] [7:0] $end + $var wire 8 /$ out[1][2] [7:0] $end + $upscope $end + $scope module unnamedblk1 $end + $var wire 32 g# i [31:0] $end + $scope module unnamedblk2 $end + $var wire 32 h# j [31:0] $end + $scope module unnamedblk3 $end + $var wire 8 i# exp [7:0] $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_sub3_2.sub3_2.i_sub4_0.sub4_2.i_sub5 $end + $var wire 1 K$ clk $end + $var wire 128 L$ in[0][0] [127:0] $end + $var wire 128 P$ in[0][1] [127:0] $end + $var wire 128 T$ in[0][2] [127:0] $end + $var wire 128 X$ in[1][0] [127:0] $end + $var wire 128 \$ in[1][1] [127:0] $end + $var wire 128 `$ in[1][2] [127:0] $end + $var wire 8 d$ out[0][0] [7:0] $end + $var wire 8 e$ out[0][1] [7:0] $end + $var wire 8 f$ out[0][2] [7:0] $end + $var wire 8 g$ out[1][0] [7:0] $end + $var wire 8 h$ out[1][1] [7:0] $end + $var wire 8 i$ out[1][2] [7:0] $end + $scope module sub5 $end + $var wire 1 K$ clk $end + $var wire 32 D$ count [31:0] $end + $var wire 128 L$ in[0][0] [127:0] $end + $var wire 128 P$ in[0][1] [127:0] $end + $var wire 128 T$ in[0][2] [127:0] $end + $var wire 128 X$ in[1][0] [127:0] $end + $var wire 128 \$ in[1][1] [127:0] $end + $var wire 128 `$ in[1][2] [127:0] $end + $var wire 8 d$ out[0][0] [7:0] $end + $var wire 8 e$ out[0][1] [7:0] $end + $var wire 8 f$ out[0][2] [7:0] $end + $var wire 8 g$ out[1][0] [7:0] $end + $var wire 8 h$ out[1][1] [7:0] $end + $var wire 8 i$ out[1][2] [7:0] $end + $var wire 8 4$ val0[0] [7:0] $end + $var wire 8 5$ val0[1] [7:0] $end + $var wire 8 6$ val1[0] [7:0] $end + $var wire 8 7$ val1[1] [7:0] $end + $var wire 8 8$ val2[0] [7:0] $end + $var wire 8 9$ val2[1] [7:0] $end + $var wire 8 :$ val3[0] [7:0] $end + $var wire 8 ;$ val3[1] [7:0] $end + $scope module i_sub0 $end + $var wire 32 j$ P0 [31:0] $end + $var wire 32 k$ P1 [31:0] $end + $var wire 8 <$ out[0] [7:0] $end + $var wire 8 =$ out[1] [7:0] $end + $upscope $end + $scope module i_sub1 $end + $var wire 32 j$ P0 [31:0] $end + $var wire 32 k$ P1 [31:0] $end + $var wire 8 >$ out[0] [7:0] $end + $var wire 8 ?$ out[1] [7:0] $end + $upscope $end + $scope module i_sub2 $end + $var wire 32 j$ P0 [31:0] $end + $var wire 32 k$ P1 [31:0] $end + $var wire 8 @$ out[0] [7:0] $end + $var wire 8 A$ out[1] [7:0] $end + $upscope $end + $scope module i_sub3 $end + $var wire 8 B$ out[0] [7:0] $end + $var wire 8 C$ out[1] [7:0] $end + $upscope $end + $scope module unnamedblk1 $end + $var wire 32 E$ i [31:0] $end + $scope module unnamedblk2 $end + $var wire 32 F$ j [31:0] $end + $scope module unnamedblk3 $end + $var wire 128 G$ exp [127:0] $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_sub3_2.sub3_2.i_sub4_0.sub4_2.i_sub5.sub5.i_sub3 $end + $var wire 8 m$ out[0] [7:0] $end + $var wire 8 n$ out[1] [7:0] $end + $scope module sub6_9 $end + $var wire 32 o$ P0 [31:0] $end + $var wire 8 m$ out[0] [7:0] $end + $var wire 8 n$ out[1] [7:0] $end + $upscope $end + $upscope $end + $scope module top.t.i_sub3_2.sub3_2.i_sub4_1 $end + $var wire 1 T% clk $end + $var wire 8 U% in [7:0] $end + $var wire 8 V% out [7:0] $end + $scope module sub4_b $end + $var wire 1 T% clk $end + $var wire 32 ,% count [31:0] $end + $var wire 8 q$ ff [7:0] $end + $var wire 8 U% in [7:0] $end + $var wire 8 V% out [7:0] $end + $var wire 128 r$ sub5_in[0][0] [127:0] $end + $var wire 128 v$ sub5_in[0][1] [127:0] $end + $var wire 128 z$ sub5_in[0][2] [127:0] $end + $var wire 128 ~$ sub5_in[1][0] [127:0] $end + $var wire 128 $% sub5_in[1][1] [127:0] $end + $var wire 128 (% sub5_in[1][2] [127:0] $end + $var wire 8 H% sub5_out[0][0] [7:0] $end + $var wire 8 I% sub5_out[0][1] [7:0] $end + $var wire 8 J% sub5_out[0][2] [7:0] $end + $var wire 8 K% sub5_out[1][0] [7:0] $end + $var wire 8 L% sub5_out[1][1] [7:0] $end + $var wire 8 M% sub5_out[1][2] [7:0] $end + $scope module i_sub5 $end + $var wire 1 T% clk $end + $var wire 128 0% in[0][0] [127:0] $end + $var wire 128 4% in[0][1] [127:0] $end + $var wire 128 8% in[0][2] [127:0] $end + $var wire 128 <% in[1][0] [127:0] $end + $var wire 128 @% in[1][1] [127:0] $end + $var wire 128 D% in[1][2] [127:0] $end + $var wire 8 N% out[0][0] [7:0] $end + $var wire 8 O% out[0][1] [7:0] $end + $var wire 8 P% out[0][2] [7:0] $end + $var wire 8 Q% out[1][0] [7:0] $end + $var wire 8 R% out[1][1] [7:0] $end + $var wire 8 S% out[1][2] [7:0] $end + $upscope $end + $scope module unnamedblk1 $end + $var wire 32 -% i [31:0] $end + $scope module unnamedblk2 $end + $var wire 32 .% j [31:0] $end + $scope module unnamedblk3 $end + $var wire 8 /% exp [7:0] $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_sub3_2.sub3_2.i_sub4_1.sub4_b.i_sub5 $end + $var wire 1 o% clk $end + $var wire 128 p% in[0][0] [127:0] $end + $var wire 128 t% in[0][1] [127:0] $end + $var wire 128 x% in[0][2] [127:0] $end + $var wire 128 |% in[1][0] [127:0] $end + $var wire 128 "& in[1][1] [127:0] $end + $var wire 128 && in[1][2] [127:0] $end + $var wire 8 *& out[0][0] [7:0] $end + $var wire 8 +& out[0][1] [7:0] $end + $var wire 8 ,& out[0][2] [7:0] $end + $var wire 8 -& out[1][0] [7:0] $end + $var wire 8 .& out[1][1] [7:0] $end + $var wire 8 /& out[1][2] [7:0] $end + $scope module sub5 $end + $var wire 1 o% clk $end + $var wire 32 h% count [31:0] $end + $var wire 128 p% in[0][0] [127:0] $end + $var wire 128 t% in[0][1] [127:0] $end + $var wire 128 x% in[0][2] [127:0] $end + $var wire 128 |% in[1][0] [127:0] $end + $var wire 128 "& in[1][1] [127:0] $end + $var wire 128 && in[1][2] [127:0] $end + $var wire 8 *& out[0][0] [7:0] $end + $var wire 8 +& out[0][1] [7:0] $end + $var wire 8 ,& out[0][2] [7:0] $end + $var wire 8 -& out[1][0] [7:0] $end + $var wire 8 .& out[1][1] [7:0] $end + $var wire 8 /& out[1][2] [7:0] $end + $var wire 8 X% val0[0] [7:0] $end + $var wire 8 Y% val0[1] [7:0] $end + $var wire 8 Z% val1[0] [7:0] $end + $var wire 8 [% val1[1] [7:0] $end + $var wire 8 \% val2[0] [7:0] $end + $var wire 8 ]% val2[1] [7:0] $end + $var wire 8 ^% val3[0] [7:0] $end + $var wire 8 _% val3[1] [7:0] $end + $scope module i_sub0 $end + $var wire 32 0& P0 [31:0] $end + $var wire 32 1& P1 [31:0] $end + $var wire 8 `% out[0] [7:0] $end + $var wire 8 a% out[1] [7:0] $end + $upscope $end + $scope module i_sub1 $end + $var wire 32 0& P0 [31:0] $end + $var wire 32 1& P1 [31:0] $end + $var wire 8 b% out[0] [7:0] $end + $var wire 8 c% out[1] [7:0] $end + $upscope $end + $scope module i_sub2 $end + $var wire 32 0& P0 [31:0] $end + $var wire 32 1& P1 [31:0] $end + $var wire 8 d% out[0] [7:0] $end + $var wire 8 e% out[1] [7:0] $end + $upscope $end + $scope module i_sub3 $end + $var wire 8 f% out[0] [7:0] $end + $var wire 8 g% out[1] [7:0] $end + $upscope $end + $scope module unnamedblk1 $end + $var wire 32 i% i [31:0] $end + $scope module unnamedblk2 $end + $var wire 32 j% j [31:0] $end + $scope module unnamedblk3 $end + $var wire 128 k% exp [127:0] $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $upscope $end + $scope module top.t.i_sub3_2.sub3_2.i_sub4_1.sub4_b.i_sub5.sub5.i_sub3 $end + $var wire 8 3& out[0] [7:0] $end + $var wire 8 4& out[1] [7:0] $end + $scope module sub6_9 $end + $var wire 32 5& P0 [31:0] $end + $var wire 8 3& out[0] [7:0] $end + $var wire 8 4& out[1] [7:0] $end + $upscope $end + $upscope $end $enddefinitions $end @@ -69,6 +1026,482 @@ b00000000 ( 0) b00000000 * b00000000000000000000000000000000 + +0- +b00000000 . +b00000000 / +b00000000 0 +b00000000 1 +b00000000000000000000000000001000 2 +b00000000000000000000000000000001 3 +b00000000 5 +b00000000 6 +b00000000 7 +08 +b00000000 9 +b00000000 : +b00000000000000000000000000001000 ; +b00000000000000000000000000000010 < +b00000000000000000000000000000001 = +0? +b00000000 @ +b00000000 A +b00000000 B +0D +b00000000 E +b00000000 F +b00000000 G +0I +b00000000 J +b00000000 K +b00000000 L +b00000000 M +b00000000 N +0P +b00000000 Q +b00000000 R +b00000000 S +b00000000 T +b00000000 U +b00000000000000000000000000000000 V +b00000000000000000000000000000001 W +b00000000 Y +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 Z +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ^ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 f +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n +b00000000000000000000000000000000 r +b00000000000000000000000000000000 s +b00000000000000000000000000000000 t +b00000000 u +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ,! +b00000000 0! +b00000000 1! +b00000000 2! +b00000000 3! +b00000000 4! +b00000000 5! +b00000000 6! +b00000000 7! +b00000000 8! +b00000000 9! +b00000000 :! +b00000000 ;! +0! +b00000001 @! +b00000010 A! +b00000001 B! +b00000010 C! +b00000001 D! +b00000010 E! +b00000001 F! +b00000011 G! +b00000001 H! +b00000010 I! +b00000001 J! +b00000010 K! +b00000001 L! +b00000010 M! +b00000001 N! +b00000011 O! +b00000000000000000000000000000000 P! +b00000000000000000000000000000000 Q! +b00000000000000000000000000000000 R! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 S! +0W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 X! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l! +b00000000 p! +b00000000 q! +b00000000 r! +b00000000 s! +b00000000 t! +b00000000 u! +b00000000000000000000000000000001 v! +b00000000000000000000000000000010 w! +b00000001 y! +b00000011 z! +b00000000000000000000000000000001 {! +b00000000 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4" +b00000000000000000000000000000000 8" +b00000000000000000000000000000000 9" +b00000000000000000000000000000000 :" +b00000000 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 <" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P" +b00000000 T" +b00000000 U" +b00000000 V" +b00000000 W" +b00000000 X" +b00000000 Y" +b00000000 Z" +b00000000 [" +b00000000 \" +b00000000 ]" +b00000000 ^" +b00000000 _" +0`" +b00000000 a" +b00000000 b" +b00000001 d" +b00000010 e" +b00000001 f" +b00000010 g" +b00000001 h" +b00000010 i" +b00000001 j" +b00000011 k" +b00000001 l" +b00000010 m" +b00000001 n" +b00000010 o" +b00000001 p" +b00000010 q" +b00000001 r" +b00000011 s" +b00000000000000000000000000000000 t" +b00000000000000000000000000000000 u" +b00000000000000000000000000000000 v" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 w" +0{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2# +b00000000 6# +b00000000 7# +b00000000 8# +b00000000 9# +b00000000 :# +b00000000 ;# +b00000000000000000000000000000001 <# +b00000000000000000000000000000010 =# +b00000001 ?# +b00000011 @# +b00000000000000000000000000000001 A# +0C# +b00000000 D# +b00000000 E# +b00000000 F# +b00000000 G# +b00000000 H# +b00000000000000000000000000000000 I# +b00000000000000000000000000000001 J# +b1111111111111101 K# +b00000000 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 N# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b# +b00000000000000000000000000000000 f# +b00000000000000000000000000000000 g# +b00000000000000000000000000000000 h# +b00000000 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~# +b00000000 $$ +b00000000 %$ +b00000000 &$ +b00000000 '$ +b00000000 ($ +b00000000 )$ +b00000000 *$ +b00000000 +$ +b00000000 ,$ +b00000000 -$ +b00000000 .$ +b00000000 /$ +00$ +b00000000 1$ +b00000000 2$ +b00000001 4$ +b00000010 5$ +b00000001 6$ +b00000010 7$ +b00000001 8$ +b00000010 9$ +b00000001 :$ +b00000011 ;$ +b00000001 <$ +b00000010 =$ +b00000001 >$ +b00000010 ?$ +b00000001 @$ +b00000010 A$ +b00000001 B$ +b00000011 C$ +b00000000000000000000000000000000 D$ +b00000000000000000000000000000000 E$ +b00000000000000000000000000000000 F$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 G$ +0K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `$ +b00000000 d$ +b00000000 e$ +b00000000 f$ +b00000000 g$ +b00000000 h$ +b00000000 i$ +b00000000000000000000000000000001 j$ +b00000000000000000000000000000010 k$ +b00000001 m$ +b00000011 n$ +b00000000000000000000000000000001 o$ +b00000000 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (% +b00000000000000000000000000000000 ,% +b00000000000000000000000000000000 -% +b00000000000000000000000000000000 .% +b00000000 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D% +b00000000 H% +b00000000 I% +b00000000 J% +b00000000 K% +b00000000 L% +b00000000 M% +b00000000 N% +b00000000 O% +b00000000 P% +b00000000 Q% +b00000000 R% +b00000000 S% +0T% +b00000000 U% +b00000000 V% +b00000001 X% +b00000010 Y% +b00000001 Z% +b00000010 [% +b00000001 \% +b00000010 ]% +b00000001 ^% +b00000011 _% +b00000001 `% +b00000010 a% +b00000001 b% +b00000010 c% +b00000001 d% +b00000010 e% +b00000001 f% +b00000011 g% +b00000000000000000000000000000000 h% +b00000000000000000000000000000000 i% +b00000000000000000000000000000000 j% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 k% +0o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 p% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 && +b00000000 *& +b00000000 +& +b00000000 ,& +b00000000 -& +b00000000 .& +b00000000 /& +b00000000000000000000000000000001 0& +b00000000000000000000000000000010 1& +b00000001 3& +b00000011 4& +b00000000000000000000000000000001 5& +07& +b00000000 8& +b00000000 9& +b00000000 :& +b00000000 ;& +b00000000 <& +b00000000000000000000000000000000 =& +b00000000000000000000000000000001 >& +b1111111111111101 ?& +b00000000 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 B& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V& +b00000000000000000000000000000000 Z& +b00000000000000000000000000000000 [& +b00000000000000000000000000000000 \& +b00000000 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ^& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r& +b00000000 v& +b00000000 w& +b00000000 x& +b00000000 y& +b00000000 z& +b00000000 {& +b00000000 |& +b00000000 }& +b00000000 ~& +b00000000 !' +b00000000 "' +b00000000 #' +0$' +b00000000 %' +b00000000 &' +b00000001 (' +b00000010 )' +b00000001 *' +b00000010 +' +b00000001 ,' +b00000010 -' +b00000001 .' +b00000011 /' +b00000001 0' +b00000010 1' +b00000001 2' +b00000010 3' +b00000001 4' +b00000010 5' +b00000001 6' +b00000011 7' +b00000000000000000000000000000000 8' +b00000000000000000000000000000000 9' +b00000000000000000000000000000000 :' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ;' +0?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T' +b00000000 X' +b00000000 Y' +b00000000 Z' +b00000000 [' +b00000000 \' +b00000000 ]' +b00000000000000000000000000000001 ^' +b00000000000000000000000000000010 _' +b00000001 a' +b00000011 b' +b00000000000000000000000000000001 c' +b00000000 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 f' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z' +b00000000000000000000000000000000 ~' +b00000000000000000000000000000000 !( +b00000000000000000000000000000000 "( +b00000000 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8( +b00000000 <( +b00000000 =( +b00000000 >( +b00000000 ?( +b00000000 @( +b00000000 A( +b00000000 B( +b00000000 C( +b00000000 D( +b00000000 E( +b00000000 F( +b00000000 G( +0H( +b00000000 I( +b00000000 J( +b00000001 L( +b00000010 M( +b00000001 N( +b00000010 O( +b00000001 P( +b00000010 Q( +b00000001 R( +b00000011 S( +b00000001 T( +b00000010 U( +b00000001 V( +b00000010 W( +b00000001 X( +b00000010 Y( +b00000001 Z( +b00000011 [( +b00000000000000000000000000000000 \( +b00000000000000000000000000000000 ]( +b00000000000000000000000000000000 ^( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 _( +0c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 d( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x( +b00000000 |( +b00000000 }( +b00000000 ~( +b00000000 !) +b00000000 ") +b00000000 #) +b00000000000000000000000000000001 $) +b00000000000000000000000000000010 %) +b00000001 ') +b00000011 () +b00000000000000000000000000000001 )) #10 b00000001 $ b00000010 % @@ -76,8 +1509,192 @@ b00000010 & 1) b00000010 * b00000000000000000000000000000001 + +1- +b00000010 . +18 +1? +b00000010 @ +1D +b00000001 F +b00000001 G +1I +b00000001 J +b00000010 K +b00000010 L +b00000010 M +b00000010 N +1P +b00000010 Q +b00000010 R +b00000011 S +b00000010 T +b00000010 U +b00000010 Y +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 ^ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 b +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 f +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 j +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 n +b00000000000000000000000000000001 r +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 z +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 ~ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 $! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 (! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ,! +1! +b00000000000000000000000000000001 P! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 l! +b00000010 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 4" +b00000000000000000000000000000001 8" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 P" +1`" +b00000011 a" +b00000010 b" +b00000000000000000000000000000001 t" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 2# +1C# +b00000010 D# +b00000010 E# +b00000001 F# +b00000010 G# +b00000010 H# +b00000010 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 b# +b00000000000000000000000000000001 f# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ~# +10$ +b00000001 1$ +b00000010 2$ +b00000000000000000000000000000001 D$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 `$ +b00000010 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 (% +b00000000000000000000000000000001 ,% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 D% +1T% +b00000001 U% +b00000010 V% +b00000000000000000000000000000001 h% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 && +17& +b00000010 8& +b00000010 9& +b00000001 :& +b00000010 ;& +b00000010 <& +b00000010 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 V& +b00000000000000000000000000000001 Z& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 r& +1$' +b00000001 %' +b00000010 &' +b00000000000000000000000000000001 8' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 T' +b00000010 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 z' +b00000000000000000000000000000001 ~' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 8( +1H( +b00000001 I( +b00000010 J( +b00000000000000000000000000000001 \( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 x( #15 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000000010 P! +b00000000000000000000000000000010 Q! +b00000000000000000000000000000011 R! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l! +b00000110 p! +b00000101 q! +b00000100 r! +b00000011 s! +b00000010 t! +b00000001 u! +b00000101 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4" +b00000000000000000000000000000010 8" +b00000000000000000000000000000010 9" +b00000000000000000000000000000011 :" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P" +b00000110 T" +b00000101 U" +b00000100 V" +b00000011 W" +b00000010 X" +b00000001 Y" +b00000110 Z" +b00000101 [" +b00000100 \" +b00000011 ]" +b00000010 ^" +b00000001 _" +1`" +b00000101 a" +b00000101 b" +b00000000000000000000000000000010 t" +b00000000000000000000000000000010 u" +b00000000000000000000000000000011 v" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2# +b00000110 6# +b00000101 7# +b00000100 8# +b00000011 9# +b00000010 :# +b00000001 ;# +1C# +b00000101 D# +b00000011 E# +b00000011 F# +b00000011 G# +b00000011 H# +b00000011 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b# +b00000000000000000000000000000010 f# +b00000000000000000000000000000010 g# +b00000000000000000000000000000011 h# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~# +b00000110 $$ +b00000101 %$ +b00000100 &$ +b00000011 '$ +b00000010 ($ +b00000001 )$ +b00000110 *$ +b00000101 +$ +b00000100 ,$ +b00000011 -$ +b00000010 .$ +b00000001 /$ +10$ +b00000011 1$ +b00000011 2$ +b00000000000000000000000000000010 D$ +b00000000000000000000000000000010 E$ +b00000000000000000000000000000011 F$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `$ +b00000110 d$ +b00000101 e$ +b00000100 f$ +b00000011 g$ +b00000010 h$ +b00000001 i$ +b00000011 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (% +b00000000000000000000000000000010 ,% +b00000000000000000000000000000010 -% +b00000000000000000000000000000011 .% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D% +b00000110 H% +b00000101 I% +b00000100 J% +b00000011 K% +b00000010 L% +b00000001 M% +b00000110 N% +b00000101 O% +b00000100 P% +b00000011 Q% +b00000010 R% +b00000001 S% +1T% +b00000011 U% +b00000011 V% +b00000000000000000000000000000010 h% +b00000000000000000000000000000010 i% +b00000000000000000000000000000011 j% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 && +b00000110 *& +b00000101 +& +b00000100 ,& +b00000011 -& +b00000010 .& +b00000001 /& +17& +b00000101 8& +b00000011 9& +b00000011 :& +b00000011 ;& +b00000011 <& +b00000011 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V& +b00000000000000000000000000000010 Z& +b00000000000000000000000000000010 [& +b00000000000000000000000000000011 \& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r& +b00000110 v& +b00000101 w& +b00000100 x& +b00000011 y& +b00000010 z& +b00000001 {& +b00000110 |& +b00000101 }& +b00000100 ~& +b00000011 !' +b00000010 "' +b00000001 #' +1$' +b00000011 %' +b00000011 &' +b00000000000000000000000000000010 8' +b00000000000000000000000000000010 9' +b00000000000000000000000000000011 :' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T' +b00000110 X' +b00000101 Y' +b00000100 Z' +b00000011 [' +b00000010 \' +b00000001 ]' +b00000011 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z' +b00000000000000000000000000000010 ~' +b00000000000000000000000000000010 !( +b00000000000000000000000000000011 "( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8( +b00000110 <( +b00000101 =( +b00000100 >( +b00000011 ?( +b00000010 @( +b00000001 A( +b00000110 B( +b00000101 C( +b00000100 D( +b00000011 E( +b00000010 F( +b00000001 G( +1H( +b00000011 I( +b00000011 J( +b00000000000000000000000000000010 \( +b00000000000000000000000000000010 ]( +b00000000000000000000000000000011 ^( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x( +b00000110 |( +b00000101 }( +b00000100 ~( +b00000011 !) +b00000010 ") +b00000001 #) #25 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000000011 P! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 l! +b00000000 p! +b00000000 q! +b00000000 r! +b00000000 s! +b00000000 t! +b00000000 u! +b00000111 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 4" +b00000000000000000000000000000011 8" +b00000001 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 P" +b00000000 T" +b00000000 U" +b00000000 V" +b00000000 W" +b00000000 X" +b00000000 Y" +b00000000 Z" +b00000000 [" +b00000000 \" +b00000000 ]" +b00000000 ^" +b00000000 _" +1`" +b00000110 a" +b00000111 b" +b00000000000000000000000000000011 t" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 2# +b00000000 6# +b00000000 7# +b00000000 8# +b00000000 9# +b00000000 :# +b00000000 ;# +1C# +b00000111 D# +b00000101 E# +b00000110 F# +b00000101 G# +b00000101 H# +b00000101 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 b# +b00000000000000000000000000000011 f# +b00000001 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ~# +b00000000 $$ +b00000000 %$ +b00000000 &$ +b00000000 '$ +b00000000 ($ +b00000000 )$ +b00000000 *$ +b00000000 +$ +b00000000 ,$ +b00000000 -$ +b00000000 .$ +b00000000 /$ +10$ +b00000110 1$ +b00000101 2$ +b00000000000000000000000000000011 D$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 `$ +b00000000 d$ +b00000000 e$ +b00000000 f$ +b00000000 g$ +b00000000 h$ +b00000000 i$ +b00000101 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 (% +b00000000000000000000000000000011 ,% +b00000001 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 D% +b00000000 H% +b00000000 I% +b00000000 J% +b00000000 K% +b00000000 L% +b00000000 M% +b00000000 N% +b00000000 O% +b00000000 P% +b00000000 Q% +b00000000 R% +b00000000 S% +1T% +b00000110 U% +b00000101 V% +b00000000000000000000000000000011 h% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 && +b00000000 *& +b00000000 +& +b00000000 ,& +b00000000 -& +b00000000 .& +b00000000 /& +17& +b00000111 8& +b00000101 9& +b00000110 :& +b00000101 ;& +b00000101 <& +b00000101 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 V& +b00000000000000000000000000000011 Z& +b00000001 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 r& +b00000000 v& +b00000000 w& +b00000000 x& +b00000000 y& +b00000000 z& +b00000000 {& +b00000000 |& +b00000000 }& +b00000000 ~& +b00000000 !' +b00000000 "' +b00000000 #' +1$' +b00000110 %' +b00000101 &' +b00000000000000000000000000000011 8' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 T' +b00000000 X' +b00000000 Y' +b00000000 Z' +b00000000 [' +b00000000 \' +b00000000 ]' +b00000101 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 z' +b00000000000000000000000000000011 ~' +b00000001 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 8( +b00000000 <( +b00000000 =( +b00000000 >( +b00000000 ?( +b00000000 @( +b00000000 A( +b00000000 B( +b00000000 C( +b00000000 D( +b00000000 E( +b00000000 F( +b00000000 G( +1H( +b00000110 I( +b00000101 J( +b00000000000000000000000000000011 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 x( +b00000000 |( +b00000000 }( +b00000000 ~( +b00000000 !) +b00000000 ") +b00000000 #) #35 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000000100 P! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l! +b00000110 p! +b00000101 q! +b00000100 r! +b00000011 s! +b00000010 t! +b00000001 u! +b00001000 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4" +b00000000000000000000000000000100 8" +b00000000 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P" +b00000110 T" +b00000101 U" +b00000100 V" +b00000011 W" +b00000010 X" +b00000001 Y" +b00000110 Z" +b00000101 [" +b00000100 \" +b00000011 ]" +b00000010 ^" +b00000001 _" +1`" +b00001000 b" +b00000000000000000000000000000100 t" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2# +b00000110 6# +b00000101 7# +b00000100 8# +b00000011 9# +b00000010 :# +b00000001 ;# +1C# +b00001000 D# +b00001000 E# +b00001000 F# +b00001000 G# +b00001000 H# +b00001000 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b# +b00000000000000000000000000000100 f# +b00000000 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~# +b00000110 $$ +b00000101 %$ +b00000100 &$ +b00000011 '$ +b00000010 ($ +b00000001 )$ +b00000110 *$ +b00000101 +$ +b00000100 ,$ +b00000011 -$ +b00000010 .$ +b00000001 /$ +10$ +b00001000 1$ +b00001000 2$ +b00000000000000000000000000000100 D$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `$ +b00000110 d$ +b00000101 e$ +b00000100 f$ +b00000011 g$ +b00000010 h$ +b00000001 i$ +b00001000 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (% +b00000000000000000000000000000100 ,% +b00000000 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D% +b00000110 H% +b00000101 I% +b00000100 J% +b00000011 K% +b00000010 L% +b00000001 M% +b00000110 N% +b00000101 O% +b00000100 P% +b00000011 Q% +b00000010 R% +b00000001 S% +1T% +b00001000 U% +b00001000 V% +b00000000000000000000000000000100 h% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 && +b00000110 *& +b00000101 +& +b00000100 ,& +b00000011 -& +b00000010 .& +b00000001 /& +17& +b00001000 8& +b00001000 9& +b00001000 :& +b00001000 ;& +b00001000 <& +b00001000 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V& +b00000000000000000000000000000100 Z& +b00000000 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r& +b00000110 v& +b00000101 w& +b00000100 x& +b00000011 y& +b00000010 z& +b00000001 {& +b00000110 |& +b00000101 }& +b00000100 ~& +b00000011 !' +b00000010 "' +b00000001 #' +1$' +b00001000 %' +b00001000 &' +b00000000000000000000000000000100 8' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T' +b00000110 X' +b00000101 Y' +b00000100 Z' +b00000011 [' +b00000010 \' +b00000001 ]' +b00001000 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z' +b00000000000000000000000000000100 ~' +b00000000 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8( +b00000110 <( +b00000101 =( +b00000100 >( +b00000011 ?( +b00000010 @( +b00000001 A( +b00000110 B( +b00000101 C( +b00000100 D( +b00000011 E( +b00000010 F( +b00000001 G( +1H( +b00001000 I( +b00001000 J( +b00000000000000000000000000000100 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x( +b00000110 |( +b00000101 }( +b00000100 ~( +b00000011 !) +b00000010 ") +b00000001 #) #45 0) +0- +08 +0? +0D +0I +0P +0( +b00000000 ?( +b00000000 @( +b00000000 A( +b00000000 B( +b00000000 C( +b00000000 D( +b00000000 E( +b00000000 F( +b00000000 G( +1H( +b00001001 I( +b00001010 J( +b00000000000000000000000000000101 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 x( +b00000000 |( +b00000000 }( +b00000000 ~( +b00000000 !) +b00000000 ") +b00000000 #) #55 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000000110 P! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l! +b00000110 p! +b00000101 q! +b00000100 r! +b00000011 s! +b00000010 t! +b00000001 u! +b00001010 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4" +b00000000000000000000000000000110 8" +b00000000 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P" +b00000110 T" +b00000101 U" +b00000100 V" +b00000011 W" +b00000010 X" +b00000001 Y" +b00000110 Z" +b00000101 [" +b00000100 \" +b00000011 ]" +b00000010 ^" +b00000001 _" +1`" +b00001001 a" +b00001010 b" +b00000000000000000000000000000110 t" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2# +b00000110 6# +b00000101 7# +b00000100 8# +b00000011 9# +b00000010 :# +b00000001 ;# +1C# +b00001010 D# +b00001011 E# +b00001011 G# +b00001011 H# +b00001011 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b# +b00000000000000000000000000000110 f# +b00000000 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~# +b00000110 $$ +b00000101 %$ +b00000100 &$ +b00000011 '$ +b00000010 ($ +b00000001 )$ +b00000110 *$ +b00000101 +$ +b00000100 ,$ +b00000011 -$ +b00000010 .$ +b00000001 /$ +10$ +b00001011 2$ +b00000000000000000000000000000110 D$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `$ +b00000110 d$ +b00000101 e$ +b00000100 f$ +b00000011 g$ +b00000010 h$ +b00000001 i$ +b00001011 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (% +b00000000000000000000000000000110 ,% +b00000000 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D% +b00000110 H% +b00000101 I% +b00000100 J% +b00000011 K% +b00000010 L% +b00000001 M% +b00000110 N% +b00000101 O% +b00000100 P% +b00000011 Q% +b00000010 R% +b00000001 S% +1T% +b00001011 V% +b00000000000000000000000000000110 h% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 && +b00000110 *& +b00000101 +& +b00000100 ,& +b00000011 -& +b00000010 .& +b00000001 /& +17& +b00001010 8& +b00001011 9& +b00001011 ;& +b00001011 <& +b00001011 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V& +b00000000000000000000000000000110 Z& +b00000000 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r& +b00000110 v& +b00000101 w& +b00000100 x& +b00000011 y& +b00000010 z& +b00000001 {& +b00000110 |& +b00000101 }& +b00000100 ~& +b00000011 !' +b00000010 "' +b00000001 #' +1$' +b00001011 &' +b00000000000000000000000000000110 8' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T' +b00000110 X' +b00000101 Y' +b00000100 Z' +b00000011 [' +b00000010 \' +b00000001 ]' +b00001011 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z' +b00000000000000000000000000000110 ~' +b00000000 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8( +b00000110 <( +b00000101 =( +b00000100 >( +b00000011 ?( +b00000010 @( +b00000001 A( +b00000110 B( +b00000101 C( +b00000100 D( +b00000011 E( +b00000010 F( +b00000001 G( +1H( +b00001011 J( +b00000000000000000000000000000110 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x( +b00000110 |( +b00000101 }( +b00000100 ~( +b00000011 !) +b00000010 ") +b00000001 #) #65 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000000111 P! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 l! +b00000000 p! +b00000000 q! +b00000000 r! +b00000000 s! +b00000000 t! +b00000000 u! +b00001011 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 4" +b00000000000000000000000000000111 8" +b00000001 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 P" +b00000000 T" +b00000000 U" +b00000000 V" +b00000000 W" +b00000000 X" +b00000000 Y" +b00000000 Z" +b00000000 [" +b00000000 \" +b00000000 ]" +b00000000 ^" +b00000000 _" +1`" +b00001011 a" +b00001011 b" +b00000000000000000000000000000111 t" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 2# +b00000000 6# +b00000000 7# +b00000000 8# +b00000000 9# +b00000000 :# +b00000000 ;# +1C# +b00001011 D# +b00001011 F# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 b# +b00000000000000000000000000000111 f# +b00000001 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ~# +b00000000 $$ +b00000000 %$ +b00000000 &$ +b00000000 '$ +b00000000 ($ +b00000000 )$ +b00000000 *$ +b00000000 +$ +b00000000 ,$ +b00000000 -$ +b00000000 .$ +b00000000 /$ +10$ +b00001011 1$ +b00000000000000000000000000000111 D$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 `$ +b00000000 d$ +b00000000 e$ +b00000000 f$ +b00000000 g$ +b00000000 h$ +b00000000 i$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 (% +b00000000000000000000000000000111 ,% +b00000001 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 D% +b00000000 H% +b00000000 I% +b00000000 J% +b00000000 K% +b00000000 L% +b00000000 M% +b00000000 N% +b00000000 O% +b00000000 P% +b00000000 Q% +b00000000 R% +b00000000 S% +1T% +b00001011 U% +b00000000000000000000000000000111 h% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 && +b00000000 *& +b00000000 +& +b00000000 ,& +b00000000 -& +b00000000 .& +b00000000 /& +17& +b00001011 8& +b00001011 :& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 V& +b00000000000000000000000000000111 Z& +b00000001 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 r& +b00000000 v& +b00000000 w& +b00000000 x& +b00000000 y& +b00000000 z& +b00000000 {& +b00000000 |& +b00000000 }& +b00000000 ~& +b00000000 !' +b00000000 "' +b00000000 #' +1$' +b00001011 %' +b00000000000000000000000000000111 8' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 T' +b00000000 X' +b00000000 Y' +b00000000 Z' +b00000000 [' +b00000000 \' +b00000000 ]' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 z' +b00000000000000000000000000000111 ~' +b00000001 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 8( +b00000000 <( +b00000000 =( +b00000000 >( +b00000000 ?( +b00000000 @( +b00000000 A( +b00000000 B( +b00000000 C( +b00000000 D( +b00000000 E( +b00000000 F( +b00000000 G( +1H( +b00001011 I( +b00000000000000000000000000000111 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 x( +b00000000 |( +b00000000 }( +b00000000 ~( +b00000000 !) +b00000000 ") +b00000000 #) #75 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000001000 P! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l! +b00000110 p! +b00000101 q! +b00000100 r! +b00000011 s! +b00000010 t! +b00000001 u! +b00001101 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4" +b00000000000000000000000000001000 8" +b00000000 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P" +b00000110 T" +b00000101 U" +b00000100 V" +b00000011 W" +b00000010 X" +b00000001 Y" +b00000110 Z" +b00000101 [" +b00000100 \" +b00000011 ]" +b00000010 ^" +b00000001 _" +1`" +b00001110 a" +b00001101 b" +b00000000000000000000000000001000 t" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2# +b00000110 6# +b00000101 7# +b00000100 8# +b00000011 9# +b00000010 :# +b00000001 ;# +1C# +b00001101 D# +b00001101 E# +b00001100 F# +b00001101 G# +b00001101 H# +b00001101 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b# +b00000000000000000000000000001000 f# +b00000000 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~# +b00000110 $$ +b00000101 %$ +b00000100 &$ +b00000011 '$ +b00000010 ($ +b00000001 )$ +b00000110 *$ +b00000101 +$ +b00000100 ,$ +b00000011 -$ +b00000010 .$ +b00000001 /$ +10$ +b00001100 1$ +b00001101 2$ +b00000000000000000000000000001000 D$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `$ +b00000110 d$ +b00000101 e$ +b00000100 f$ +b00000011 g$ +b00000010 h$ +b00000001 i$ +b00001101 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (% +b00000000000000000000000000001000 ,% +b00000000 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D% +b00000110 H% +b00000101 I% +b00000100 J% +b00000011 K% +b00000010 L% +b00000001 M% +b00000110 N% +b00000101 O% +b00000100 P% +b00000011 Q% +b00000010 R% +b00000001 S% +1T% +b00001100 U% +b00001101 V% +b00000000000000000000000000001000 h% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 && +b00000110 *& +b00000101 +& +b00000100 ,& +b00000011 -& +b00000010 .& +b00000001 /& +17& +b00001101 8& +b00001101 9& +b00001100 :& +b00001101 ;& +b00001101 <& +b00001101 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V& +b00000000000000000000000000001000 Z& +b00000000 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r& +b00000110 v& +b00000101 w& +b00000100 x& +b00000011 y& +b00000010 z& +b00000001 {& +b00000110 |& +b00000101 }& +b00000100 ~& +b00000011 !' +b00000010 "' +b00000001 #' +1$' +b00001100 %' +b00001101 &' +b00000000000000000000000000001000 8' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T' +b00000110 X' +b00000101 Y' +b00000100 Z' +b00000011 [' +b00000010 \' +b00000001 ]' +b00001101 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z' +b00000000000000000000000000001000 ~' +b00000000 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8( +b00000110 <( +b00000101 =( +b00000100 >( +b00000011 ?( +b00000010 @( +b00000001 A( +b00000110 B( +b00000101 C( +b00000100 D( +b00000011 E( +b00000010 F( +b00000001 G( +1H( +b00001100 I( +b00001101 J( +b00000000000000000000000000001000 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x( +b00000110 |( +b00000101 }( +b00000100 ~( +b00000011 !) +b00000010 ") +b00000001 #) #85 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000001001 P! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 l! +b00000000 p! +b00000000 q! +b00000000 r! +b00000000 s! +b00000000 t! +b00000000 u! +b00010000 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 4" +b00000000000000000000000000001001 8" +b00000001 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 P" +b00000000 T" +b00000000 U" +b00000000 V" +b00000000 W" +b00000000 X" +b00000000 Y" +b00000000 Z" +b00000000 [" +b00000000 \" +b00000000 ]" +b00000000 ^" +b00000000 _" +1`" +b00010000 a" +b00010000 b" +b00000000000000000000000000001001 t" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 2# +b00000000 6# +b00000000 7# +b00000000 8# +b00000000 9# +b00000000 :# +b00000000 ;# +1C# +b00010000 D# +b00001110 E# +b00001110 F# +b00001110 G# +b00001110 H# +b00001110 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 b# +b00000000000000000000000000001001 f# +b00000001 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ~# +b00000000 $$ +b00000000 %$ +b00000000 &$ +b00000000 '$ +b00000000 ($ +b00000000 )$ +b00000000 *$ +b00000000 +$ +b00000000 ,$ +b00000000 -$ +b00000000 .$ +b00000000 /$ +10$ +b00001110 1$ +b00001110 2$ +b00000000000000000000000000001001 D$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 `$ +b00000000 d$ +b00000000 e$ +b00000000 f$ +b00000000 g$ +b00000000 h$ +b00000000 i$ +b00001110 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 (% +b00000000000000000000000000001001 ,% +b00000001 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 D% +b00000000 H% +b00000000 I% +b00000000 J% +b00000000 K% +b00000000 L% +b00000000 M% +b00000000 N% +b00000000 O% +b00000000 P% +b00000000 Q% +b00000000 R% +b00000000 S% +1T% +b00001110 U% +b00001110 V% +b00000000000000000000000000001001 h% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 && +b00000000 *& +b00000000 +& +b00000000 ,& +b00000000 -& +b00000000 .& +b00000000 /& +17& +b00010000 8& +b00001110 9& +b00001110 :& +b00001110 ;& +b00001110 <& +b00001110 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 V& +b00000000000000000000000000001001 Z& +b00000001 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 r& +b00000000 v& +b00000000 w& +b00000000 x& +b00000000 y& +b00000000 z& +b00000000 {& +b00000000 |& +b00000000 }& +b00000000 ~& +b00000000 !' +b00000000 "' +b00000000 #' +1$' +b00001110 %' +b00001110 &' +b00000000000000000000000000001001 8' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 T' +b00000000 X' +b00000000 Y' +b00000000 Z' +b00000000 [' +b00000000 \' +b00000000 ]' +b00001110 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 z' +b00000000000000000000000000001001 ~' +b00000001 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 8( +b00000000 <( +b00000000 =( +b00000000 >( +b00000000 ?( +b00000000 @( +b00000000 A( +b00000000 B( +b00000000 C( +b00000000 D( +b00000000 E( +b00000000 F( +b00000000 G( +1H( +b00001110 I( +b00001110 J( +b00000000000000000000000000001001 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 x( +b00000000 |( +b00000000 }( +b00000000 ~( +b00000000 !) +b00000000 ") +b00000000 #) #95 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000001010 P! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l! +b00000110 p! +b00000101 q! +b00000100 r! +b00000011 s! +b00000010 t! +b00000001 u! +b00010010 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4" +b00000000000000000000000000001010 8" +b00000000 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P" +b00000110 T" +b00000101 U" +b00000100 V" +b00000011 W" +b00000010 X" +b00000001 Y" +b00000110 Z" +b00000101 [" +b00000100 \" +b00000011 ]" +b00000010 ^" +b00000001 _" +1`" +b00010001 a" +b00010010 b" +b00000000000000000000000000001010 t" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2# +b00000110 6# +b00000101 7# +b00000100 8# +b00000011 9# +b00000010 :# +b00000001 ;# +1C# +b00010010 D# +b00010000 E# +b00010001 F# +b00010000 G# +b00010000 H# +b00010000 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b# +b00000000000000000000000000001010 f# +b00000000 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~# +b00000110 $$ +b00000101 %$ +b00000100 &$ +b00000011 '$ +b00000010 ($ +b00000001 )$ +b00000110 *$ +b00000101 +$ +b00000100 ,$ +b00000011 -$ +b00000010 .$ +b00000001 /$ +10$ +b00010001 1$ +b00010000 2$ +b00000000000000000000000000001010 D$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `$ +b00000110 d$ +b00000101 e$ +b00000100 f$ +b00000011 g$ +b00000010 h$ +b00000001 i$ +b00010000 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (% +b00000000000000000000000000001010 ,% +b00000000 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D% +b00000110 H% +b00000101 I% +b00000100 J% +b00000011 K% +b00000010 L% +b00000001 M% +b00000110 N% +b00000101 O% +b00000100 P% +b00000011 Q% +b00000010 R% +b00000001 S% +1T% +b00010001 U% +b00010000 V% +b00000000000000000000000000001010 h% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 && +b00000110 *& +b00000101 +& +b00000100 ,& +b00000011 -& +b00000010 .& +b00000001 /& +17& +b00010010 8& +b00010000 9& +b00010001 :& +b00010000 ;& +b00010000 <& +b00010000 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V& +b00000000000000000000000000001010 Z& +b00000000 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r& +b00000110 v& +b00000101 w& +b00000100 x& +b00000011 y& +b00000010 z& +b00000001 {& +b00000110 |& +b00000101 }& +b00000100 ~& +b00000011 !' +b00000010 "' +b00000001 #' +1$' +b00010001 %' +b00010000 &' +b00000000000000000000000000001010 8' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T' +b00000110 X' +b00000101 Y' +b00000100 Z' +b00000011 [' +b00000010 \' +b00000001 ]' +b00010000 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z' +b00000000000000000000000000001010 ~' +b00000000 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8( +b00000110 <( +b00000101 =( +b00000100 >( +b00000011 ?( +b00000010 @( +b00000001 A( +b00000110 B( +b00000101 C( +b00000100 D( +b00000011 E( +b00000010 F( +b00000001 G( +1H( +b00010001 I( +b00010000 J( +b00000000000000000000000000001010 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x( +b00000110 |( +b00000101 }( +b00000100 ~( +b00000011 !) +b00000010 ") +b00000001 #) #105 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000001011 P! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 l! +b00000000 p! +b00000000 q! +b00000000 r! +b00000000 s! +b00000000 t! +b00000000 u! +b00010011 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 4" +b00000000000000000000000000001011 8" +b00000001 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 P" +b00000000 T" +b00000000 U" +b00000000 V" +b00000000 W" +b00000000 X" +b00000000 Y" +b00000000 Z" +b00000000 [" +b00000000 \" +b00000000 ]" +b00000000 ^" +b00000000 _" +1`" +b00010011 b" +b00000000000000000000000000001011 t" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 2# +b00000000 6# +b00000000 7# +b00000000 8# +b00000000 9# +b00000000 :# +b00000000 ;# +1C# +b00010011 D# +b00010011 E# +b00010011 F# +b00010011 G# +b00010011 H# +b00010011 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 b# +b00000000000000000000000000001011 f# +b00000001 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ~# +b00000000 $$ +b00000000 %$ +b00000000 &$ +b00000000 '$ +b00000000 ($ +b00000000 )$ +b00000000 *$ +b00000000 +$ +b00000000 ,$ +b00000000 -$ +b00000000 .$ +b00000000 /$ +10$ +b00010011 1$ +b00010011 2$ +b00000000000000000000000000001011 D$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 `$ +b00000000 d$ +b00000000 e$ +b00000000 f$ +b00000000 g$ +b00000000 h$ +b00000000 i$ +b00010011 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 (% +b00000000000000000000000000001011 ,% +b00000001 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 D% +b00000000 H% +b00000000 I% +b00000000 J% +b00000000 K% +b00000000 L% +b00000000 M% +b00000000 N% +b00000000 O% +b00000000 P% +b00000000 Q% +b00000000 R% +b00000000 S% +1T% +b00010011 U% +b00010011 V% +b00000000000000000000000000001011 h% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 && +b00000000 *& +b00000000 +& +b00000000 ,& +b00000000 -& +b00000000 .& +b00000000 /& +17& +b00010011 8& +b00010011 9& +b00010011 :& +b00010011 ;& +b00010011 <& +b00010011 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 V& +b00000000000000000000000000001011 Z& +b00000001 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 r& +b00000000 v& +b00000000 w& +b00000000 x& +b00000000 y& +b00000000 z& +b00000000 {& +b00000000 |& +b00000000 }& +b00000000 ~& +b00000000 !' +b00000000 "' +b00000000 #' +1$' +b00010011 %' +b00010011 &' +b00000000000000000000000000001011 8' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 T' +b00000000 X' +b00000000 Y' +b00000000 Z' +b00000000 [' +b00000000 \' +b00000000 ]' +b00010011 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 z' +b00000000000000000000000000001011 ~' +b00000001 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 8( +b00000000 <( +b00000000 =( +b00000000 >( +b00000000 ?( +b00000000 @( +b00000000 A( +b00000000 B( +b00000000 C( +b00000000 D( +b00000000 E( +b00000000 F( +b00000000 G( +1H( +b00010011 I( +b00010011 J( +b00000000000000000000000000001011 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 x( +b00000000 |( +b00000000 }( +b00000000 ~( +b00000000 !) +b00000000 ") +b00000000 #) #115 0) +0- +08 +0? +0D +0I +0P +0( +b00000011 ?( +b00000010 @( +b00000001 A( +b00000110 B( +b00000101 C( +b00000100 D( +b00000011 E( +b00000010 F( +b00000001 G( +1H( +b00010100 I( +b00010101 J( +b00000000000000000000000000001100 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x( +b00000110 |( +b00000101 }( +b00000100 ~( +b00000011 !) +b00000010 ") +b00000001 #) #125 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000001101 P! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 l! +b00000000 p! +b00000000 q! +b00000000 r! +b00000000 s! +b00000000 t! +b00000000 u! +b00010101 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 4" +b00000000000000000000000000001101 8" +b00000001 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 P" +b00000000 T" +b00000000 U" +b00000000 V" +b00000000 W" +b00000000 X" +b00000000 Y" +b00000000 Z" +b00000000 [" +b00000000 \" +b00000000 ]" +b00000000 ^" +b00000000 _" +1`" +b00010100 a" +b00010101 b" +b00000000000000000000000000001101 t" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 2# +b00000000 6# +b00000000 7# +b00000000 8# +b00000000 9# +b00000000 :# +b00000000 ;# +1C# +b00010101 D# +b00010110 E# +b00010110 G# +b00010110 H# +b00010110 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 b# +b00000000000000000000000000001101 f# +b00000001 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ~# +b00000000 $$ +b00000000 %$ +b00000000 &$ +b00000000 '$ +b00000000 ($ +b00000000 )$ +b00000000 *$ +b00000000 +$ +b00000000 ,$ +b00000000 -$ +b00000000 .$ +b00000000 /$ +10$ +b00010110 2$ +b00000000000000000000000000001101 D$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 `$ +b00000000 d$ +b00000000 e$ +b00000000 f$ +b00000000 g$ +b00000000 h$ +b00000000 i$ +b00010110 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 (% +b00000000000000000000000000001101 ,% +b00000001 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 D% +b00000000 H% +b00000000 I% +b00000000 J% +b00000000 K% +b00000000 L% +b00000000 M% +b00000000 N% +b00000000 O% +b00000000 P% +b00000000 Q% +b00000000 R% +b00000000 S% +1T% +b00010110 V% +b00000000000000000000000000001101 h% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 && +b00000000 *& +b00000000 +& +b00000000 ,& +b00000000 -& +b00000000 .& +b00000000 /& +17& +b00010101 8& +b00010110 9& +b00010110 ;& +b00010110 <& +b00010110 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 V& +b00000000000000000000000000001101 Z& +b00000001 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 r& +b00000000 v& +b00000000 w& +b00000000 x& +b00000000 y& +b00000000 z& +b00000000 {& +b00000000 |& +b00000000 }& +b00000000 ~& +b00000000 !' +b00000000 "' +b00000000 #' +1$' +b00010110 &' +b00000000000000000000000000001101 8' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 T' +b00000000 X' +b00000000 Y' +b00000000 Z' +b00000000 [' +b00000000 \' +b00000000 ]' +b00010110 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 z' +b00000000000000000000000000001101 ~' +b00000001 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 8( +b00000000 <( +b00000000 =( +b00000000 >( +b00000000 ?( +b00000000 @( +b00000000 A( +b00000000 B( +b00000000 C( +b00000000 D( +b00000000 E( +b00000000 F( +b00000000 G( +1H( +b00010110 J( +b00000000000000000000000000001101 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 x( +b00000000 |( +b00000000 }( +b00000000 ~( +b00000000 !) +b00000000 ") +b00000000 #) #135 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000001110 P! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l! +b00000110 p! +b00000101 q! +b00000100 r! +b00000011 s! +b00000010 t! +b00000001 u! +b00010110 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4" +b00000000000000000000000000001110 8" +b00000000 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P" +b00000110 T" +b00000101 U" +b00000100 V" +b00000011 W" +b00000010 X" +b00000001 Y" +b00000110 Z" +b00000101 [" +b00000100 \" +b00000011 ]" +b00000010 ^" +b00000001 _" +1`" +b00010110 a" +b00010110 b" +b00000000000000000000000000001110 t" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2# +b00000110 6# +b00000101 7# +b00000100 8# +b00000011 9# +b00000010 :# +b00000001 ;# +1C# +b00010110 D# +b00010110 F# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b# +b00000000000000000000000000001110 f# +b00000000 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~# +b00000110 $$ +b00000101 %$ +b00000100 &$ +b00000011 '$ +b00000010 ($ +b00000001 )$ +b00000110 *$ +b00000101 +$ +b00000100 ,$ +b00000011 -$ +b00000010 .$ +b00000001 /$ +10$ +b00010110 1$ +b00000000000000000000000000001110 D$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `$ +b00000110 d$ +b00000101 e$ +b00000100 f$ +b00000011 g$ +b00000010 h$ +b00000001 i$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (% +b00000000000000000000000000001110 ,% +b00000000 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D% +b00000110 H% +b00000101 I% +b00000100 J% +b00000011 K% +b00000010 L% +b00000001 M% +b00000110 N% +b00000101 O% +b00000100 P% +b00000011 Q% +b00000010 R% +b00000001 S% +1T% +b00010110 U% +b00000000000000000000000000001110 h% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 && +b00000110 *& +b00000101 +& +b00000100 ,& +b00000011 -& +b00000010 .& +b00000001 /& +17& +b00010110 8& +b00010110 :& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V& +b00000000000000000000000000001110 Z& +b00000000 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r& +b00000110 v& +b00000101 w& +b00000100 x& +b00000011 y& +b00000010 z& +b00000001 {& +b00000110 |& +b00000101 }& +b00000100 ~& +b00000011 !' +b00000010 "' +b00000001 #' +1$' +b00010110 %' +b00000000000000000000000000001110 8' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T' +b00000110 X' +b00000101 Y' +b00000100 Z' +b00000011 [' +b00000010 \' +b00000001 ]' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z' +b00000000000000000000000000001110 ~' +b00000000 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8( +b00000110 <( +b00000101 =( +b00000100 >( +b00000011 ?( +b00000010 @( +b00000001 A( +b00000110 B( +b00000101 C( +b00000100 D( +b00000011 E( +b00000010 F( +b00000001 G( +1H( +b00010110 I( +b00000000000000000000000000001110 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x( +b00000110 |( +b00000101 }( +b00000100 ~( +b00000011 !) +b00000010 ") +b00000001 #) #145 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000001111 P! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 l! +b00000000 p! +b00000000 q! +b00000000 r! +b00000000 s! +b00000000 t! +b00000000 u! +b00011000 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 4" +b00000000000000000000000000001111 8" +b00000001 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 P" +b00000000 T" +b00000000 U" +b00000000 V" +b00000000 W" +b00000000 X" +b00000000 Y" +b00000000 Z" +b00000000 [" +b00000000 \" +b00000000 ]" +b00000000 ^" +b00000000 _" +1`" +b00011001 a" +b00011000 b" +b00000000000000000000000000001111 t" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 2# +b00000000 6# +b00000000 7# +b00000000 8# +b00000000 9# +b00000000 :# +b00000000 ;# +1C# +b00011000 D# +b00011000 E# +b00010111 F# +b00011000 G# +b00011000 H# +b00011000 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 b# +b00000000000000000000000000001111 f# +b00000001 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ~# +b00000000 $$ +b00000000 %$ +b00000000 &$ +b00000000 '$ +b00000000 ($ +b00000000 )$ +b00000000 *$ +b00000000 +$ +b00000000 ,$ +b00000000 -$ +b00000000 .$ +b00000000 /$ +10$ +b00010111 1$ +b00011000 2$ +b00000000000000000000000000001111 D$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 `$ +b00000000 d$ +b00000000 e$ +b00000000 f$ +b00000000 g$ +b00000000 h$ +b00000000 i$ +b00011000 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 (% +b00000000000000000000000000001111 ,% +b00000001 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 D% +b00000000 H% +b00000000 I% +b00000000 J% +b00000000 K% +b00000000 L% +b00000000 M% +b00000000 N% +b00000000 O% +b00000000 P% +b00000000 Q% +b00000000 R% +b00000000 S% +1T% +b00010111 U% +b00011000 V% +b00000000000000000000000000001111 h% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 && +b00000000 *& +b00000000 +& +b00000000 ,& +b00000000 -& +b00000000 .& +b00000000 /& +17& +b00011000 8& +b00011000 9& +b00010111 :& +b00011000 ;& +b00011000 <& +b00011000 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 V& +b00000000000000000000000000001111 Z& +b00000001 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 r& +b00000000 v& +b00000000 w& +b00000000 x& +b00000000 y& +b00000000 z& +b00000000 {& +b00000000 |& +b00000000 }& +b00000000 ~& +b00000000 !' +b00000000 "' +b00000000 #' +1$' +b00010111 %' +b00011000 &' +b00000000000000000000000000001111 8' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 T' +b00000000 X' +b00000000 Y' +b00000000 Z' +b00000000 [' +b00000000 \' +b00000000 ]' +b00011000 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 z' +b00000000000000000000000000001111 ~' +b00000001 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 8( +b00000000 <( +b00000000 =( +b00000000 >( +b00000000 ?( +b00000000 @( +b00000000 A( +b00000000 B( +b00000000 C( +b00000000 D( +b00000000 E( +b00000000 F( +b00000000 G( +1H( +b00010111 I( +b00011000 J( +b00000000000000000000000000001111 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 x( +b00000000 |( +b00000000 }( +b00000000 ~( +b00000000 !) +b00000000 ") +b00000000 #) #155 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000010000 P! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l! +b00000110 p! +b00000101 q! +b00000100 r! +b00000011 s! +b00000010 t! +b00000001 u! +b00011011 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4" +b00000000000000000000000000010000 8" +b00000000 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P" +b00000110 T" +b00000101 U" +b00000100 V" +b00000011 W" +b00000010 X" +b00000001 Y" +b00000110 Z" +b00000101 [" +b00000100 \" +b00000011 ]" +b00000010 ^" +b00000001 _" +1`" +b00011011 a" +b00011011 b" +b00000000000000000000000000010000 t" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2# +b00000110 6# +b00000101 7# +b00000100 8# +b00000011 9# +b00000010 :# +b00000001 ;# +1C# +b00011011 D# +b00011001 E# +b00011001 F# +b00011001 G# +b00011001 H# +b00011001 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b# +b00000000000000000000000000010000 f# +b00000000 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~# +b00000110 $$ +b00000101 %$ +b00000100 &$ +b00000011 '$ +b00000010 ($ +b00000001 )$ +b00000110 *$ +b00000101 +$ +b00000100 ,$ +b00000011 -$ +b00000010 .$ +b00000001 /$ +10$ +b00011001 1$ +b00011001 2$ +b00000000000000000000000000010000 D$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 `$ +b00000110 d$ +b00000101 e$ +b00000100 f$ +b00000011 g$ +b00000010 h$ +b00000001 i$ +b00011001 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (% +b00000000000000000000000000010000 ,% +b00000000 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D% +b00000110 H% +b00000101 I% +b00000100 J% +b00000011 K% +b00000010 L% +b00000001 M% +b00000110 N% +b00000101 O% +b00000100 P% +b00000011 Q% +b00000010 R% +b00000001 S% +1T% +b00011001 U% +b00011001 V% +b00000000000000000000000000010000 h% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 && +b00000110 *& +b00000101 +& +b00000100 ,& +b00000011 -& +b00000010 .& +b00000001 /& +17& +b00011011 8& +b00011001 9& +b00011001 :& +b00011001 ;& +b00011001 <& +b00011001 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 V& +b00000000000000000000000000010000 Z& +b00000000 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r& +b00000110 v& +b00000101 w& +b00000100 x& +b00000011 y& +b00000010 z& +b00000001 {& +b00000110 |& +b00000101 }& +b00000100 ~& +b00000011 !' +b00000010 "' +b00000001 #' +1$' +b00011001 %' +b00011001 &' +b00000000000000000000000000010000 8' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T' +b00000110 X' +b00000101 Y' +b00000100 Z' +b00000011 [' +b00000010 \' +b00000001 ]' +b00011001 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 z' +b00000000000000000000000000010000 ~' +b00000000 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8( +b00000110 <( +b00000101 =( +b00000100 >( +b00000011 ?( +b00000010 @( +b00000001 A( +b00000110 B( +b00000101 C( +b00000100 D( +b00000011 E( +b00000010 F( +b00000001 G( +1H( +b00011001 I( +b00011001 J( +b00000000000000000000000000010000 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 x( +b00000110 |( +b00000101 }( +b00000100 ~( +b00000011 !) +b00000010 ") +b00000001 #) #165 0) +0- +08 +0? +0D +0I +0P +0! +b00000000000000000000000000010001 P! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 S! +1W! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 \! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 `! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 d! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 h! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 l! +b00000000 p! +b00000000 q! +b00000000 r! +b00000000 s! +b00000000 t! +b00000000 u! +b00011101 }! +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 $" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 (" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ," +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 0" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 4" +b00000000000000000000000000010001 8" +b00000001 ;" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 @" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 D" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 H" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 L" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 P" +b00000000 T" +b00000000 U" +b00000000 V" +b00000000 W" +b00000000 X" +b00000000 Y" +b00000000 Z" +b00000000 [" +b00000000 \" +b00000000 ]" +b00000000 ^" +b00000000 _" +1`" +b00011100 a" +b00011101 b" +b00000000000000000000000000010001 t" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 w" +1{" +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 "# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 &# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 *# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 .# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 2# +b00000000 6# +b00000000 7# +b00000000 8# +b00000000 9# +b00000000 :# +b00000000 ;# +1C# +b00011101 D# +b00011011 E# +b00011100 F# +b00011011 G# +b00011011 H# +b00011011 M# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 R# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 V# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 Z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 ^# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 b# +b00000000000000000000000000010001 f# +b00000001 i# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 n# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 r# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 v# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 z# +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 ~# +b00000000 $$ +b00000000 %$ +b00000000 &$ +b00000000 '$ +b00000000 ($ +b00000000 )$ +b00000000 *$ +b00000000 +$ +b00000000 ,$ +b00000000 -$ +b00000000 .$ +b00000000 /$ +10$ +b00011100 1$ +b00011011 2$ +b00000000000000000000000000010001 D$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 G$ +1K$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 P$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 T$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 X$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 \$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 `$ +b00000000 d$ +b00000000 e$ +b00000000 f$ +b00000000 g$ +b00000000 h$ +b00000000 i$ +b00011011 q$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 v$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 z$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 ~$ +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 $% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 (% +b00000000000000000000000000010001 ,% +b00000001 /% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 4% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 8% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 <% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 @% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 D% +b00000000 H% +b00000000 I% +b00000000 J% +b00000000 K% +b00000000 L% +b00000000 M% +b00000000 N% +b00000000 O% +b00000000 P% +b00000000 Q% +b00000000 R% +b00000000 S% +1T% +b00011100 U% +b00011011 V% +b00000000000000000000000000010001 h% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 k% +1o% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 t% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 x% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 |% +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 "& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 && +b00000000 *& +b00000000 +& +b00000000 ,& +b00000000 -& +b00000000 .& +b00000000 /& +17& +b00011101 8& +b00011011 9& +b00011100 :& +b00011011 ;& +b00011011 <& +b00011011 A& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 F& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 J& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 N& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 R& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 V& +b00000000000000000000000000010001 Z& +b00000001 ]& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 b& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 f& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 j& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 n& +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 r& +b00000000 v& +b00000000 w& +b00000000 x& +b00000000 y& +b00000000 z& +b00000000 {& +b00000000 |& +b00000000 }& +b00000000 ~& +b00000000 !' +b00000000 "' +b00000000 #' +1$' +b00011100 %' +b00011011 &' +b00000000000000000000000000010001 8' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ;' +1?' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 D' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 H' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 L' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 P' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 T' +b00000000 X' +b00000000 Y' +b00000000 Z' +b00000000 [' +b00000000 \' +b00000000 ]' +b00011011 e' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 j' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 n' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 r' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 v' +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 z' +b00000000000000000000000000010001 ~' +b00000001 #( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 (( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 ,( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 0( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 4( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 8( +b00000000 <( +b00000000 =( +b00000000 >( +b00000000 ?( +b00000000 @( +b00000000 A( +b00000000 B( +b00000000 C( +b00000000 D( +b00000000 E( +b00000000 F( +b00000000 G( +1H( +b00011100 I( +b00011011 J( +b00000000000000000000000000010001 \( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 _( +1c( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 h( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010 l( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011 p( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 t( +b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101 x( +b00000000 |( +b00000000 }( +b00000000 ~( +b00000000 !) +b00000000 ") +b00000000 #)