diff --git a/icu4c/source/common/characterproperties.cpp b/icu4c/source/common/characterproperties.cpp index f1e15b488d53..98dd72bdb687 100644 --- a/icu4c/source/common/characterproperties.cpp +++ b/icu4c/source/common/characterproperties.cpp @@ -186,6 +186,9 @@ void U_CALLCONV initInclusion(UPropertySource src, UErrorCode &errorCode) { case UPROPS_SRC_ID_COMPAT_MATH: uprops_addPropertyStarts(src, &sa, &errorCode); break; + case UPROPS_SRC_BLOCK: + ublock_addPropertyStarts(&sa, errorCode); + break; default: errorCode = U_INTERNAL_PROGRAM_ERROR; break; diff --git a/icu4c/source/common/uchar.cpp b/icu4c/source/common/uchar.cpp index 57d99c056b43..c136d812a411 100644 --- a/icu4c/source/common/uchar.cpp +++ b/icu4c/source/common/uchar.cpp @@ -23,6 +23,7 @@ #include "unicode/utypes.h" #include "unicode/uchar.h" +#include "unicode/ucptrie.h" #include "unicode/uscript.h" #include "unicode/udata.h" #include "uassert.h" @@ -515,6 +516,8 @@ uprv_getMaxValues(int32_t column) { return indexes[UPROPS_MAX_VALUES_INDEX]; case 2: return indexes[UPROPS_MAX_VALUES_2_INDEX]; + case UPROPS_MAX_VALUES_OTHER_INDEX: + return indexes[column]; default: return 0; } @@ -618,7 +621,15 @@ uscript_getScriptExtensions(UChar32 c, U_CAPI UBlockCode U_EXPORT2 ublock_getCode(UChar32 c) { - return (UBlockCode)((u_getUnicodeProperties(c, 0)&UPROPS_BLOCK_MASK)>>UPROPS_BLOCK_SHIFT); + // We store Block values indexed by the code point shifted right 4 bits + // and use a "small" UCPTrie=CodePointTrie for minimal data size. + // This works because blocks have xxx0..xxxF ranges. + uint32_t c4 = c; // unsigned so that shifting right does not worry the compiler + // Shift unless out of range, in which case we fetch the trie's error value. + if (c4 <= 0x10ffff) { + c4 >>= 4; + } + return (UBlockCode)ucptrie_get(&block_trie, c4); } /* property starts for UnicodeSet ------------------------------------------- */ @@ -706,3 +717,18 @@ upropsvec_addPropertyStarts(const USetAdder *sa, UErrorCode *pErrorCode) { /* add the start code point of each same-value range of the properties vectors trie */ utrie2_enum(&propsVectorsTrie, nullptr, _enumPropertyStartsRange, sa); } + +U_CFUNC void U_EXPORT2 +ublock_addPropertyStarts(const USetAdder *sa, UErrorCode & /*errorCode*/) { + // Add the start code point of each same-value range of the trie. + // We store Block values indexed by the code point shifted right 4 bits; + // see ublock_getCode(). + UChar32 start = 0, end; + uint32_t value; + while (start < 0x11000 && // limit: (max code point + 1) >> 4 + (end = ucptrie_getRange(&block_trie, start, UCPMAP_RANGE_NORMAL, 0, + nullptr, nullptr, &value)) >= 0) { + sa->add(sa->set, start << 4); + start = end + 1; + } +} diff --git a/icu4c/source/common/uchar_props_data.h b/icu4c/source/common/uchar_props_data.h index 8537da7d4dae..20dc02b37cf5 100644 --- a/icu4c/source/common/uchar_props_data.h +++ b/icu4c/source/common/uchar_props_data.h @@ -1517,2618 +1517,2439 @@ static const UTrie2 propsTrie={ nullptr, 0, false, false, 0, nullptr }; -static const uint16_t propsVectorsTrie_index[33688]={ -0x55c,0x564,0x56c,0x574,0x58c,0x594,0x59c,0x5a4,0x5ac,0x5b4,0x5bc,0x5c4,0x5cc,0x5d4,0x5dc,0x5e4, -0x5eb,0x5f3,0x5fb,0x603,0x60b,0x613,0x61b,0x623,0x62b,0x633,0x63b,0x643,0x64b,0x653,0x65b,0x663, -0x66b,0x673,0x67a,0x682,0x68a,0x692,0x69a,0x6a2,0x6aa,0x6b2,0x6b7,0x6bf,0x6c6,0x6ce,0x6d6,0x6de, -0x6e6,0x6ee,0x6f6,0x6fe,0x705,0x70d,0x715,0x71d,0x725,0x72d,0x735,0x73d,0x745,0x74d,0x755,0x75d, -0x1be1,0xdb3,0xe7f,0x11c2,0x12f9,0x1da9,0x1f48,0x1da1,0x1486,0x1496,0x147e,0x148e,0x83a,0x840,0x848,0x850, -0x858,0x85e,0x866,0x86e,0x876,0x87c,0x884,0x88c,0x894,0x89a,0x8a2,0x8aa,0x8b2,0x8ba,0x8c2,0x8c9, -0x8d1,0x8d7,0x8df,0x8e7,0x8ef,0x8f5,0x8fd,0x905,0x90d,0x149e,0x915,0x91d,0x925,0x92c,0x934,0x93c, -0x944,0x948,0x950,0x957,0x95f,0x967,0x96f,0x977,0x17b8,0x17c0,0x97f,0x987,0x98f,0x997,0x99f,0x9a6, -0x181e,0x180e,0x1816,0x1b1b,0x1b23,0x14ae,0x9ae,0x14a6,0x1701,0x1701,0x1703,0x14c2,0x14c3,0x14b6,0x14b8,0x14ba, -0x1826,0x1828,0x9b6,0x1828,0x9be,0x9c3,0x9cb,0x182d,0x9d1,0x1828,0x9d7,0x9df,0xc9a,0x1835,0x1835,0x9e7, -0x1845,0x1846,0x1846,0x1846,0x1846,0x1846,0x1846,0x1846,0x1846,0x1846,0x1846,0x1846,0x1846,0x1846,0x1846,0x1846, -0x1846,0x1846,0x1846,0x183d,0x9ef,0x184e,0x184e,0x9f7,0xbc2,0xbca,0xbd2,0xbda,0x185e,0x1856,0x9ff,0xa07, -0xa0f,0x1868,0x1870,0xa17,0x1866,0xa1f,0x1be9,0xdbb,0xbe2,0xbea,0xbf2,0xbf7,0x1a79,0xcc1,0xcc8,0x19d5, -0xc72,0x1bf1,0xdc3,0xdcb,0xdd3,0xddb,0xf91,0xf95,0x1ad9,0x1ade,0xd00,0x1ae6,0x1b57,0x1b5f,0x1cc1,0xe87, -0x1b67,0xd47,0xd4f,0x1b6f,0x113a,0x11ea,0xf61,0xde3,0x19f5,0x19dd,0x19ed,0x19e5,0x1a91,0x1a89,0x1a45,0x1ad1, -0x14d3,0x14d3,0x14d3,0x14d3,0x14cb,0x14d3,0x14d3,0x14d5,0xa27,0x14dd,0xa2b,0xa33,0x14dd,0xa3b,0xa43,0xa4b, -0x14ed,0x14e5,0x14f5,0xa53,0xa5b,0x14fd,0xa63,0xa6b,0x1505,0x150d,0x1515,0x151d,0xa73,0x1525,0x152c,0x1534, -0x153c,0x1544,0x154c,0x1554,0x155c,0x1563,0x156b,0x1573,0x157b,0x1583,0x1586,0x1588,0x1878,0x196b,0x1971,0x1ac1, -0x1590,0xa7b,0xa83,0x16b6,0x16bb,0x16be,0x16c4,0x1598,0x16cc,0x16cc,0x15a8,0x15a0,0x15b0,0x15b8,0x15c0,0x15c8, -0x15d0,0x15d8,0x15e0,0x15e8,0x1979,0x19cd,0x1b2b,0x1c89,0x15f8,0x15fe,0x1606,0x160e,0x15f0,0x1616,0x1981,0x1988, -0x1880,0x1880,0x1880,0x1880,0x1880,0x1880,0x1880,0x1880,0x1990,0x1990,0x1990,0x1990,0x1998,0x199f,0x19a1,0x19a8, -0x19b0,0x19b4,0x19b4,0x19b7,0x19b4,0x19b4,0x19bd,0x19b4,0x19fd,0x1ac9,0x1b33,0xbff,0xc05,0x1ded,0x1df5,0x1ed3, -0x1a69,0x1a5d,0x1a61,0x1aee,0x1a4d,0x1a4d,0x1a4d,0xc82,0x1a55,0xca2,0x1aa9,0xcf0,0xc8a,0xc92,0xc92,0x1b77, -0x1a99,0x1b3b,0xcd8,0xce0,0xa8b,0x1888,0x1888,0xa93,0x1890,0x1890,0x1890,0x1890,0x1890,0x1890,0xa9b,0x765, -0x16e9,0x170b,0xaa3,0x1713,0xaab,0x171b,0x1723,0x172b,0xab3,0xab8,0x1733,0x173a,0xabd,0x1898,0x1ab9,0xc7a, -0xac5,0x1795,0x179c,0x1742,0x17a4,0x17a8,0x174a,0x174e,0x1767,0x1767,0x1769,0x1756,0x175e,0x175e,0x175f,0x17b0, -0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0, -0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0, -0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0, -0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0, -0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0, -0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0, -0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0, -0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0, -0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0, -0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0, -0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0, -0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0, -0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a0,0x18a3,0x1a05,0x1a05, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771, -0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1771,0x1778,0x1bd9,0x1fb4, -0x18ab,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1, -0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1,0x18b1, -0x18b1,0x18b1,0x18b1,0x18b1,0xacd,0x18b9,0xad5,0x1bf9,0x1b84,0x1b84,0x1b84,0x1b84,0x1b84,0x1b84,0x1b84,0x1b84, -0x1b7f,0xd57,0x1b94,0x1b8c,0x1b96,0x1c01,0x1c01,0xdeb,0x1a71,0x1af6,0x1b4b,0x1b4f,0x1b43,0x1cb9,0xd08,0xd10, -0x1aa1,0xce8,0x1afe,0xd18,0x1b9e,0x1ba1,0xd5f,0x1c09,0x1bb1,0x1ba9,0xd67,0xdf3,0x1c11,0x1c15,0xdfb,0x1040, -0x1bb9,0xd6f,0xd77,0x1c1d,0x1c2d,0x1c25,0xe03,0xf31,0xe8f,0xe97,0x1e43,0xff0,0x1ef0,0x1ef0,0x1c35,0xe0b, -0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801, -0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803, -0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805, -0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800, -0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802, -0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804, -0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806, -0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801, -0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803, -0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805, -0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800, -0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802, -0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804, -0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806, -0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801, -0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803, -0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805, -0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800, -0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802, -0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804, -0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806, -0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0xadd,0xe13,0xe16, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8, -0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8,0x17d8, +static const uint16_t propsVectorsTrie_index[32304]={ +0x51d,0x525,0x52d,0x535,0x54d,0x555,0x55d,0x565,0x56d,0x575,0x57d,0x585,0x58d,0x595,0x59d,0x5a5, +0x5ac,0x5b4,0x5bc,0x5c4,0x5cc,0x5d4,0x5dc,0x5e4,0x5ec,0x5f4,0x5fc,0x604,0x60c,0x614,0x61c,0x624, +0x62c,0x634,0x63b,0x643,0x64b,0x653,0x65b,0x663,0x66b,0x673,0x678,0x680,0x687,0x68f,0x697,0x69f, +0x6a7,0x6af,0x6b7,0x6bf,0x6c6,0x6ce,0x6d6,0x6de,0x6e6,0x6ee,0x6f6,0x6fe,0x706,0x70e,0x716,0x71e, +0x1b1e,0x726,0x72e,0x736,0x73c,0x1c66,0x1e0d,0x1c5e,0x155b,0x156b,0x14bb,0x1563,0x744,0x74a,0x752,0x75a, +0x762,0x768,0x770,0x778,0x780,0x786,0x78e,0x796,0x79e,0x7a4,0x7ac,0x7b4,0x7bc,0x7c4,0x7cc,0x7d3, +0x7db,0x7e1,0x7e9,0x7f1,0x7f9,0x7ff,0x807,0x80f,0x817,0x15ba,0x81f,0x827,0x82f,0x836,0x83e,0x846, +0x84e,0x852,0x85a,0x53d,0x862,0x86a,0x872,0x53d,0x16c4,0x16cc,0x87a,0x882,0x88a,0x892,0x89a,0x53d, +0x174b,0x173b,0x1743,0x1a36,0x1a3e,0x157b,0x8a2,0x1573,0x1652,0x1652,0x1654,0x1597,0x1598,0x158b,0x158d,0x158f, +0x170a,0x170c,0x8aa,0x170c,0x8b2,0x8b7,0x8bf,0x1711,0x8c5,0x170c,0x8cb,0x8d3,0x8db,0x1702,0x1702,0x8e3, +0x1763,0x1764,0x1764,0x1764,0x1764,0x1764,0x1764,0x1764,0x1764,0x1764,0x1764,0x1764,0x1764,0x1764,0x1764,0x1764, +0x1764,0x1764,0x1764,0x175b,0x8eb,0x1753,0x1753,0x8f3,0x8fb,0x903,0x90b,0x913,0x1721,0x1719,0x91b,0x923, +0x92b,0x172b,0x1733,0x933,0x1729,0x93b,0x1abe,0x93f,0x947,0x94f,0x957,0x95c,0x196c,0x964,0x96b,0x18d8, +0x973,0x1af6,0x97b,0x983,0x98b,0x993,0x99b,0x53d,0x19bc,0x19c1,0x9a3,0x19c9,0x1a8e,0x1a96,0x1b8e,0x9ab, +0x1a5e,0x9b3,0x9bb,0x1a7b,0x9c3,0x9c7,0x9cf,0x9d7,0x18e0,0x18c0,0x18d0,0x18c8,0x1948,0x1940,0x1910,0x19ac, +0x15b0,0x15b0,0x15b0,0x15b0,0x15a0,0x15b0,0x15b0,0x15b2,0x9df,0x1583,0x9e3,0x9eb,0x1583,0x9f3,0x9fb,0xa03, +0x139e,0x1396,0x13d6,0xa0b,0xa13,0x13be,0x12fc,0xa1b,0x13ae,0x13b6,0x13ce,0x15a8,0xa23,0x13e6,0x13ed,0x13f5, +0x147c,0x1484,0x148c,0x1494,0x149c,0x14a3,0x14ab,0x14b3,0x13fd,0x1405,0x1408,0x140a,0x16fa,0x184f,0x1855,0x199c, +0x1408,0x1315,0x131d,0x15c2,0x15c7,0x15ca,0x15d0,0x13c6,0x15d8,0x15d8,0x1412,0x13de,0x1416,0x141e,0x1426,0x142e, +0x1436,0x143e,0x1446,0x144e,0x185d,0x18b0,0x1a08,0x1b6e,0x1456,0x145c,0x1464,0x146c,0x13a6,0x1474,0x1865,0x186c, +0x176c,0x176c,0x176c,0x176c,0x176c,0x176c,0x176c,0x176c,0x1870,0x1870,0x1870,0x1870,0x1878,0x1870,0x187f,0x1886, +0x188e,0x1870,0x1870,0x1892,0x1870,0x1870,0x1898,0x1870,0x18b8,0x19a4,0x19f8,0x1325,0x132b,0x1cd8,0x1ce0,0x1d88, +0x195c,0x1950,0x1954,0x19b4,0x1918,0x1918,0x1918,0xa2b,0x1920,0xa33,0x1974,0xa3a,0xa42,0xa4a,0xa4a,0x1a18, +0x1908,0x1a00,0x1333,0x133b,0xa52,0x177c,0x177c,0xa5a,0x1784,0x1784,0x1784,0x1784,0x1784,0x1784,0xa62,0xa68, +0x1605,0x1615,0xa70,0x166b,0xa78,0x1689,0x1691,0x1699,0xa80,0xa85,0x165c,0x1663,0xa8a,0x1774,0x198c,0xa92, +0xa9a,0x16a1,0x16a8,0x160d,0x16b8,0x16bc,0x1673,0x1677,0x167f,0x167f,0x1681,0x161d,0x1625,0x1625,0x1626,0x16b0, +0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c, +0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c, +0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c, +0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c, +0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c, +0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c, +0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c, +0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c, +0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c, +0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c, +0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c, +0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c, +0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178c,0x178f,0x18a8,0x18a8, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643, +0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x1643,0x164a,0x1a9e,0x1e71, +0x179f,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5, +0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5,0x17a5, +0x17a5,0x17a5,0x17a5,0x17a5,0xaa2,0x1797,0xaaa,0x1b3e,0x1a6b,0x1a6b,0x1a6b,0x1a6b,0x1a6b,0x1a6b,0x1a6b,0x1a6b, +0x1a66,0xab2,0x1a20,0x1a10,0x1a22,0x1b36,0x1b36,0xaba,0x1900,0x1994,0x1a2a,0x1a2e,0x19f0,0x1b86,0xac2,0xaca, +0x1964,0xad2,0x19d1,0xada,0x1a83,0x1a86,0xae2,0x1aae,0x1a56,0x1a4e,0xaea,0xaf2,0x1ae2,0x1ae6,0xafa,0xb02, +0x1a46,0xb0a,0xb12,0x1ab6,0x1b2e,0x1b26,0xb1a,0xb22,0xb2a,0xb32,0x1cd0,0xb3a,0x1d90,0x1d90,0x1afe,0xb42, +0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed, +0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef, +0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1, +0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec, +0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee, +0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0, +0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2, +0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed, +0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef, +0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1, +0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec, +0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee, +0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0, +0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2, +0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed, +0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef, +0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1, +0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec, +0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee, +0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0, +0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2, +0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0x16f2,0x16ec,0x16ed,0x16ee,0x16ef,0x16f0,0x16f1,0xb4a,0xb51,0xb54, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, 0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, 0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, +0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0, +0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0, +0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0, +0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0, +0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0, +0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0, +0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0, +0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0, +0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0, +0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0, +0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0, +0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0, +0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x15e0,0x162e,0x162e,0x162e,0x162e,0x162e,0x162e,0x162e,0x162e, +0x1633,0x163b,0x18a0,0x1343,0x1984,0x1984,0x1347,0x134e,0xb5c,0xb64,0xb6c,0x14e3,0x14ea,0x14f2,0xb74,0x14fa, +0x154b,0x154b,0x14cb,0x14d3,0x1502,0x1542,0x1543,0x1553,0x150a,0x150f,0x1517,0x151f,0xb7c,0x1527,0xb84,0x14db, +0xb8c,0x14c3,0xb94,0xb9c,0x152f,0x1535,0x153a,0xba4,0xbac,0x15f5,0x15fd,0x15e8,0x15ed,0xbb4,0xbbc,0xbc4, 0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, 0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x1780,0x1780,0x1780,0x1780,0x1780,0x1780,0x1780,0x1780, -0x1785,0x178d,0x19c5,0x1433,0x1ab1,0x1ab1,0x1437,0x143e,0xae5,0xaed,0xaf5,0x1636,0x163d,0x1645,0xafd,0x164d, -0x168b,0x168b,0x161e,0x1626,0x1655,0x1682,0x1683,0x1693,0x165d,0x1662,0x166a,0x1672,0xb05,0x167a,0xb0d,0x162e, -0xcf8,0x169b,0xb15,0xb1d,0x16a3,0x16a9,0x16ae,0xb25,0xb35,0x16f1,0x16f9,0x16dc,0x16e1,0xb3d,0xb45,0xb2d, -0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8, -0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17c8,0x17d0,0x17d0,0x17d0,0x17d0, -0x15f0,0x15f0,0x1630,0x1670,0x16b0,0x16f0,0x1730,0x1770,0x17ac,0x17ec,0x182c,0x186c,0x18ac,0x18ec,0x192c,0x196c, -0x19ac,0x19e8,0x1a28,0x1a68,0x1aa8,0x1adc,0x1b18,0x1b58,0x1b98,0x1bd8,0x1c14,0x1c54,0x1c94,0x1cd4,0x1d14,0x1d54, -0xe59,0xa80,0xac0,0xb00,0xb40,0xb6b,0xf99,0x152d,0xed9,0xa40,0xa40,0xa40,0x1011,0xbab,0x142d,0x142d, -0xf19,0xfd9,0xa40,0xa40,0xa40,0xbeb,0xf59,0xc2b,0xa40,0xc51,0xc91,0xcd1,0xd11,0xd51,0xe99,0xdc9, -0x136d,0x136d,0x136d,0x136d,0x136d,0x136d,0x136d,0x136d,0x136d,0x136d,0x136d,0x136d,0x136d,0x136d,0x136d,0x136d, -0x136d,0x136d,0x136d,0x136d,0x1051,0x13ad,0x11a2,0x11e2,0x13ed,0x11ed,0x146d,0x146d,0x146d,0x1091,0x10c4,0x1104, -0x14ad,0x14ad,0x122d,0x14ed,0x1144,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4, -0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x10c4,0x1162, +0x14f4,0x14f4,0x1534,0x1574,0x15b4,0x15f4,0x1634,0x1674,0x16b0,0x16f0,0x1730,0x1770,0x17b0,0x17f0,0x1830,0x1870, +0x18b0,0x18ec,0x192c,0x196c,0x19ac,0x19e0,0x1a1c,0x1a5c,0x1a9c,0x1adc,0x1b18,0x1b58,0x1b98,0x1bd8,0x1c18,0x1c58, +0xa80,0xac0,0xb00,0xb40,0xb80,0xbab,0xbeb,0x1432,0xc0e,0xa40,0xa40,0xa40,0xc46,0xc86,0x1332,0x1332, +0xcc6,0xd06,0xa40,0xa40,0xa40,0xd2f,0xd6f,0xd8f,0xa40,0xdb5,0xdf5,0xe35,0xe75,0xeb5,0xf75,0xef5, +0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272, +0x1272,0x1272,0x1272,0x1272,0x1005,0x12b2,0x103d,0x107d,0x12f2,0x1088,0x1372,0x1372,0x1372,0x10be,0x10f1,0x1131, +0x13b2,0x13b2,0x1171,0x13f2,0x1194,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1, +0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x10f1,0x11b2, 0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40, -0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xd89, +0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xf35, 0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40, -0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xd89, +0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xf35, 0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40, -0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xd89, +0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xf35, 0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40, -0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xd89, +0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xf35, 0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40, -0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xd89, +0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xf35, 0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40, -0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xd89, +0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xf35, 0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40, -0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xd89, +0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xf35, 0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40, -0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xd89, +0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xf35, 0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40, -0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xd89, +0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xf35, 0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40, -0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xd89, -0xe09,0xe19,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40, -0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xd89, -0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed, -0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x12ed,0x126d, -0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d, -0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x132d,0x12ad, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0xc57,0xc5a,0xe1e,0x1e93,0x1048,0x76d,0x57c,0x10e6,0xd20,0xd9f,0x57c,0x57c,0x1db9,0xf39,0xf41,0x1edb, -0xcaa,0xcb1,0xcb9,0x1c3d,0x1e73,0x57c,0x1e53,0x1018,0x1c45,0xe26,0xe2e,0xe36,0x1070,0x775,0x57c,0x57c, -0x1c4d,0x1c4d,0x77d,0x57c,0x1f08,0x10fe,0x1f00,0x1106,0x1ff4,0x1200,0x20b2,0x13bd,0x785,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0xe3e,0x2052,0x12f1,0x1373,0x1375,0x2014,0x1228,0x122f,0x1236,0x1330,0x1334,0x12aa,0x1246, -0x1cc9,0x1ccb,0xe9f,0xea6,0x1c55,0x1c5d,0xe46,0xf59,0x1db1,0xf21,0xf29,0x1010,0x1dd1,0x1dd5,0x1ddd,0x1090, -0xfe0,0x1e33,0x78d,0x57c,0x10ee,0x10f6,0x1e3b,0xfe8,0xfc2,0xfc8,0xfd0,0xfd8,0x1405,0x140a,0x1412,0x141a, -0x1f78,0x1f70,0x1170,0x1178,0x1ebb,0x1eb3,0x10bc,0x57c,0x57c,0x57c,0x57c,0x57c,0x1ea3,0x1078,0x1080,0x1088, -0x1e6b,0x1e63,0x1028,0x1168,0x1de5,0xf69,0xf71,0x13d5,0x10cc,0x10d4,0x795,0x57c,0x57c,0x57c,0x57c,0x57c, -0x1fec,0x11e2,0x79d,0x57c,0x57c,0x1ecb,0x1ec3,0x10c4,0x12b2,0x12b8,0x12c0,0x57c,0x57c,0x124e,0x1252,0x125a, -0x1fac,0x1fa4,0x11ca,0x1f9c,0x1f94,0x11ba,0x1e9b,0x1068,0x1385,0x1388,0x1388,0x57c,0x57c,0x57c,0x20ca,0x13e5, -0x111e,0x1123,0x112b,0x1132,0x115a,0x1160,0x57c,0x57c,0x119e,0x11a2,0x11aa,0x11f2,0x11f8,0x7a5,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x1210,0x1398,0x139d,0x13a5,0x57c,0x57c,0x7a9,0x2034,0x129a, -0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06, -0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b06,0x1b0b,0xd28,0xd2f,0xd2f,0xd2f, -0x1b13,0x1b13,0x1b13,0xd37,0x1ef8,0x1ef8,0x1ef8,0x1ef8,0x1ef8,0x1ef8,0x7b1,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x7b5,0x2072,0x2072,0x1301,0x1cd3,0x1cd3,0x1cd3,0x1cd3,0x1cd3, -0x1cd3,0x1cd3,0x1cd3,0x1cd3,0x1cd3,0x1cd3,0x1cd3,0x1cd3,0x1cd3,0x1cd3,0x1cd3,0x1cd3,0xeae,0x1030,0x1038,0x207a, -0x133c,0x1344,0xf79,0x1e8b,0x1e83,0x1058,0x1060,0x7bd,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x20c2,0x13cd,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x200c,0x2004,0x1220, -0x57c,0x57c,0x57c,0x1dc9,0x1dc9,0xf49,0x1dc1,0xf51,0x57c,0x57c,0x1152,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x7c1,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x1e1b,0x1e1b,0x1e1b,0xf9d,0xfa2, -0x7c9,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x20d2,0x20d2,0x20d2,0x20d2,0x20d2,0x20d2,0x20d5,0x13ed,0x20d2,0x20d2,0x20d2,0x20d2,0x20d2,0x20d2,0x20d2, -0x20d2,0x20d2,0x20d2,0x20d2,0x20d2,0x20d2,0x13f5,0x57c,0x57c,0x208a,0x1364,0x136b,0x2082,0x2082,0x2082,0x7d1, -0x57c,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0xb5b,0x18ee,0xb63,0x18ef,0x18e6,0x18f7,0x18fd,0x1905, -0xb6b,0x1a2d,0x1a2d,0x7d9,0x57c,0x57c,0x57c,0x1390,0x1218,0x1a1d,0x1a1d,0xc62,0xd3f,0x57c,0x57c,0x57c, -0x57c,0x1936,0x193d,0xb73,0x1940,0xb7b,0xb83,0xb8b,0x193a,0xb93,0xb9b,0xba3,0x193f,0x1947,0x1936,0x193d, -0x1939,0x1940,0x1948,0x1937,0x193e,0x193a,0xbaa,0x190d,0x1915,0x191c,0x1923,0x1910,0x1918,0x191f,0x1926,0xbb2, -0x192e,0x1f20,0x1f20,0x1f20,0x1f20,0x1f20,0x1f20,0x1f20,0x1f20,0x1f20,0x1f20,0x1f20,0x1f20,0x1f20,0x1f20,0x1f20, -0x1f20,0x1f10,0x1f13,0x1f10,0x1f1a,0x110e,0x7e1,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x131d,0x1325,0x1328,0x1328,0x1328,0x1328,0x1328, -0x1328,0x1142,0x114a,0x2092,0x137d,0x7e9,0x57c,0x57c,0x57c,0x202c,0x1262,0x7f1,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x7f5,0x134c,0x203c,0x12a2,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x7fd,0x13ad,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x805, -0x13dd,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x1309,0x1e5b,0x1e5b,0x1e5b,0x1e5b,0x1e5b,0x1e5b,0x1020,0x57c,0x1f68,0x1f60,0x1116,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x80d,0x1ffc,0x1208,0x57c,0x57c,0x126a,0x126b,0x815,0x57c,0x57c,0x57c,0x57c, -0x57c,0xee6,0xeee,0xef6,0xefe,0xf06,0xf0e,0xf15,0xf19,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x819,0x1098,0x1eab,0x109e,0x1eab,0x10a6,0x10ab,0x10b3, -0x10b4,0x1f30,0x1f50,0x1f58,0x1fc4,0x1f38,0x201c,0x1f40,0x1fcc,0x2024,0x2024,0x11d2,0x11da,0x1282,0x205a,0x128a, -0x1292,0x2044,0x2044,0x2044,0x2044,0x12d6,0x2044,0x204a,0x12de,0x821,0x821,0x821,0x821,0x821,0x821,0x821, -0x821,0x821,0x821,0x821,0x821,0x821,0x821,0x821,0x821,0x821,0x821,0x821,0x821,0x821,0x821,0x821, -0x821,0x821,0x821,0x821,0x821,0x821,0x821,0x821,0x822,0xbba,0x1950,0x1950,0x1950,0x82a,0x82a,0x82a, -0x82a,0x1a25,0x1a25,0x1a25,0x1a25,0x1a25,0x1a25,0x1a25,0x832,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a, -0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a, -0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a, -0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a, -0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0x82a,0xc0d,0xc14,0xc1c,0xc24,0x1a0d,0x1a0d,0x1a0d, -0xc2c,0xc34,0xc37,0x1a3d,0x1a35,0xc6a,0xd7f,0xd83,0xd87,0x57c,0x57c,0x57c,0x57c,0xd8f,0x1bc1,0xd97, -0xf89,0x18c1,0xb4d,0xb53,0x1050,0xc3f,0x1a81,0xcd0,0x57c,0x18d6,0x18c9,0x18ce,0x1a15,0xc47,0xc4f,0x1180, -0x1186,0x1e23,0xfaa,0x1e13,0xf81,0x1354,0x135c,0x20dd,0x13fd,0x1e4b,0x1e4b,0x1e4b,0x1e4b,0x1e4b,0x1e4b,0x1e4b, -0x1e4b,0x1e4b,0xff8,0x1000,0x1008,0x1311,0x1315,0x57c,0x57c,0x1bc9,0xda7,0x1bd1,0x1bd1,0xdab,0xeb6,0xebe, -0xec6,0x1c99,0x1c81,0x1ca1,0x1ca9,0x1c91,0xe4e,0xe52,0xe59,0xe61,0xe65,0xe6d,0xe75,0xe77,0xe77,0xe77, -0xe77,0x1d0a,0x1d12,0x1d0a,0x1d18,0x1d20,0x1ceb,0x1d28,0x1d30,0x1d0a,0x1d38,0x1d40,0x1d47,0x1d4f,0x1cf3,0x1d0a, -0x1d54,0x1cfb,0x1d02,0x1d5c,0x1d62,0x1e04,0x1e0b,0x1dfd,0x1d69,0x1d71,0x1d79,0x1d81,0x1e7b,0x1d89,0x1d91,0xece, -0xed6,0x1cdb,0x1cdb,0x1cdb,0xede,0x1e2b,0x1e2b,0xfb2,0xfba,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa, -0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa, -0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x13b5,0x1ee3,0x1ee3,0x1ee3,0x1ee3,0x1ee3,0x1ee3,0x1ee3, -0x1ee3,0x1ee3,0x1ee3,0x1ee3,0x1ee3,0x1ee3,0x1ee3,0x1ee8,0x1ee3,0x1ee3,0x1ee3,0x10dc,0x10de,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80, -0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80, -0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80, -0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80, -0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x118e,0x1ce3,0x1fbc,0x1fbc,0x1fbc,0x1fbc,0x1fbc,0x1fbc, -0x1fbc,0x1fdc,0x1196,0x1273,0x127a,0x1fe4,0x1fe4,0x1fe4,0x1fe4,0x1fe4,0x1fe4,0x1fe4,0x1fe4,0x1fe4,0x1fe4,0x1fe4, -0x11b2,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x1c65,0x1c65,0x1c65,0x1c65,0x1c65,0x1c65,0x1c65, -0x1c65,0x1c65,0x1c65,0x1c65,0x1c65,0x1c65,0x1c65,0x1c65,0x1c65,0x1c65,0x1c65,0x1c67,0x1c65,0x1c6f,0x1c65,0x1c65, -0x1c65,0x1c65,0x1c65,0x1c65,0x1c72,0x1c65,0x1c65,0x1c65,0x1c65,0x1c65,0x1c79,0x123e,0x20aa,0x20aa,0x20aa,0x20aa, -0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa, -0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88, -0x1f88,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88,0x1f88, -0x1f8c,0x206a,0x206a,0x206a,0x206a,0x206a,0x206a,0x206a,0x206a,0x206a,0x206a,0x206a,0x206a,0x206a,0x206a,0x12c8, -0x12ce,0x12e6,0x12e9,0x12e9,0x12e9,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x20ba,0x13c5,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c,0x57c, -0x57c,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958, -0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958, -0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958, -0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x195b,0x1422,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1, -0x1cb1,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4, -0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4, -0x1466,0x20a2,0x20a2,0x20a2,0x20a2,0x20a2,0x20a2,0x20a2,0x20a2,0x20a2,0x20a2,0x20a2,0x20a2,0x20a2,0x20a2,0x20a2, -0x20a2,0x20a2,0x20a2,0x1476,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422, -0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422, -0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422, -0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422, -0x1422,0x1422,0x1422,0x1422,0x1963,0x1963,0x1963,0x1963,0x1963,0x1963,0x1963,0x1963,0x1963,0x1963,0x1963,0x1963, -0x1963,0x1963,0x1963,0x1963,0x1446,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422, -0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422, -0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422, -0x1422,0x1422,0x1422,0x1423,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a, -0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a, -0x209a,0x142b,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422, -0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422, -0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422, -0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422, -0x1422,0x1423,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1, -0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1, -0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1, -0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x144e,0x1d99,0x1d99,0x1d99,0x1d99, -0x1d99,0x1d99,0x1456,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28, -0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28, -0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28, -0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28, -0x1f28,0x1f28,0x145e,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x2062,0x2062,0x2062, -0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062, -0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x146e,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a, -0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a, -0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x17f0,0x17f0,0x17f0, -0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0, -0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0, -0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0, -0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17e0,0x17f8,0x17f8,0x17f8, -0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8, -0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8, -0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8, -0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17e8,0x17f0,0x17f0,0x17f0, -0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0, -0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0, -0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0, -0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f0,0x17f8,0x17f8,0x17f8, -0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8, -0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8, -0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8, -0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x17f8,0x1958,0x1958,0x1958, -0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958, -0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958, -0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958, -0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1958,0x1cb1,0x1cb1,0x1cb1, -0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1, -0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1, -0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1, -0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1cb1,0x1f28,0x1f28,0x1f28, -0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28, -0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28, -0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28, -0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f28,0x1f80,0x1f80,0x1f80, -0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80, -0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80, -0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80, -0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1fd4,0x1fd4,0x1fd4, -0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4, -0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4, -0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4, -0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x1fd4,0x2062,0x2062,0x2062, -0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062, -0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062, -0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062, -0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x2062,0x209a,0x209a,0x209a, -0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a, -0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a, -0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a, -0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x209a,0x20aa,0x20aa,0x20aa, -0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa, -0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa, -0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa, -0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x20aa,0x55b,0x55b,0x55b, -0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x303,0x30c,0x306,0x306,0x309,0x300,0x300, -0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x300, -0x849,0x843,0x825,0x80d,0x819,0x816,0x80d,0x828,0x813,0x81f,0x80d,0x83a,0x82e,0x822,0x846,0x81c, -0x80a,0x80a,0x80a,0x80a,0x80a,0x80a,0x80a,0x80a,0x80a,0x80a,0x831,0x82b,0x834,0x834,0x834,0x843, -0x80d,0x855,0x855,0x855,0x855,0x855,0x855,0x84f,0x84f,0x84f,0x84f,0x84f,0x84f,0x84f,0x84f,0x84f, -0x84f,0x84f,0x84f,0x84f,0x84f,0x84f,0x84f,0x84f,0x84f,0x84f,0x84f,0x813,0x819,0x81f,0x840,0x807, -0x83d,0x852,0x852,0x852,0x852,0x852,0x852,0x84c,0x84c,0x84c,0x84c,0x84c,0x84c,0x84c,0x84c,0x84c, -0x84c,0x84c,0x84c,0x84c,0x84c,0x84c,0x84c,0x84c,0x84c,0x84c,0x84c,0x813,0x837,0x810,0x834,0x300, +0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xf35, +0xfb5,0xfc5,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40, +0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xa40,0xf35, +0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232, +0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x11f2, +0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232, +0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x1232,0x11f2, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0xbcc,0xbd3,0xbdb,0x53d,0x18e8,0x18e8,0x18e8,0xbe3,0xbeb,0xbee,0x1938,0x1928,0xbf6,0xbfe,0xc02,0xc06, +0x53d,0x53d,0x53d,0x53d,0xc0e,0x1a73,0xc16,0xc1e,0x1834,0xc26,0xc2c,0xc30,0xc38,0x197c,0xc40,0x53d, +0x182c,0x181f,0x1824,0x18f0,0xc48,0xc50,0xc54,0xc5a,0x1d10,0xc62,0x1d60,0xc69,0xc6d,0xc75,0x1f83,0xc7d, +0x1cf8,0x1cf8,0x1cf8,0x1cf8,0x1cf8,0x1cf8,0x1cf8,0x1cf8,0x1cf8,0xc85,0xc8d,0xc95,0xc9d,0xca1,0x53d,0x53d, +0xca9,0xcac,0xcb4,0x1d28,0xcbc,0xcc4,0x53d,0xccc,0xcd4,0xcdc,0x53d,0x53d,0x1c6e,0xce4,0xcec,0x1dc8, +0xcf4,0xcfb,0xd03,0x1b46,0x1d20,0x53d,0x1d00,0xd0b,0x1b06,0xd13,0xd1b,0xd23,0xd2b,0xd33,0x53d,0x53d, +0x1aee,0x1aee,0xd3b,0x53d,0x1da0,0xd43,0x1d98,0xd4b,0x1eb2,0xd53,0x1f63,0xd5b,0xd62,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0xd6a,0x1ef8,0xd72,0xd7a,0xd7c,0x1eba,0xd84,0xd8b,0xd92,0xd9a,0xd9e,0xda5,0xdad, +0x1b96,0x1b98,0xdb5,0xdbc,0x1b0e,0x1b16,0xdc4,0xdca,0x1c86,0xdd2,0xdda,0xdde,0x1c8e,0x1c92,0x1c9a,0xde6, +0xdee,0x1d48,0xdf6,0x53d,0xdfe,0xe06,0x1d30,0xe0e,0xe16,0xe1c,0xe24,0xe2c,0xe34,0xe39,0xe41,0xe49, +0x1e2d,0x1e25,0xe51,0xe59,0x1d58,0x1d50,0xe61,0x53d,0x53d,0x53d,0x53d,0x53d,0x1d80,0xe69,0xe71,0x53d, +0x1d70,0x1d68,0xe79,0xe81,0x1ca2,0xe89,0xe91,0xe98,0xea0,0xea8,0xeb0,0x53d,0x53d,0x53d,0x53d,0x53d, +0x1e9a,0xeb8,0x53d,0x53d,0x53d,0x1d40,0x1d38,0xec0,0xec8,0xece,0xed6,0x53d,0x53d,0xede,0xee2,0xeea, +0x1e59,0x1e51,0xef2,0x1e49,0x1e41,0xefa,0x1d78,0xf02,0xf0a,0x53d,0x53d,0x53d,0x53d,0x53d,0x1f7b,0xf12, +0xf1a,0xf1f,0xf27,0xf2e,0xf33,0xf39,0x53d,0x53d,0xf41,0xf45,0xf4d,0xf55,0xf5b,0xf63,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0xf6b,0xf73,0xf78,0xf80,0x53d,0x53d,0xf87,0x1ed2,0xf8f, +0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9, +0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19d9,0x19de,0xf97,0x53d,0x53d,0x53d, +0x19d9,0x19d9,0x19d9,0xf9f,0x1da8,0x1da8,0x1da8,0x1da8,0x1da8,0x1da8,0xfa7,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0xfab,0x1f28,0x1f28,0xfaf,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac6, +0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac8,0x1ac6,0x1ad0, +0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ad3,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ac6,0x1ada,0xfb7,0x1f5b,0x1f5b, +0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b, +0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0xfbf,0x1dd0,0x1dd0, +0x1dd0,0x1dd0,0x1dd0,0x1dd0,0x1dd0,0x1dd0,0x1dd0,0x1dd0,0x1dd0,0x1dd0,0x1dd0,0x1dd0,0x1dd5,0x1dd0,0x1dd0,0x1dd0, +0xfc7,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x1f6b,0xfcf, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x1ba0,0x1ba0,0x1ba0,0x1ba0,0x1ba0,0x1ba0,0x1ba0,0x1ba0,0x1ba0,0x1ba0, +0x1ba0,0x1ba0,0x1ba0,0x1ba0,0x1ba0,0x1ba0,0x1ba0,0xfd7,0xfdf,0xfe7,0x1f30,0xfeb,0xff3,0xff8,0x1cf0,0x1ce8, +0x1000,0x1008,0x1010,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x1f73,0x1018,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x1eaa,0x1ea2,0x1020,0x53d,0x53d,0x53d,0x1c7e,0x1c7e, +0x1028,0x1c76,0x1030,0x53d,0x53d,0x1038,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35, +0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35, +0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35, +0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35, +0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1040,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35, +0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e39,0x1f10,0x1f10, +0x1f10,0x1f10,0x1f10,0x1f10,0x1f10,0x1f10,0x1f10,0x1f10,0x1f10,0x1f10,0x1f10,0x1f10,0x1048,0x104e,0x1056,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x105a,0x1c56, +0x1e81,0x1e81,0x1e81,0x1e81,0x1e81,0x1e81,0x1e81,0x1e82,0x1062,0x1067,0x106e,0x1e8a,0x1e8a,0x1e8a,0x1e8a,0x1e8a, +0x1e8a,0x1e8a,0x1e8a,0x1e8a,0x1e8a,0x1e8a,0x1072,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x1d08, +0x1d08,0x1d08,0x107a,0x107f,0x1087,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x1f50,0x1f50,0x1f50,0x1f50,0x1f50,0x1f50,0x1f53,0x108f,0x1f50,0x1f50,0x1f50, +0x1f50,0x1f50,0x1f50,0x1f50,0x1f50,0x1f50,0x1f50,0x1f50,0x1f50,0x1f50,0x1097,0x53d,0x53d,0x1f20,0x109f,0x10a6, +0x1f18,0x1f18,0x1f18,0x10ad,0x53d,0x17bd,0x17bd,0x17bd,0x17bd,0x17bd,0x17bd,0x17bd,0x10b5,0x17bd,0x10bd,0x17be, +0x17ad,0x17c6,0x17cc,0x17d4,0x10c5,0x1930,0x1930,0x10cd,0x53d,0x53d,0x53d,0x10d5,0x10dd,0x18a8,0x18a8,0x10e5, +0x10ed,0x53d,0x53d,0x53d,0x53d,0x1805,0x180c,0x10f5,0x180f,0x10fd,0x1105,0x110d,0x1809,0x1115,0x111d,0x1125, +0x180e,0x1816,0x1805,0x180c,0x1808,0x180f,0x1817,0x1806,0x180d,0x1809,0x112c,0x17dc,0x17e4,0x17eb,0x17f2,0x17df, +0x17e7,0x17ee,0x17f5,0x1134,0x17fd,0x1dc0,0x1dc0,0x1dc0,0x1dc0,0x1dc0,0x1dc0,0x1dc0,0x1dc0,0x1dc0,0x1dc0,0x1dc0, +0x1dc0,0x1dc0,0x1dc0,0x1dc0,0x1dc0,0x1db0,0x1db3,0x1db0,0x1dba,0x113c,0x1144,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x114c,0x1154,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x115c,0x1164,0x1f38,0x116c,0x1171,0x53d,0x53d,0x53d,0x1eda,0x1179,0x1181, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x1185,0x118a,0x1ee2,0x1192,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x119a,0x119f,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x11a6,0x11ab,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x11b3,0x1d18,0x1d18,0x1d18,0x1d18,0x1d18,0x1d18,0x11bb,0x53d,0x1e1d,0x1e15,0x11c3, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x11cb,0x1e92,0x11d0,0x53d,0x53d,0x11d8,0x11d9,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x11e1,0x11e9,0x11f1,0x11f9,0x1201,0x1209,0x53d,0x1210,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x1218,0x1cb9,0x121e,0x1cb9,0x1226,0x122b,0x1233,0x53d,0x1ddd,0x1dfd,0x1e05, +0x1e61,0x1de5,0x1ec2,0x1ded,0x1e69,0x1eca,0x1eca,0x12cd,0x12d5,0x12dd,0x1f00,0x12e5,0x12ed,0x1eea,0x1eea,0x1eea, +0x1eea,0x123b,0x1eea,0x1ef0,0x1243,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a, +0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a,0x127a, +0x127a,0x127a,0x127a,0x127a,0x12f4,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d,0x53d, +0x53d,0x53d,0x53d,0x53d,0x124a,0x19e6,0x1252,0x19e8,0x19e8,0x1256,0x125e,0x1266,0x126e,0x1b56,0x1aa6,0x1b5e, +0x1b66,0x1b4e,0x1276,0x127a,0x1281,0x1289,0x128d,0x1295,0x129d,0x127a,0x127a,0x127a,0x127a,0x1bc7,0x1bcf,0x1bc7, +0x1bd5,0x1bdd,0x1ba8,0x1be5,0x1bed,0x1bc7,0x1bf5,0x1bfd,0x1c04,0x1c0c,0x1bb0,0x1bc7,0x1c11,0x1bb8,0x1bbf,0x1c19, +0x1c1f,0x1cc1,0x1cc8,0x1caa,0x1c26,0x1c2e,0x1c36,0x1c3e,0x1cb2,0x1bc7,0x1c46,0x12a5,0x12ad,0x1b7e,0x1b7e,0x1b7e, +0x12b5,0x1cb9,0x1cb9,0x12bd,0x12c5,0x1304,0x17b5,0x17b5,0x17b5,0x1305,0x1305,0x1305,0x1305,0x18f8,0x18f8,0x18f8, +0x18f8,0x18f8,0x18f8,0x18f8,0x130d,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305, +0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305, +0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305, +0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305, +0x1305,0x1305,0x1305,0x1305,0x1305,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844, +0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844, +0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844, +0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1847,0x134e,0x1b76,0x1b76,0x1b76, +0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76, +0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76, +0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76, +0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1356,0x1c4e,0x1c4e,0x1c4e,0x1c4e,0x1c4e,0x1c4e,0x135e,0x1df5,0x1df5, +0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5, +0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5, +0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5, +0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1366,0x1e79,0x1e79, +0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79, +0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x136e,0x1f48,0x1f48, +0x1f48,0x1f48,0x1f48,0x1f48,0x1f48,0x1f48,0x1f48,0x1f48,0x1f48,0x1f48,0x1f48,0x1f48,0x1f48,0x1f48,0x1f48,0x1f48, +0x1372,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e, +0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e, +0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e, +0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e, +0x134e,0x183c,0x183c,0x183c,0x183c,0x183c,0x183c,0x183c,0x183c,0x183c,0x183c,0x183c,0x183c,0x183c,0x183c,0x183c, +0x183c,0x137a,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e, +0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e, +0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e, +0x1382,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08, +0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x138a,0x1f40,0x1f40,0x1f40,0x1f40, +0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40, +0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40, +0x1f40,0x138e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e, +0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e, +0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e, +0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e,0x134e, +0x134e,0x1382,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4, +0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4, +0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4, +0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4, +0x16e4,0x16dc,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4, +0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4, +0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4, +0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4,0x16e4, +0x16e4,0x16e4,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844, +0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844, +0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844, +0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844,0x1844, +0x1844,0x1844,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76, +0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76, +0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76, +0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76,0x1b76, +0x1b76,0x1b76,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5, +0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5, +0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5, +0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5,0x1df5, +0x1df5,0x1df5,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35, +0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35, +0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35, +0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35,0x1e35, +0x1e35,0x1e35,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79, +0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79, +0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79, +0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79,0x1e79, +0x1e79,0x1e79,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08, +0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08, +0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08, +0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08,0x1f08, +0x1f08,0x1f08,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40, +0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40, +0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40, +0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40,0x1f40, +0x1f40,0x1f40,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b, +0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b, +0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b, +0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b,0x1f5b, +0x1f5b,0x1f5b,0x51c,0x51c,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0xf6,0x102,0xfc, +0xfc,0xff,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12, +0x12,0x12,0x12,0x12,0x47d,0x477,0x459,0x441,0x44d,0x44a,0x441,0x45c,0x447,0x453,0x441,0x46e, +0x462,0x456,0x47a,0x450,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x465,0x45f, +0x468,0x468,0x468,0x477,0x441,0x489,0x489,0x489,0x489,0x489,0x489,0x483,0x483,0x483,0x483,0x483, +0x483,0x483,0x483,0x483,0x483,0x483,0x483,0x483,0x483,0x483,0x483,0x483,0x483,0x483,0x483,0x447, +0x44d,0x453,0x474,0x43b,0x471,0x486,0x486,0x486,0x486,0x486,0x486,0x480,0x480,0x480,0x480,0x480, +0x480,0x480,0x480,0x480,0x480,0x480,0x480,0x480,0x480,0x480,0x480,0x480,0x480,0x480,0x480,0x447, +0x46b,0x444,0x468,0x12,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0x12,0x12,0x12,0x12,0x12,0x105,0x12,0x12,0x12,0x12,0x12,0x12, +0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12, +0x12,0x12,0x12,0x12,0x4b,0x35a,0x44a,0x44d,0x360,0x44d,0x441,0x351,0x33f,0xa8,0x3c0,0xcf, +0x468,0x318,0x354,0x438,0x35d,0x38d,0x32a,0x32a,0x342,0x84,0x351,0x345,0x33f,0x32a,0x3c0,0xcf, +0x324,0x324,0x324,0x35a,0x2a0,0x2a0,0x2a0,0x2a0,0x2a0,0x2a0,0x3d5,0x2a0,0x2a0,0x2a0,0x2a0,0x2a0, +0x2a0,0x2a0,0x2a0,0x2a0,0x3d5,0x2a0,0x2a0,0x2a0,0x2a0,0x2a0,0x2a0,0x384,0x3d5,0x2a0,0x2a0,0x2a0, +0x2a0,0x2a0,0x3d5,0x3cf,0x3d2,0x3d2,0x29a,0x29a,0x29a,0x29a,0x3cf,0x29a,0x3d2,0x3d2,0x3d2,0x29a, +0x3d2,0x3d2,0x29a,0x29a,0x3cf,0x29a,0x3d2,0x3d2,0x29a,0x29a,0x29a,0x384,0x3cf,0x3d2,0x3d2,0x29a, +0x3d2,0x29a,0x3cf,0x29a,0x2a0,0x3d2,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a, +0x2a0,0x29a,0x2a0,0x29a,0x29d,0x3cf,0x2a0,0x3d2,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x3d2, +0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x3d5,0x3cf,0x2a0,0x29a,0x2a0,0x3d2, +0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x3cf,0x3cc,0x3c9,0x2a0,0x29a,0x2a0,0x29a,0x3cf,0x2a0,0x29a,0x2a0, +0x29a,0x2a0,0x29a,0x3cc,0x3c9,0x3d5,0x3cf,0x2a0,0x3d2,0x2a0,0x29a,0x2a0,0x3d2,0x3d8,0x3d5,0x3cf, +0x2a0,0x3d2,0x2a0,0x29a,0x2a0,0x29a,0x3d5,0x3cf,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a, +0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x3d5,0x3cf,0x2a0,0x29a,0x2a0,0x3d2, +0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x2a0,0x29a,0x2a0, +0x29a,0x2a0,0x29a,0x28e,0x279,0x288,0x288,0x285,0x288,0x285,0x288,0x288,0x285,0x288,0x288,0x288, +0x285,0x27f,0x288,0x29d,0x288,0x288,0x285,0x288,0x288,0x285,0x288,0x288,0x288,0x285,0x285,0x285, +0x288,0x288,0x285,0x288,0x2a0,0x29a,0x288,0x285,0x288,0x285,0x288,0x288,0x285,0x288,0x27f,0x27f, +0x288,0x285,0x288,0x2a0,0x29a,0x288,0x288,0x288,0x285,0x288,0x285,0x288,0x288,0x273,0x27f,0x282, +0x288,0x285,0x27f,0x273,0x27c,0x27c,0x27c,0x27c,0x294,0x294,0x28e,0x294,0x294,0x28e,0x294,0x294, +0x28e,0x2a0,0x3d2,0x2a0,0x3d2,0x2a0,0x3d2,0x2a0,0x3d2,0x2a0,0x3d2,0x2a0,0x3d2,0x2a0,0x3d2,0x2a0, +0x3d2,0x285,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x288,0x285,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a, +0x2a0,0x29a,0x2a0,0x29a,0x29a,0x294,0x294,0x28e,0x2a0,0x29a,0x6e4,0x6e4,0x6f6,0x6f3,0x2a0,0x29a, +0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a, +0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x6f6,0x6f3,0x6f6,0x6f3,0x6e4,0x6e1,0x6f6,0x6f3, +0x882,0x957,0x6f0,0x6ed,0x6f0,0x6ed,0x6f6,0x6f3,0x6f6,0x6f3,0x6f6,0x6f3,0x6f6,0x6f3,0x6f6,0x6f3, +0x6f6,0x6f3,0x6f6,0x6f3,0x954,0x954,0x954,0xa5f,0xa5f,0xa5f,0xa62,0xa62,0xa5f,0xa62,0xa62,0xa5f, +0xa5f,0xa62,0xb3a,0xb3d,0xb3d,0xb3d,0xb3d,0xb3a,0xb3d,0xb3a,0xb3d,0xb3a,0xb3d,0xb3a,0xb3d,0xb3a, +0x279,0x3ba,0x279,0x28b,0x28b,0x279,0x28b,0x28b,0x279,0x297,0x279,0x28b,0x279,0x279,0x279,0x279, +0x279,0x3ba,0x279,0x28b,0x279,0x279,0x279,0x279,0x28b,0x28b,0x279,0x279,0x279,0x279,0x279,0x279, +0x279,0x279,0x28b,0x279,0x279,0x279,0x279,0x27f,0x279,0x279,0x279,0x279,0x27f,0x279,0x279,0x279, +0x279,0x279,0x279,0x279,0x279,0x279,0x279,0x279,0x279,0x28b,0x279,0x279,0x279,0x279,0x279,0x279, +0x279,0x279,0x28b,0x279,0x27c,0x279,0x279,0x279,0x279,0x279,0x279,0x279,0x279,0x279,0x27f,0x279, +0x279,0x279,0x279,0x279,0x279,0x279,0x279,0x279,0x279,0x6e7,0x6e7,0x6e7,0x6e7,0x6e7,0x954,0x954, +0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x96,0x96,0x9f,0x9f,0x96,0x96,0x96, +0x93,0x93,0x6c,0x6c,0x33c,0x6c,0x96,0x34b,0x99,0x34b,0x34b,0x34b,0x99,0x34b,0x96,0x96, +0x34e,0xa2,0x6c,0x6c,0x6c,0x6c,0x6c,0x6c,0x33f,0x33f,0x33f,0x33f,0x72,0x33f,0x6c,0x79e, +0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x6c,0x6c,0x6c,0x6c,0x6c,0x67b,0x67b,0x666,0x65d,0x663,0x8f1, +0x8f1,0x8f1,0x8f1,0x8f1,0x8f1,0x8f1,0x8f1,0x8f1,0x8f1,0x8f1,0x8f1,0x8f1,0x8f1,0x8f1,0x8f1,0x8f1, +0x3a2,0x3a2,0x3a2,0x3a2,0x3a2,0x39c,0x3a2,0x3a2,0x3a2,0x3a2,0x3a2,0x3a2,0x3a2,0x39c,0x396,0x3a2, +0x3a2,0x3a2,0x396,0x3a2,0x3a2,0x396,0x39c,0x396,0x396,0x396,0x396,0x3a2,0x396,0x396,0x396,0x396, +0x396,0x39c,0x39c,0x3a2,0x3a2,0x3a2,0x3a2,0x3a2,0x3a2,0x396,0x396,0x396,0x396,0x3a2,0x3a2,0x396, +0x3a2,0x3a2,0x39c,0x396,0x39c,0x3a2,0x39c,0x396,0x3a2,0x3a2,0x396,0x396,0x396,0x396,0x396,0x396, +0x39f,0x39f,0x5bb,0x39f,0x39f,0x5be,0x7a1,0x7a1,0x7a1,0x7a1,0x7a1,0x7a1,0x7a1,0x7a1,0x7a1,0x8ac, +0x99f,0x99f,0x99f,0x99f,0x99f,0x99f,0x99f,0x99f,0xac5,0xabf,0xabf,0xabf,0xac2,0x9a2,0x9a2,0x9a2, +0x399,0x399,0x7a4,0x8e8,0x8e8,0x8e8,0x8e8,0x8e8,0x8e8,0x8e8,0x8e8,0x8e8,0x8e8,0x8e8,0x8e8,0x8e8, +0xc2a,0xc27,0xc2a,0xc27,0x9c,0x1d1,0xc2a,0xc27,0,0,0x1d4,0xb22,0xb22,0xb22,0x4e,0x112e, +0,0,0,0,0x1cb,0x6f,0x1ec,0x78,0x1ec,0x1ec,0x1ec,0,0x1ec,0,0x1ec,0x1ec, +0x1e9,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7, +0x3b7,0x3b7,0,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7,0x3b7,0x1ec,0x1ec,0x1e9,0x1e9,0x1e9,0x1e9, +0x1e9,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4, +0x3b4,0x3b4,0x1e6,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4,0x3b4,0x1e9,0x1e9,0x1e9,0x1e9,0x1e9,0xc2d, +0x1ef,0x1ef,0x1f2,0x1e3,0x1e3,0x1ef,0x1e0,0x6a5,0x87f,0x87c,0x1d7,0x6a2,0x1d7,0x6a2,0x1d7,0x6a2, +0x1d7,0x6a2,0x189,0x186,0x189,0x186,0x189,0x186,0x189,0x186,0x189,0x186,0x189,0x186,0x189,0x186, +0x1ef,0x1ef,0x1e0,0x1da,0x80a,0x807,0x879,0x92a,0x927,0x930,0x92a,0x927,0xa4a,0xa4d,0xa4d,0xa4d, +0x68d,0x3ae,0x1a1,0x1a4,0x1a1,0x1a1,0x1a1,0x1a4,0x1a1,0x1a1,0x1a1,0x1a1,0x1a4,0x68d,0x1a4,0x1a1, +0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ae,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab, +0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab,0x3ab, +0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x3a8,0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x3a5, +0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x3a5,0x687,0x3a8,0x19b,0x19e, +0x19b,0x19b,0x19b,0x19e,0x19b,0x19b,0x19b,0x19b,0x19e,0x687,0x19e,0x19b,0x195,0x18f,0x195,0x18f, +0x195,0x18f,0x195,0x18f,0x195,0x18f,0x195,0x18f,0x195,0x18f,0x195,0x18f,0x195,0x18f,0x195,0x18f, +0x195,0x18f,0x198,0x192,0x195,0x18f,0x195,0x18f,0x195,0x18f,0x195,0x18f,0x195,0x18f,0x18c,0x5c7, +0x5ca,0x5ac,0x5ac,0xd53,0x681,0x681,0x873,0x870,0x68a,0x684,0x68a,0x684,0x1a1,0x19b,0x1a1,0x19b, +0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b, +0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b, +0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x19b,0x1a1,0x1a4,0x19e,0x1a1, +0x19b,0x873,0x870,0x1a1,0x19b,0x873,0x870,0x1a1,0x19b,0x873,0x870,0xb19,0x1a4,0x19e,0x1a4,0x19e, +0x1a1,0x19b,0x1a4,0x19e,0x1a1,0x19b,0x1a4,0x19e,0x1a4,0x19e,0x1a4,0x19e,0x1a1,0x19b,0x1a4,0x19e, +0x1a4,0x19e,0x1a4,0x19e,0x1a1,0x19b,0x1a4,0x19e,0x68d,0x687,0x1a4,0x19e,0x1a4,0x19e,0x1a4,0x19e, +0x1a4,0x19e,0xa23,0xa20,0x1a4,0x19e,0xb1c,0xb19,0xb1c,0xb19,0xb1c,0xb19,0x86d,0x86a,0x86d,0x86a, +0x86d,0x86a,0x86d,0x86a,0x86d,0x86a,0x86d,0x86a,0x86d,0x86a,0x86d,0x86a,0xb1c,0xb19,0xb1c,0xb19, +0xc1b,0xc18,0xc1b,0xc18,0xc1b,0xc18,0xc1b,0xc18,0xc1b,0xc18,0xc1b,0xc18,0xc1b,0xc18,0xc1b,0xc18, +0xd86,0xd83,0xf3f,0xf3c,0x111f,0x111c,0x1119,0x1116,0x1119,0x1116,0x111f,0x111c,0,0x162,0x162,0x162, +0x162,0x162,0x162,0x162,0x162,0x162,0x162,0x162,0x162,0x162,0x162,0x162,0x162,0x162,0x162,0x162, +0x162,0x162,0x162,0x162,0x162,0x162,0x162,0,0,0x165,0x153,0x153,0x153,0x159,0x153,0x156, +0x14cd,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f, +0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f,0x15f, +0x15f,0x15f,0x15f,0x15c,0x14cd,0x168,0x678,0,0,0x1110,0x1110,0x100b,0,0x5ee,0x5ee,0x5ee, +0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0xa50,0x5ee, +0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x5ee,0x222,0x222,0x222,0x222, +0x228,0x222,0x222,0x222,0x222,0x222,0xb25,0x222,0x222,0x222,0x234,0x222,0x22b,0x222,0x222,0x237, +0x5f1,0xa53,0xa59,0xa56,0,0,0,0,0,0,0,0,0x246,0x246,0x246,0x246, +0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246, +0x246,0x246,0x246,0x246,0x246,0x246,0x246,0,0,0,0,0x14df,0x246,0x246,0x246,0x231, +0x22e,0,0,0,0,0,0,0,0,0,0,0,0x915,0x915,0x915,0x915, +0x1008,0x10f8,0xbfa,0xbfa,0xbfa,0xbf7,0xbf7,0xa02,0x534,0x90f,0x90c,0x90c,0x903,0x903,0x903,0x903, +0x903,0x903,0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0x531,0x10c5,0x16cb,0xa08,0x537,0xf33,0x147,0x14a,0x14a, +0x14a,0x14a,0x14a,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147, +0x147,0x147,0x147,0x147,0x147,0x147,0x147,0xbfd,0xbfd,0xbfd,0xbfd,0xbfd,0x53a,0x147,0x147,0x147, +0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x5b2,0x5b2,0x5b2,0x5b2,0x5b2,0x5b2,0x5b2,0x5b2,0x7d4, +0x7d4,0x7d4,0x903,0x909,0x906,0x9ff,0x9ff,0x9ff,0x9ff,0x9ff,0x9ff,0xf2d,0x5cd,0x5cd,0x5cd,0x5cd, +0x5cd,0x5cd,0x5cd,0x5cd,0x5cd,0x5cd,0x12c,0x129,0x126,0x123,0x864,0x864,0x5af,0x147,0x147,0x150, +0x147,0x138,0x138,0x138,0x138,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147, +0x147,0x147,0x147,0x147,0x147,0x147,0x135,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147, +0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x135,0x147,0x147,0x147,0x147,0x147,0x147, +0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147, +0x675,0x675,0x147,0x147,0x147,0x147,0x147,0x675,0x14a,0x147,0x14a,0x147,0x147,0x147,0x147,0x147, +0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x675,0x147,0x147,0x147,0x14a,0x5d0,0x147,0x11d,0x11d, +0x11d,0x11d,0x11d,0x11d,0x11d,0x10b,0x123,0x120,0x120,0x11d,0x11d,0x11d,0x11d,0x14d,0x14d,0x11d, +0x11d,0x123,0x120,0x120,0x120,0x11d,0x912,0x912,0x12f,0x12f,0x12f,0x12f,0x12f,0x12f,0x12f,0x12f, +0x12f,0x12f,0x675,0x675,0x675,0x672,0x672,0x912,0x777,0x777,0x777,0x771,0x771,0x771,0x771,0x771, +0x771,0x771,0x771,0x76e,0x771,0x76e,0,0x77a,0x774,0x765,0x774,0x774,0x774,0x774,0x774,0x774, +0x774,0x774,0x774,0x774,0x774,0x774,0x774,0x774,0x774,0x774,0x774,0x774,0x774,0x774,0x774,0x774, +0x774,0x774,0x774,0x774,0x774,0x966,0x966,0x966,0x76b,0x76b,0x76b,0x76b,0x76b,0x76b,0x76b,0x76b, +0x76b,0x76b,0x76b,0x76b,0x76b,0x76b,0x76b,0x76b,0x768,0x768,0x768,0x768,0x768,0x768,0x768,0x768, +0x768,0x768,0x768,0,0,0x966,0x966,0x966,0xa05,0xa05,0xa05,0xa05,0xa05,0xa05,0xa05,0xa05, +0xa05,0xa05,0xa05,0xa05,0xa05,0xa05,0xa05,0xa05,0xa05,0xa05,0xa05,0xa05,0xa05,0xa05,0xa05,0xa05, +0xa05,0xa05,0xa05,0xa05,0xa05,0xa05,0xbfd,0xbfd,0xbfd,0xbfd,0xbfd,0xbfd,0xbfd,0xbfd,0xbfd,0xbfd, +0xbfd,0xbfd,0xbfd,0xbfd,0xbfd,0xbfd,0xbfd,0xbfd,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780, +0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780, +0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x77d,0x77d, +0x77d,0x77d,0x77d,0x77d,0x77d,0x77d,0x77d,0x77d,0x77d,0x888,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0xb70,0xb70,0xb70,0xb70,0xb70,0xb70,0xb70,0xb70, +0xb70,0xb70,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73, +0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73,0xb73, +0xb76,0xb76,0xb76,0xb67,0xb67,0xb67,0xb67,0xb67,0xb67,0xb67,0xb67,0xb67,0xb79,0xb79,0xb6a,0xb6a, +0xb6d,0xb7f,0xb7c,0,0,0x14fa,0x14fd,0x14fd,0xe5e,0xe5e,0xe5e,0xe5e,0xe67,0xe5e,0xe5e,0xe5e, +0xe67,0xe5e,0xe5e,0xe5e,0xe5e,0xe5b,0,0,0xe64,0xe64,0xe64,0xe64,0xe64,0xe64,0xe64,0xe6a, +0xe64,0xe6a,0xe64,0xe64,0xe64,0xe6a,0xe6a,0,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab, +0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab, +0xfab,0xfa5,0xfa5,0xfa5,0,0,0xfa8,0,0x144c,0x144c,0x144c,0x144c,0x144c,0x144c,0x144c,0x144c, +0x144c,0x144c,0x144c,0,0,0,0,0,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5, +0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16bf,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0, +0x16ce,0x16ce,0,0,0,0,0,0x17d3,0x16bc,0x16bc,0x16bc,0x16bc,0x16bc,0x16bc,0x16bc,0x16bc, +0x1113,0x16b,0x17a,0x17a,0,0x183,0x183,0x183,0x183,0x183,0x183,0x183,0x183,0,0,0x183, +0x183,0,0,0x183,0x183,0x183,0x183,0x183,0x183,0x183,0x183,0x183,0x183,0x183,0x183,0x183, +0x183,0,0x183,0x183,0x183,0x183,0x183,0x183,0x183,0,0x183,0,0,0,0x183,0x183, +0x183,0x183,0,0,0x16e,0x918,0x16b,0x17a,0x17a,0x16b,0x16b,0x16b,0x16b,0,0,0x17a, +0x17a,0,0,0x17d,0x17d,0x171,0xa0b,0,0,0,0,0,0,0,0,0x16b, +0,0,0,0,0x180,0x180,0,0x180,0x183,0x183,0x16b,0x16b,0,0,0x5d6,0x5d6, +0x5d6,0x5d6,0x5d6,0x5d6,0x5d6,0x5d6,0x5d6,0x5d6,0x183,0x183,0x177,0x177,0x174,0x174,0x174,0x174, +0x174,0x177,0x174,0xd74,0x1437,0x1434,0x14d0,0,0,0x942,0x204,0x945,0,0x216,0x216,0x216, +0x216,0x216,0x216,0,0,0,0,0x216,0x216,0,0,0x216,0x216,0x216,0x216,0x216, +0x216,0x216,0x216,0x216,0x216,0x216,0x216,0x216,0x216,0,0x216,0x216,0x216,0x216,0x216,0x216, +0x216,0,0x216,0x213,0,0x216,0x213,0,0x216,0x216,0,0,0x207,0,0x210,0x210, +0x210,0x204,0x204,0,0,0,0,0x204,0x204,0,0,0x204,0x204,0x20d,0,0, +0,0xc30,0,0,0,0,0,0,0,0x213,0x213,0x213,0x216,0,0x213,0, +0,0,0,0,0,0,0x5d9,0x5d9,0x5d9,0x5d9,0x5d9,0x5d9,0x5d9,0x5d9,0x5d9,0x5d9, +0x204,0x20a,0x216,0x216,0x216,0xc30,0x14dc,0,0,0,0,0,0,0,0,0, +0,0x1f5,0x1f5,0x1fe,0,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x93f,0x201,0,0x201, +0x201,0x201,0,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201, +0x201,0,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0,0x201,0x201,0,0x201,0x201,0x201, +0x201,0x201,0,0,0x1f8,0x201,0x1fe,0x1fe,0x1fe,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0,0x1f5, +0x1f5,0x1fe,0,0x1fe,0x1fe,0x1fb,0,0,0x201,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0x201,0x93f,0x939,0x939,0,0,0x5dc,0x5dc, +0x5dc,0x5dc,0x5dc,0x5dc,0x5dc,0x5dc,0x5dc,0x5dc,0x1020,0x93c,0,0,0,0,0,0, +0,0x12ed,0x143a,0x1440,0x143a,0x143d,0x143d,0x143d,0,0x2b8,0x2c7,0x2c7,0,0x2d0,0x2d0,0x2d0, +0x2d0,0x2d0,0x2d0,0x2d0,0x2d0,0,0,0x2d0,0x2d0,0,0,0x2d0,0x2d0,0x2d0,0x2d0,0x2d0, +0x2d0,0x2d0,0x2d0,0x2d0,0x2d0,0x2d0,0x2d0,0x2d0,0x2d0,0,0x2d0,0x2d0,0x2d0,0x2d0,0x2d0,0x2d0, +0x2d0,0,0x2d0,0x2d0,0,0x963,0x2d0,0x2d0,0x2d0,0x2d0,0,0,0x2bb,0x2d0,0x2b8,0x2b8, +0x2c7,0x2b8,0x2b8,0x2b8,0xc81,0,0,0x2c7,0x2ca,0,0,0x2ca,0x2ca,0x2be,0,0, +0,0,0,0,0,0x163e,0x2b8,0x2b8,0,0,0,0,0x2cd,0x2cd,0,0x2d0, +0x2d0,0x2d0,0xc81,0xc81,0,0,0x2c4,0x2c4,0x2c4,0x2c4,0x2c4,0x2c4,0x2c4,0x2c4,0x2c4,0x2c4, +0x2c1,0x963,0xf66,0xf66,0xf66,0xf66,0xf66,0xf66,0,0,0,0,0,0,0,0, +0,0,0x2d3,0x2df,0,0x2df,0x2df,0x2df,0x2df,0x2df,0x2df,0,0,0,0x2df,0x2df, +0x2df,0,0x2df,0x2df,0x2e2,0x2df,0,0,0,0x2df,0x2df,0,0x2df,0,0x2df,0x2df, +0,0,0,0x2df,0x2df,0,0,0,0x2df,0x2df,0x2df,0,0,0,0x2df,0x2df, +0x2df,0x2df,0x2df,0x2df,0x2df,0x2df,0xa6b,0x2df,0x2df,0x2df,0,0,0,0,0x2d3,0x2d9, +0x2d3,0x2d9,0x2d9,0,0,0,0x2d9,0x2d9,0x2d9,0,0x2dc,0x2dc,0x2dc,0x2d6,0,0, +0xc84,0,0,0,0,0,0,0x2d3,0,0,0,0,0,0,0,0, +0,0,0xafb,0x5e2,0x5e2,0x5e2,0x5e2,0x5e2,0x5e2,0x5e2,0x5e2,0x5e2,0x5df,0x5df,0x5df,0x9c9, +0x969,0x969,0x969,0x969,0x969,0x96c,0x969,0,0,0,0,0,0x1164,0x2f1,0x2f1,0x2f1, +0x14f1,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0,0x2f4,0x2f4,0x2f4,0,0x2f4,0x2f4, +0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0,0x2f4,0x2f4, +0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x1167,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0,0, +0x16ef,0xc90,0x2e5,0x2e5,0x2e5,0x2f1,0x2f1,0x2f1,0x2f1,0,0x2e5,0x2e5,0x2e8,0,0x2e5,0x2e5, +0x2e5,0x2eb,0,0,0,0,0,0,0,0x2e5,0x2e5,0,0xc8d,0xc8d,0x12fc,0, +0x17eb,0x16f2,0,0,0x2f4,0x2f4,0xc87,0xc87,0,0,0x2ee,0x2ee,0x2ee,0x2ee,0x2ee,0x2ee, +0x2ee,0x2ee,0x2ee,0x2ee,0,0,0,0,0,0,0,0x15a8,0xc8a,0xc8a,0xc8a,0xc8a, +0xc8a,0xc8a,0xc8a,0xc8a,0x1392,0x1131,0x24f,0x24f,0x14e2,0x258,0x258,0x258,0x258,0x258,0x258,0x258, +0x258,0,0x258,0x258,0x258,0,0x258,0x258,0x258,0x258,0x258,0x258,0x258,0x258,0x258,0x258, +0x258,0x258,0x258,0x258,0x258,0,0x258,0x258,0x258,0x258,0x258,0x258,0x258,0x258,0x258,0x258, +0,0x258,0x258,0x258,0x258,0x258,0,0,0x948,0x94b,0x24f,0x249,0x252,0x24f,0x249,0x24f, +0x24f,0,0x249,0x252,0x252,0,0x252,0x252,0x249,0x24c,0,0,0,0,0,0, +0,0x249,0x249,0,0,0,0,0,0x17df,0x16d4,0x255,0,0x258,0x258,0xb28,0xb28, +0,0,0x5e5,0x5e5,0x5e5,0x5e5,0x5e5,0x5e5,0x5e5,0x5e5,0x5e5,0x5e5,0,0xb2b,0xb2b,0x1767, +0,0,0,0,0,0,0,0,0,0,0,0,0x1443,0x1140,0x2af,0x2af, +0x163b,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0,0x2b5,0x2b5,0x2b5,0,0x2b5,0x2b5, +0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2af,0x2a6,0x2a6,0x2a6, +0xc57,0,0x2af,0x2af,0x2af,0,0x2b2,0x2b2,0x2b2,0x2a9,0xf63,0x1398,0,0,0,0, +0x139b,0x139b,0x139b,0x2a6,0x1398,0x1398,0x1398,0x1398,0x1398,0x1398,0x1398,0x12f9,0x2b5,0x2b5,0xc57,0xc57, +0,0,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0xc5a,0xc5a,0xc5a,0xc5a, +0xc5a,0xc5a,0x1398,0x1398,0x1398,0xc5d,0xc60,0xc60,0xc60,0xc60,0xc60,0xc60,0,0x1641,0x759,0x759, +0,0x762,0x762,0x762,0x762,0x762,0x762,0x762,0x762,0x762,0x762,0x75f,0x75f,0x762,0x762,0x762, +0x762,0x762,0x762,0,0,0,0x762,0x762,0x762,0x762,0x762,0x762,0x762,0x762,0x75f,0x762, +0x762,0x762,0x762,0x762,0x762,0x762,0x762,0x762,0x762,0x762,0,0x762,0x762,0x762,0x762,0x762, +0x762,0x762,0x762,0x762,0,0x762,0,0,0x762,0x762,0x762,0x762,0x762,0x762,0x762,0, +0,0,0x750,0,0,0,0,0x74d,0x759,0x759,0x74d,0x74d,0x74d,0,0x74d,0, +0x759,0x759,0x75c,0x759,0x75c,0x75c,0x75c,0x74a,0,0,0,0,0,0,0x1161,0x1161, +0x1161,0x1161,0x1161,0x1161,0x1161,0x1161,0x1161,0x1161,0,0,0x759,0x756,0x753,0,0,0, +0,0,0,0,0,0,0,0,0,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c, +0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c, +0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x30c,0x2f7,0x30c,0x309,0x2f7,0x2f7,0x2f7,0x2f7, +0x2f7,0x2f7,0x2fd,0,0,0,0,0x2a,0x312,0x312,0x312,0x312,0x312,0x30c,0x30f,0x2fa, +0x2fa,0x2fa,0x2fa,0x2fa,0x2fa,0x2f7,0x2fa,0x300,0x306,0x306,0x306,0x306,0x306,0x306,0x306,0x306, +0x306,0x306,0x303,0x303,0,0,0,0,0,0x26a,0x26a,0,0x26a,0,0x1590,0x26a, +0x26a,0x1590,0x26a,0,0x1590,0x26a,0x1590,0x1590,0x1590,0x1590,0x1590,0x1590,0x26a,0x26a,0x26a,0x26a, +0x1590,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x1590,0x26a,0x26a,0x26a,0,0x26a,0,0x26a, +0x1590,0x1590,0x26a,0x26a,0x1590,0x26a,0x26a,0x26a,0x26a,0x25b,0x26a,0x264,0x25b,0x25b,0x25b,0x25b, +0x25b,0x25b,0x158d,0x25b,0x25b,0x26a,0,0,0x270,0x270,0x270,0x270,0x270,0,0x26d,0, +0x25e,0x25e,0x25e,0x25e,0x25e,0x25b,0x176a,0,0x261,0x261,0x261,0x261,0x261,0x261,0x261,0x261, +0x261,0x261,0,0,0x267,0x267,0x1023,0x1023,0x639,0x639,0x639,0x636,0x639,0x639,0x639,0x639, +0,0x639,0x639,0x639,0x639,0x636,0x639,0x639,0x639,0x639,0x636,0x639,0x639,0x639,0x639,0x636, +0x639,0x639,0x639,0x639,0x636,0x639,0x639,0x639,0x639,0x639,0x639,0x639,0x639,0x639,0x639,0x639, +0x639,0x636,0x78f,0xc9c,0xc9c,0,0,0,0,0x5fa,0x5fa,0x5f7,0x5fa,0x5f7,0x5f7,0x60c, +0x5f7,0x60c,0x5fa,0x5fa,0x5fa,0x5fa,0x5fa,0x630,0x5fa,0x5f7,0x606,0x606,0x609,0x612,0x603,0x603, +0x639,0x639,0x639,0x639,0xf6f,0xf69,0xf69,0xf69,0x5fa,0x5fa,0x5fa,0x5f7,0x5fa,0x5fa,0x783,0x5fa, +0,0x5fa,0x5fa,0x5fa,0x5fa,0x5f7,0x5fa,0x5fa,0x5fa,0x5fa,0x5f7,0x5fa,0x5fa,0x5fa,0x5fa,0x5f7, +0x5fa,0x5fa,0x5fa,0x5fa,0x5f7,0x5fa,0x783,0x783,0x783,0x5fa,0x5fa,0x5fa,0x5fa,0x5fa,0x5fa,0x5fa, +0x783,0x5f7,0x783,0x783,0x783,0,0x78c,0x78c,0x789,0x789,0x789,0x789,0x789,0x789,0x786,0x789, +0x789,0x789,0x789,0x789,0x789,0,0xc93,0x789,0xa6e,0xa6e,0xc96,0xc99,0xc93,0xd59,0xd59,0xd59, +0xd59,0xf6c,0xf6c,0,0,0,0,0,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0,0x101d, +0,0,0,0,0,0x101d,0,0,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5, +0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0xa2f, +0x69c,0,0x69c,0x69c,0x69c,0x69c,0,0,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0, +0x69c,0,0x69c,0x69c,0x69c,0x69c,0,0,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0xa2f, +0x69c,0,0x69c,0x69c,0x69c,0x69c,0,0,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c, +0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0xa2f,0x69c,0,0x69c,0x69c, +0x69c,0x69c,0,0,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0,0x69c,0,0x69c,0x69c, +0x69c,0x69c,0,0,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0xa2f,0x69c,0x69c,0x69c,0x69c, +0x69c,0x69c,0x69c,0,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c, +0x69c,0x69c,0x69c,0xa2f,0x69c,0,0x69c,0x69c,0x69c,0x69c,0,0,0x69c,0x69c,0x69c,0x69c, +0x69c,0x69c,0x69c,0xa2f,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c, +0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0,0,0xf4b,0xf4b,0xa29,0xa2c,0x696,0x69f,0x693, +0x693,0x693,0x693,0x69f,0x69f,0x699,0x699,0x699,0x699,0x699,0x699,0x699,0x699,0x699,0x690,0x690, +0x690,0x690,0x690,0x690,0x690,0x690,0x690,0x690,0x690,0,0,0,0xa2f,0xa2f,0xa2f,0xa2f, +0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2c,0xa2c,0xa2c,0xa2c, +0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0,0,0,0,0,0,0x67e,0x67e,0x67e,0x67e, +0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e, +0x67e,0x12de,0,0,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0,0,0x741,0x744,0x744,0x744, +0x744,0x744,0x744,0x744,0x744,0x744,0x744,0x744,0x744,0x744,0x744,0x744,0x744,0x744,0x744,0x744, +0x744,0x744,0x744,0x744,0x744,0x744,0x744,0x73e,0x73b,0,0,0,0x747,0x747,0x747,0x747, +0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x65a,0x65a,0x65a,0x747,0x747,0x747,0x115b,0x115b,0x115b, +0x115b,0x115b,0x115b,0x115b,0x115b,0,0,0,0,0,0,0,0x891,0x891,0x891,0x891, +0x891,0x891,0x891,0x891,0x891,0x891,0x891,0x891,0x891,0x16fb,0x891,0x891,0x891,0x891,0x88b,0x88b, +0x88e,0x16f8,0,0,0,0,0,0,0,0,0,0x16fb,0x89a,0x89a,0x89a,0x89a, +0x89a,0x89a,0x89a,0x89a,0x89a,0x89a,0x89a,0x89a,0x89a,0x89a,0x89a,0x89a,0x89a,0x89a,0x894,0x894, +0x897,0x8d9,0x8d9,0,0,0,0,0,0,0,0,0,0x8a0,0x8a0,0x8a0,0x8a0, +0x8a0,0x8a0,0x8a0,0x8a0,0x8a0,0x8a0,0x8a0,0x8a0,0x8a0,0x8a0,0x8a0,0x8a0,0x8a0,0x8a0,0x89d,0x89d, +0,0,0,0,0,0,0,0,0,0,0,0,0x8a6,0x8a6,0x8a6,0x8a6, +0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0,0x8a6,0x8a6,0x8a6,0,0x8a3,0x8a3, +0,0,0,0,0,0,0,0,0,0,0,0,0x6d2,0x6d2,0x6d2,0x6d2, +0x6d2,0x6d2,0x6ab,0x6d2,0x6d2,0x6b7,0x6b7,0x6b7,0x6b7,0x6b7,0x6b1,0x6b1,0x6b7,0x6b4,0x6ba,0x6ae, +0x6de,0x6de,0x6cc,0x6d8,0x6c6,0x6c0,0x6c9,0x6c3,0x6d8,0x94e,0,0,0x6cf,0x6cf,0x6cf,0x6cf, +0x6cf,0x6cf,0x6cf,0x6cf,0x6cf,0x6cf,0,0,0,0,0,0,0x951,0x951,0x951,0x951, +0x951,0x951,0x951,0x951,0x951,0x951,0,0,0,0,0,0,0x702,0x702,0x7c8,0x7cb, +0x708,0x7c5,0x705,0x702,0x70b,0x71a,0x70e,0x71d,0x71d,0x71d,0x6f9,0x16ec,0x711,0x711,0x711,0x711, +0x711,0x711,0x711,0x711,0x711,0x711,0,0,0,0,0,0,0x714,0x714,0x714,0x714, +0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714, +0x714,0x714,0x714,0x714,0x14ee,0,0,0,0,0,0,0,0x714,0x714,0x714,0x714, +0x714,0x714,0x714,0x714,0x714,0x6fc,0xc63,0,0,0,0,0,0xdb9,0xdb9,0xdb9,0xdb9, +0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9, +0xdb9,0xdb9,0,0,0,0,0,0,0,0,0,0,0x981,0x981,0x981,0x981, +0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981, +0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x116a,0x116a,0,0x972,0x972,0x972,0x97e, +0x97e,0x97e,0x97e,0x972,0x972,0x97e,0x97e,0x97e,0,0,0,0,0x97e,0x97e,0x972,0x97e, +0x97e,0x97e,0x97e,0x97e,0x97e,0x975,0x975,0x975,0,0,0,0,0x978,0,0,0, +0x984,0x984,0x97b,0x97b,0x97b,0x97b,0x97b,0x97b,0x97b,0x97b,0x97b,0x97b,0x993,0x993,0x993,0x993, +0x993,0x993,0x993,0x993,0x993,0x993,0x993,0x993,0x993,0x993,0x993,0x993,0x993,0x993,0,0, +0x993,0x993,0x993,0x993,0x993,0,0,0,0,0,0,0,0,0,0,0, +0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xdbf,0xdbf,0,0,0,0, +0xaad,0xaad,0xaad,0xaad,0xaad,0xab0,0xab0,0xab0,0xaad,0xaad,0xab0,0xaad,0xaad,0xaad,0xaad,0xaad, +0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0,0,0,0,0,0,0xaaa,0xaaa,0xaaa,0xaaa, +0xaaa,0xaaa,0xaaa,0xaaa,0xaaa,0xaaa,0xdbc,0,0,0,0xaa7,0xaa7,0xa7a,0xa7a,0xa7a,0xa7a, +0xa7a,0xa7a,0xa7a,0xa7a,0xa7a,0xa7a,0xa7a,0xa7a,0xa7a,0xa7a,0xa7a,0xa7a,0xa7a,0xa7a,0xa7a,0xa7a, +0xa7a,0xa7a,0xa7a,0xa71,0xa71,0xa77,0xa77,0xa71,0,0,0xa74,0xa74,0xe04,0xe04,0xe04,0xe04, +0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04, +0xe04,0xe01,0xdec,0xe01,0xdec,0xdec,0xdec,0xdec,0xdec,0xdec,0xdec,0,0xdf5,0xdfe,0xdec,0xdfe, +0xdfe,0xdec,0xdec,0xdec,0xdec,0xdec,0xdec,0xdec,0xdec,0xe01,0xe01,0xe01,0xe01,0xe01,0xe01,0xdec, +0xdec,0xdf2,0xdf2,0xdf2,0xdf2,0xdf2,0xdf2,0xdf2,0xdf2,0,0,0xdef,0xdfb,0xdfb,0xdfb,0xdfb, +0xdfb,0xdfb,0xdfb,0xdfb,0xdfb,0xdfb,0,0,0,0,0,0,0xdfb,0xdfb,0xdfb,0xdfb, +0xdfb,0xdfb,0xdfb,0xdfb,0xdfb,0xdfb,0,0,0,0,0,0,0xdf8,0xdf8,0xdf8,0xdf8, +0xdf8,0xdf8,0xdf8,0xe07,0xe0a,0xe0a,0xe0a,0xe0a,0xdf8,0xdf8,0,0,0x1101,0x1101,0x1101,0x1101, +0x1101,0x1101,0x1101,0x1101,0x1101,0x1101,0x1101,0x1101,0x1101,0x1101,0x10fb,0x1623,0x1623,0x16b9,0x16b9,0x16b9, +0x16b9,0x16b9,0x16b9,0x16b9,0x16b9,0x16b9,0x16b9,0x16b9,0x16b3,0x16b3,0x16b3,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0xb5b,0xb5b,0xb40,0xb5b, +0xb49,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0x1704,0,0x17ee,0x17ee,0xb55,0xb55,0xb55,0xb55, +0xb55,0xb55,0xb55,0xb55,0xb55,0xb55,0xb64,0xb64,0xb4f,0xb52,0xb64,0xb64,0xf87,0xf87,0xf87,0xf87, +0xf87,0xf87,0xf7b,0xf84,0xf78,0xf78,0xf84,0xf84,0xf84,0xf78,0xf84,0xf78,0xf78,0xf78,0xf7e,0xf7e, +0,0,0,0,0,0,0,0,0xf81,0xf81,0xf81,0xf81,0xcd5,0xcd5,0xcd5,0xcd5, +0xcd2,0xcd2,0xcd2,0xcd2,0xcd2,0xcd2,0xcd2,0xcd2,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3, +0xcd2,0xcd2,0xcc9,0xcc6,0,0,0,0xcd8,0xcd8,0xccc,0xccc,0xccc,0xccf,0xccf,0xccf,0xccf, +0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0,0,0,0xcd5,0xcd5,0xcd5,0xcfc,0xcfc,0xcfc,0xcfc, +0xcfc,0xcfc,0xcfc,0xcfc,0xcfc,0xcfc,0xcff,0xcff,0xcff,0xcff,0xcff,0xcff,0x138c,0x138c,0x138c,0x138c, +0x138c,0x138c,0x138c,0x138c,0x138c,0x17dc,0x17d9,0,0,0,0,0,0x14d9,0x14d9,0x14d9,0x14d9, +0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0x14d9, +0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0x14d9,0,0,0x14d9,0x14d9,0x14d9,0x1047,0x1047,0x1047,0x1047, +0x1047,0x1047,0x1047,0x1047,0,0,0,0,0,0,0,0,0xf00,0xefd,0xf00,0xedc, +0xefd,0xf03,0xf03,0xf06,0xf03,0xf06,0xf09,0xefd,0xf06,0xf06,0xefd,0xefd,0xf06,0xedf,0xefd,0xefd, +0xefd,0xefd,0xefd,0xefd,0xefd,0xee5,0xee2,0xed9,0xed9,0xf03,0xed9,0xed9,0xed9,0xed9,0xee8,0x10b6, +0x10bc,0x10b9,0x10b9,0x14b2,0x12b4,0x12b4,0x160b,0,0,0,0,0,0x1e9,0x1e9,0x1e9,0x1e9, +0x1e9,0x1e9,0x1e9,0x1e9,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1e9,0x1e9,0x1e9,0x1e9, +0x1e9,0x1e9,0,0,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0,0,0x1e9,0x1e9,0x1e9,0x1e9, +0x1e9,0x1e9,0x1e9,0x1e9,0,0x1ec,0,0x1ec,0,0x1ec,0,0x1ec,0x1e9,0x1e9,0x1e9,0x1e9, +0x1e9,0x1e9,0x1e9,0x1e9,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1e9,0x1dd,0x1e9,0x1dd, +0x1e9,0x1dd,0x1e9,0x1dd,0x1e9,0x1dd,0x1e9,0x1dd,0x1e9,0x1dd,0,0,0x1e9,0x1e9,0x1e9,0x1e9, +0x1e9,0x1e9,0x1e9,0x1e9,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1e9,0x1e9,0x1e9,0x1e9, +0x1e9,0,0x1e9,0x1e9,0x1ec,0x1ec,0x1ec,0x1e3,0x1ec,0x1cb,0x1dd,0x1cb,0x1cb,0x1c8,0x1e9,0x1e9, +0x1e9,0,0x1e9,0x1e9,0x1ec,0x1e3,0x1ec,0x1e3,0x1ec,0x1c8,0x1c8,0x1c8,0x1e9,0x1e9,0x1e9,0x1dd, +0,0,0x1e9,0x1e9,0x1ec,0x1ec,0x1ec,0x1e3,0,0x1c8,0x1c8,0x1c8,0x1e9,0x1e9,0x1e9,0x1dd, +0x1e9,0x1e9,0x1e9,0x1e9,0x1ec,0x1ec,0x1ec,0x1e3,0x1ec,0x1c8,0x1c8,0x1c8,0,0,0x1e9,0x1e9, +0x1e9,0,0x1e9,0x1e9,0x1ec,0x1e3,0x1ec,0x1e3,0x1ec,0x1ce,0x1cb,0,0x81c,0x81f,0x81f,0x81f, +0xb9d,9,0x10c2,0x10c2,0x10c2,0x10c2,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x3f,0x885,0,0, +0x32a,0x3f,0x3f,0x3f,0x3f,0x3f,0x57,0x69,0x57,0x63,0x5d,0x3c0,0x3c,0x327,0x327,0x327, +0x327,0x3c,0x3c,0x3c,0x3c,0x3c,0x54,0x66,0x54,0x60,0x5a,0,0xa65,0xa65,0xa65,0xa65, +0xa65,0xf5a,0xf5a,0xf5a,0xf5a,0xf5a,0xf5a,0xf5a,0xf5a,0,0,0,0x10e,0x111,0x66f,0x66f, +0x858,0x85e,0x85e,0x85b,0x85b,0x85b,0x85b,0x9fc,0xb13,0xb13,0xb13,0xb13,0xd50,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0x282,0x282,0x282,0x6ea, +0xb2e,0xc36,0xc36,0xc36,0xc36,0xeac,0x12c9,0x12c9,0,0,0,0,0x384,0x384,0x384,0x384, +0x384,0x384,0x384,0x384,0x384,0x384,0xd5,0xd5,0xd2,0xd2,0xd2,0xd2,0xa1a,0xa17,0xa1a,0xa17, +0xa17,0xa0e,0xa0e,0xa0e,0xa0e,0xa0e,0xa0e,0xd80,0xd7d,0xd80,0xd7d,0xd77,0xd7a,0xd7a,0x1011,0x100e, +0,0,0,0,0,0xa14,0xa11,0xa11,0xa11,0xa0e,0xa14,0xa11,0xa32,0xa32,0xa32,0xa32, +0xa32,0xa32,0,0x1017,0,0,0,0,0,0x1017,0,0,0xab3,0xab3,0xab3,0xab3, +0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0x102f,0x102f, +0,0,0,0,0,0,0,0xab6,0xf75,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0xf72,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f, +0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0, +0,0,0,0,0,0,0,0,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0, +0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0, +0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0xa2f,0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0, +0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0, +0x7b0,0x7b0,0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b3,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0, +0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b3,0,0,0,0, +0,0,0,0,0,0,0,0,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3, +0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0x7a7,0x7a7,0x7aa,0x7aa,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x17c1,0x17c1,0x17be,0x17be, +0,0x513,0x50d,0x513,0x50d,0x513,0x50d,0x513,0x50d,0x513,0x50d,0x50d,0x510,0x50d,0x510,0x50d, +0x510,0x50d,0x510,0x50d,0x510,0x50d,0x510,0x50d,0x510,0x50d,0x510,0x50d,0x510,0x50d,0x510,0x50d, +0x50d,0x50d,0x50d,0x513,0x50d,0x513,0x50d,0x513,0x50d,0x50d,0x50d,0x50d,0x50d,0x50d,0x513,0x50d, +0x50d,0x50d,0x50d,0x50d,0x510,0x8cd,0x8cd,0,0,0x5c1,0x5c1,0x588,0x588,0x516,0x519,0x8ca, +0,0,0,0,0,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6, +0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6,0x4e6, +0x4e6,0xd44,0x14a3,0x1575,0,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504, +0x504,0x504,0x504,0x504,0x504,0x504,0x504,0,0x594,0x594,0x5a0,0x5a0,0x5a0,0x5a0,0x5a0,0x5a0, +0x5a0,0x5a0,0x5a0,0x5a0,0x5a0,0x5a0,0x5a0,0x5a0,0xd4a,0xd4a,0xd4a,0xd4a,0x1887,0x1887,0,0, +0,0,0,0,0,0,0,0x17c1,0x8d0,0x8d0,0x8d0,0x8d0,0x8d0,0x8d0,0x8d0,0x8d0, +0x8d0,0x8d0,0x8d0,0x8d0,0x8d0,0x8d0,0x8d0,0x8d0,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb, +0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x4fb, +0x4fb,0x4fb,0x4fb,0x4fb,0x4fb,0x9b7,0x9b7,0,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf, +0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0,0,0,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc, +0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x8d6,0x7bc,0x7bc,0x7bc,0x8d6,0x7bc,0, +0,0,0,0,0,0,0,0,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97, +0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xcde,0xcde,0xcde,0xcde,0xcde,0xcde,0xcde,0xcde, +0xcde,0xcde,0xce4,0xce4,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e, +0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe85,0xe85,0xe88,0xe91,0xe8b,0xe8b,0xe8b,0xe91, +0,0,0,0,0,0,0,0,0x16e0,0x16da,0x159c,0x1599,0x159c,0x159c,0x159c,0x1635, +0x1632,0x1635,0x1632,0x17e5,0x17e5,0x17e2,0,0,0x16e0,0x16da,0,0x16da,0,0x16da,0x16e0,0x16da, +0x16e0,0x16da,0x17e5,0x17e2,0x17e5,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0x16d7,0x16d7,0x16d7,0x162c,0x1629,0x1137, +0x102c,0x102c,0xf57,0xc36,0xc36,0xc36,0xc36,0xc36,0xaa4,0xaa4,0xaa4,0xaa1,0xaa1,0xa98,0xa98,0xaa1, +0xa9e,0xa9e,0xa9e,0xa9e,0x1644,0,0,0,0xeeb,0xeeb,0xeeb,0xeee,0xeee,0xeee,0xef1,0xef1, +0xef7,0xef1,0,0,0,0,0,0,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85, +0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb82,0xb82,0xb88,0xb88, +0,0,0,0,0,0,0,0,0xd20,0xd20,0xd20,0xd20,0xd1a,0x13a4,0,0, +0,0,0,0,0,0,0xd26,0xd26,0xd1d,0xd1d,0xd1d,0xd1d,0xd1d,0xd1d,0xd1d,0xd1d, +0xd1d,0xd1d,0,0,0,0,0,0,0xd17,0xd17,0xd17,0xd17,0xd17,0xd17,0xd17,0xd0b, +0xd0b,0xd0b,0xd0b,0xd0b,0xd0b,0xd0b,0xd0b,0xd0b,0xd0b,0xd0b,0xd14,0xd0e,0,0,0,0, +0,0,0,0,0,0,0,0xd11,0xed3,0xed3,0xed3,0xed3,0xed3,0xed3,0xed3,0xed3, +0xed3,0xed3,0xed3,0xed3,0xed3,0xed3,0xed3,0xed3,0xed3,0xed3,0xed3,0xed3,0xed3,0xed3,0xed3,0xed3, +0xed3,0xed3,0xed3,0xed3,0xed3,0,0,0,0xdd1,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd7, +0xde3,0xde3,0xdd4,0xdd4,0xdd4,0xdd4,0,0xefa,0xdda,0xdda,0xdda,0xdda,0xdda,0xdda,0xdda,0xdda, +0xdda,0xdda,0,0,0,0,0xdd4,0xdd4,0x114f,0x114f,0x114f,0x114f,0x114f,0x1143,0x1155,0x1152, +0x1152,0x1152,0x1152,0x1152,0x1152,0x1152,0x1152,0x1152,0x1149,0x1149,0x1149,0x1149,0x1149,0x1149,0x1149,0x1149, +0x1149,0x1149,0x1152,0x1152,0x1152,0x1152,0x1152,0,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae, +0xcae,0xc9f,0xc9f,0xc9f,0xc9f,0xc9f,0xc9f,0xca8,0xca8,0xc9f,0xc9f,0xca8,0xca8,0xc9f,0xc9f,0, +0,0,0,0,0,0,0,0,0xcab,0xcab,0xcab,0xc9f,0xcab,0xcab,0xcab,0xcab, +0xcab,0xcab,0xcab,0xcab,0xc9f,0xca8,0,0,0xca5,0xca5,0xca5,0xca5,0xca5,0xca5,0xca5,0xca5, +0xca5,0xca5,0,0,0xca2,0xcb1,0xcb1,0xcb1,0xe7c,0xe70,0xe7c,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0xe79,0xe79,0xe7f,0xe73,0xe76,0x1056,0x1056,0x1056,0x1056,0x1056,0x1056,0x1056,0x1056, +0x1056,0x1056,0x1056,0x1053,0x104d,0x104d,0x1053,0x1053,0x105c,0x105c,0x1056,0x1059,0x1059,0x1053,0x1050,0, +0,0,0,0,0,0,0,0,0,0xf4e,0xf4e,0xf4e,0xf4e,0xf4e,0xf4e,0, +0,0xf4e,0xf4e,0xf4e,0xf4e,0xf4e,0xf4e,0,0,0xf4e,0xf4e,0xf4e,0xf4e,0xf4e,0xf4e,0, +0,0,0,0,0,0,0,0,0xf4e,0xf4e,0xf4e,0xf4e,0xf4e,0xf4e,0xf4e,0, +0xf4e,0xf4e,0xf4e,0xf4e,0xf4e,0xf4e,0xf4e,0,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134, +0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x12f0,0x12f0,0x12f0,0x12f0,0x1134,0x112b,0x1599,0x1599, +0x162f,0x1638,0x161a,0x161a,0,0,0,0,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db, +0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0xe1c,0xe1c,0xe1c,0xe16,0xe16,0xe0d,0xe16,0xe16, +0xe0d,0xe16,0xe16,0xe1f,0xe19,0xe10,0,0,0xe13,0xe13,0xe13,0xe13,0xe13,0xe13,0xe13,0xe13, +0xe13,0xe13,0,0,0,0,0,0,0x648,0x648,0x648,0x648,0,0,0,0, +0,0,0,0,0,0,0,0,0xd9e,0xd9e,0xd9e,0xd9e,0xd9e,0xd9e,0xd9e,0xd9e, +0xd9e,0xd9e,0xd9e,0xd9e,0xd9e,0xd9e,0xd9e,0xd9e,0xd9e,0xd9e,0xd9e,0,0,0,0,0xd9b, +0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b, +0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0,0,0,0, +0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0,0,0,0,0,0,0,0,0, +0,0,0,0x15c,0x15c,0x15c,0x15c,0x15c,0,0,0,0,0,0x6a8,0x225,0x23d, +0x243,0x243,0x243,0x243,0x243,0x243,0x243,0x243,0x243,0x23a,0x23d,0x23d,0x23d,0x23d,0x23d,0x23d, +0x23d,0x23d,0x23d,0x23d,0x23d,0x23d,0x23d,0,0x23d,0x23d,0x23d,0x23d,0x23d,0,0x23d,0, +0x23d,0x23d,0,0x23d,0x23d,0,0x23d,0x23d,0x23d,0x23d,0x23d,0x23d,0x23d,0x23d,0x23d,0x240, +0x141,0x13b,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b, +0xf30,0xf30,0x16c2,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x141,0x13b,0x141,0x13b,0x141,0x141,0x13b, +0x13b,0x13b,0x13b,0x13e,0x13b,0x13b,0x13e,0x13b,0x13e,0x13e,0x13e,0x13b,0x13e,0x13e,0x13e,0x13e, +0,0,0x13e,0x13e,0x13e,0x13e,0x13b,0x13b,0x13e,0x13b,0x13b,0x13b,0x13b,0x13e,0x13b,0x13b, +0x13b,0x13b,0x13b,0x13e,0x13e,0x13e,0x13b,0x13b,0,0,0,0,0,0,0,0x16c2, +0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813, +0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af, +0xadd,0xace,0xac8,0xada,0xad7,0xad1,0xad1,0xae0,0xacb,0xad4,0,0,0,0,0,0, +0x495,0x4b9,0x4b6,0x4b9,0x4b6,0x8dc,0x8dc,0x9ae,0x9a8,0x498,0x498,0x498,0x498,0x4ce,0x4ce,0x4ce, +0x4bc,0x4bf,0x4d4,0,0x4c2,0x4c5,0x4d7,0x4d7,0x4b0,0x4a4,0x492,0x4a4,0x492,0x4a4,0x492,0x49b, +0x49b,0x4c8,0x4c8,0x4cb,0x4c8,0x4c8,0x4c8,0,0x4c8,0x4ad,0x4aa,0x49b,0,0,0,0, +0x132,0x144,0x132,0x867,0x132,0,0x132,0x144,0x132,0x144,0x132,0x144,0x132,0x144,0x132,0x144, +0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x141, +0x13b,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x141,0x13b,0x141,0x13b,0x141,0x13b,0,0,0x1b, +0,0x429,0x408,0x3f6,0x3ff,0x3fc,0x3f6,0x40b,0x3f9,0x3f3,0x3f6,0x417,0x40e,0x405,0x426,0x3f6, +0x423,0x423,0x423,0x423,0x423,0x423,0x423,0x423,0x423,0x423,0x414,0x411,0x417,0x417,0x417,0x429, +0x3ea,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7, +0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0, +0,0,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0,0,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7, +0,0,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0x3e7,0,0,0x3e7,0x3e7,0x3e7,0,0,0, +0x3fc,0x3ff,0x417,0x41a,0x3f6,0x3ff,0x3ff,0,0x3e1,0x3e4,0x3e4,0x3e4,0x3e4,0x3e1,0x3e1,0, +9,9,9,9,9,9,9,9,9,0x651,0x651,0x651,0x64b,0x31b,0x315,0x315, +0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0,0x987,0x987,0x987, +0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987, +0x987,0x987,0x987,0,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987, +0x987,0x987,0x987,0x987,0x987,0x987,0x987,0,0x987,0x987,0,0x987,0x987,0x987,0x987,0x987, +0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0,0,0x987,0x987,0x987,0x987, +0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0,0,0x987,0x987,0x987,0x987, +0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987, +0x987,0x987,0x987,0x987,0x987,0x987,0x987,0,0,0,0,0,0x9c0,0x9c0,0x9c6,0, +0,0,0,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd, +0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0,0,0,0x9c3, +0x9c3,0x9c3,0x9c3,0x9c3,0x9c3,0x9c3,0x9c3,0x9c3,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e, +0xa3e,0xa3e,0xa3e,0x1128,0x1128,0x138f,0x138f,0,0xba0,0xba0,0xba0,0xba0,0xba0,0xba0,0xba0,0xba0, +0xba0,0xba0,0xba0,0xba0,0x1614,0,0,0,0x1128,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6, +0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6, +0xba6,0xba6,0xba6,0xba6,0xba6,0xbdf,0,0,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3, +0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0xcf3, +0xcf3,0xcf3,0xcf3,0xcf3,0xcf3,0,0,0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0, +0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0x12b7,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae, +0x12ae,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae,0x12ae, +0x12ae,0x12ae,0x12ae,0x12ae,0,0,0,0,0x80d,0x80d,0x80d,0x80d,0,0,0,0, +0,0,0,0,0,0x1449,0x1449,0x1449,0x804,0x804,0x804,0x804,0x804,0x804,0x804,0x804, +0x804,0x804,0x804,0x804,0x804,0x804,0x804,0x804,0x804,0x804,0x804,0,0,0,0,0, +0x118b,0x118b,0x118b,0x118b,0x118b,0x118b,0x118b,0x118b,0x118b,0x118b,0x118b,0x118b,0x118b,0x118b,0x118b,0x118b, +0x118b,0x118b,0x118b,0x118b,0x118b,0x118b,0x1188,0x1188,0x1188,0x1188,0x1188,0,0,0,0,0, +0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999, +0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0,0x996, +0xabc,0xabc,0xabc,0xabc,0,0,0,0,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc, +0xab9,0xabc,0xabc,0xabc,0xabc,0xabc,0,0,0,0,0,0,0,0,0,0, +0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d, +0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0x98d,0,0, +0x98a,0x98a,0x98a,0x98a,0x98a,0x98a,0x98a,0x98a,0x98a,0x98a,0,0,0,0,0,0, +0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a, +0x140a,0x140a,0x140a,0x140a,0,0,0,0,0x1407,0x1407,0x1407,0x1407,0x1407,0x1407,0x1407,0x1407, +0x1407,0x1407,0x1407,0x1407,0x1407,0x1407,0x1407,0x1407,0x1407,0x1407,0x1407,0x1407,0x1407,0x1407,0x1407,0x1407, +0x1407,0x1407,0x1407,0x1407,0,0,0,0,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4, +0,0,0,0,0,0,0,0,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263, +0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0,0,0,0,0,0,0,0, +0,0,0,0x1260,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0, +0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0,0x173a,0x173a,0,0x1737,0x1737,0x1737,0x1737,0x1737, +0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737, +0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0,0x1737, +0x1737,0,0,0,0x1857,0x1857,0x1857,0x1857,0x185a,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857, +0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0,0,0,0,0,0,0,0, +0,0,0,0,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185, +0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0,0,0,0,0, +0,0,0,0,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185, +0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0,0,0,0,0,0, +0,0,0,0,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0x30f,0x30f,0x30f,0x30f,0x30f,0x31e,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f, -0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f,0x30f, -0x312,0x6b1,0x85e,0x861,0x6b7,0x861,0x85b,0x6ab,0x6a2,0x318,0x6c0,0x31b,0x864,0x699,0x6ae,0x858, -0x6b4,0x6bd,0x69f,0x69f,0x6a5,0x315,0x6ab,0x6a8,0x6a2,0x69f,0x6c0,0x31b,0x69c,0x69c,0x69c,0x6b1, -0x324,0x324,0x324,0x324,0x324,0x324,0x6c9,0x324,0x324,0x324,0x324,0x324,0x324,0x324,0x324,0x324, -0x6c9,0x324,0x324,0x324,0x324,0x324,0x324,0x6ba,0x6c9,0x324,0x324,0x324,0x324,0x324,0x6c9,0x6c3, -0x6c6,0x6c6,0x321,0x321,0x321,0x321,0x6c3,0x321,0x6c6,0x6c6,0x6c6,0x321,0x6c6,0x6c6,0x321,0x321, -0x6c3,0x321,0x6c6,0x6c6,0x321,0x321,0x321,0x6ba,0x6c3,0x6c6,0x6c6,0x321,0x6c6,0x321,0x6c3,0x321, -0x330,0x6d5,0x330,0x32a,0x330,0x32a,0x330,0x32a,0x330,0x32a,0x330,0x32a,0x330,0x32a,0x330,0x32a, -0x32d,0x6d2,0x330,0x6d5,0x330,0x32a,0x330,0x32a,0x330,0x32a,0x330,0x6d5,0x330,0x32a,0x330,0x32a, -0x330,0x32a,0x330,0x32a,0x330,0x32a,0x6d8,0x6d2,0x330,0x32a,0x330,0x6d5,0x330,0x32a,0x330,0x32a, -0x330,0x6d2,0x6cf,0x6cc,0x330,0x32a,0x330,0x32a,0x6d2,0x330,0x32a,0x330,0x32a,0x330,0x32a,0x6cf, -0x6cc,0x6d8,0x6d2,0x330,0x6d5,0x330,0x32a,0x330,0x6d5,0x6db,0x6d8,0x6d2,0x330,0x6d5,0x330,0x32a, -0x330,0x32a,0x6d8,0x6d2,0x330,0x32a,0x330,0x32a,0x330,0x32a,0x330,0x32a,0x330,0x32a,0x330,0x32a, -0x330,0x32a,0x330,0x32a,0x330,0x32a,0x6d8,0x6d2,0x330,0x32a,0x330,0x6d5,0x330,0x32a,0x330,0x32a, -0x330,0x32a,0x330,0x32a,0x330,0x32a,0x330,0x32a,0x330,0x330,0x32a,0x330,0x32a,0x330,0x32a,0x327, -0x336,0x345,0x345,0x342,0x345,0x342,0x345,0x345,0x342,0x345,0x345,0x345,0x342,0x33c,0x345,0x351, -0x345,0x345,0x342,0x345,0x345,0x342,0x345,0x345,0x345,0x342,0x342,0x342,0x345,0x345,0x342,0x345, -0x354,0x34e,0x345,0x342,0x345,0x342,0x345,0x345,0x342,0x345,0x33c,0x33c,0x345,0x342,0x345,0x354, -0x34e,0x345,0x345,0x345,0x342,0x345,0x342,0x345,0x345,0x333,0x33c,0x33f,0x345,0x342,0x33c,0x333, -0x339,0x339,0x339,0x339,0x34b,0x34b,0x348,0x34b,0x34b,0x348,0x34b,0x34b,0x348,0x354,0x6de,0x354, -0x6de,0x354,0x6de,0x354,0x6de,0x354,0x6de,0x354,0x6de,0x354,0x6de,0x354,0x6de,0x342,0x354,0x34e, -0x354,0x34e,0x354,0x34e,0x345,0x342,0x354,0x34e,0x354,0x34e,0x354,0x34e,0x354,0x34e,0x354,0x34e, -0x34e,0x34b,0x34b,0x348,0x354,0x34e,0xa4a,0xa4a,0xa56,0xa53,0x354,0x34e,0x354,0x34e,0x354,0x34e, -0x354,0x34e,0x354,0x34e,0x354,0x34e,0x354,0x34e,0x354,0x34e,0x354,0x34e,0x354,0x34e,0x354,0x34e, -0x354,0x34e,0x354,0x34e,0xa56,0xa53,0xa56,0xa53,0xa4a,0xa47,0xa56,0xa53,0xc27,0xd23,0xa50,0xa4d, -0xa50,0xa4d,0xa56,0xa53,0xa56,0xa53,0xa56,0xa53,0xa56,0xa53,0xa56,0xa53,0xa56,0xa53,0xa56,0xa53, -0xd20,0xd20,0xd20,0xe1c,0xe1c,0xe1c,0xe1f,0xe1f,0xe1c,0xe1f,0xe1f,0xe1c,0xe1c,0xe1f,0xf69,0xf6c, -0xf6c,0xf6c,0xf6c,0xf69,0xf6c,0xf69,0xf6c,0xf69,0xf6c,0xf69,0xf6c,0xf69,0x357,0x6e1,0x357,0x360, -0x360,0x357,0x360,0x360,0x357,0x363,0x357,0x360,0x357,0x357,0x357,0x357,0x357,0x6e1,0x357,0x360, -0x357,0x357,0x357,0x357,0x360,0x360,0x357,0x357,0x357,0x357,0x357,0x357,0x357,0x357,0x360,0x357, -0x357,0x357,0x357,0x35d,0x357,0x357,0x357,0x357,0x35d,0x357,0x357,0x357,0x357,0x357,0x357,0x357, -0x357,0x357,0x357,0x357,0x357,0x360,0x357,0x357,0x357,0x357,0x357,0x357,0x357,0x357,0x360,0x357, -0x35a,0x357,0x357,0x357,0x357,0x357,0x357,0x357,0x357,0x357,0x35d,0x357,0x357,0x357,0x357,0x357, -0x357,0x357,0x357,0x357,0x357,0xa59,0xa59,0xa59,0xa59,0xa59,0xd26,0xd26,0x37b,0x37b,0x37b,0x37b, -0x37b,0x37b,0x37b,0x37b,0x37b,0x36f,0x36f,0x375,0x375,0x36f,0x36f,0x36f,0x36c,0x36c,0x366,0x366, -0x6e4,0x366,0x36f,0x6ea,0x372,0x6ea,0x6ea,0x6ea,0x372,0x6ea,0x36f,0x36f,0x6ed,0x378,0x366,0x366, -0x366,0x366,0x366,0x366,0x6e7,0x6e7,0x6e7,0x6e7,0x369,0x6e7,0x366,0xba3,0x37b,0x37b,0x37b,0x37b, -0x37b,0x366,0x366,0x366,0x366,0x366,0xa65,0xa65,0xa62,0xa5c,0xa5f,0xd29,0xd29,0xd29,0xd29,0xd29, -0xd29,0xd29,0xd29,0xd29,0xd29,0xd29,0xd29,0xd29,0xd29,0xd29,0xd29,0xd29,0x6fc,0x6fc,0x6fc,0x6fc, -0x6fc,0x6f6,0x6fc,0x6fc,0x6fc,0x6fc,0x6fc,0x6fc,0x6fc,0x6f6,0x6f0,0x6fc,0x6fc,0x6fc,0x6f0,0x6fc, -0x6fc,0x6f0,0x6f6,0x6f0,0x6f0,0x6f0,0x6f0,0x6fc,0x6f0,0x6f0,0x6f0,0x6f0,0x6f0,0x6f6,0x6f6,0x6fc, -0x6fc,0x6fc,0x6fc,0x6fc,0x6fc,0x6f0,0x6f0,0x6f0,0x6f0,0x6fc,0x6fc,0x6f0,0x6fc,0x6fc,0x6f6,0x6f0, -0x6f6,0x6fc,0x6f6,0x6f0,0x6fc,0x6fc,0x6f0,0x6f0,0x6f0,0x6f0,0x6f0,0x6f0,0x6f9,0x6f9,0x9a2,0x6f9, -0x6f9,0x9a5,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xba6,0xcd8,0xde6,0xde6,0xde6,0xde6, -0xde6,0xde6,0xde6,0xde6,0xf30,0xf2a,0xf2a,0xf2a,0xf2d,0xde9,0xde9,0xde9,0x6f3,0x6f3,0xba9,0xd1d, -0xd1d,0xd1d,0xd1d,0xd1d,0xd1d,0xd1d,0xd1d,0xd1d,0xd1d,0xd1d,0xd1d,0xd1d,0x1029,0x1026,0x1029,0x1026, -0x387,0x393,0x1029,0x1026,9,9,0x396,0xf6f,0xf6f,0xf6f,0x37e,0x15ab,9,9,9,9, -0x390,0x381,0x3ab,0x384,0x3ab,0x3ab,0x3ab,9,0x3ab,9,0x3ab,0x3ab,0x3a8,0x702,0x702,0x702, -0x702,0x702,0x702,0x702,0x702,0x702,0x702,0x702,0x702,0x702,0x702,0x702,0x702,0x702,9,0x702, -0x702,0x702,0x702,0x702,0x702,0x702,0x3ab,0x3ab,0x3a8,0x3a8,0x3a8,0x3a8,0x3a8,0x6ff,0x6ff,0x6ff, -0x6ff,0x6ff,0x6ff,0x6ff,0x6ff,0x6ff,0x6ff,0x6ff,0x6ff,0x6ff,0x6ff,0x6ff,0x6ff,0x6ff,0x3a5,0x6ff, -0x6ff,0x6ff,0x6ff,0x6ff,0x6ff,0x6ff,0x3a8,0x3a8,0x3a8,0x3a8,0x3a8,0x102c,0x3ae,0x3ae,0x3b1,0x3a2, -0x3a2,0x3ae,0x39f,0xa6b,0xc30,0xc2d,0x399,0xa68,0x399,0xa68,0x399,0xa68,0x399,0xa68,0x38d,0x38a, -0x38d,0x38a,0x38d,0x38a,0x38d,0x38a,0x38d,0x38a,0x38d,0x38a,0x38d,0x38a,0x3ae,0x3ae,0x39f,0x39c, -0xbe5,0xbe2,0xc2a,0xd2f,0xd2c,0xd32,0xd2f,0xd2c,0xe22,0xe25,0xe25,0xe25,0xa7a,0x70e,0x3c9,0x3cc, -0x3c9,0x3c9,0x3c9,0x3cc,0x3c9,0x3c9,0x3c9,0x3c9,0x3cc,0xa7a,0x3cc,0x3c9,0x70b,0x70b,0x70b,0x70b, -0x70b,0x70b,0x70b,0x70b,0x70b,0x70e,0x70b,0x70b,0x70b,0x70b,0x70b,0x70b,0x70b,0x70b,0x70b,0x70b, -0x70b,0x70b,0x70b,0x70b,0x70b,0x70b,0x70b,0x70b,0x70b,0x70b,0x70b,0x70b,0x705,0x705,0x705,0x705, -0x705,0x705,0x705,0x705,0x705,0x708,0x705,0x705,0x705,0x705,0x705,0x705,0x705,0x705,0x705,0x705, -0x705,0x705,0x705,0x705,0x705,0x705,0x705,0x705,0xa74,0x708,0x3c3,0x3c6,0x3c3,0x3c3,0x3c3,0x3c6, -0x3c3,0x3c3,0x3c3,0x3c3,0x3c6,0xa74,0x3c6,0x3c3,0x3bd,0x3b7,0x3bd,0x3b7,0x3bd,0x3b7,0x3bd,0x3b7, -0x3bd,0x3b7,0x3bd,0x3b7,0x3bd,0x3b7,0x3bd,0x3b7,0x3bd,0x3b7,0x3bd,0x3b7,0x3bd,0x3b7,0x3c0,0x3ba, -0x3bd,0x3b7,0x3bd,0x3b7,0x3bd,0x3b7,0x3bd,0x3b7,0x3bd,0x3b7,0x3b4,0x9ae,0x9b1,0x993,0x993,0x1203, -0xa6e,0xa6e,0xc36,0xc33,0xa77,0xa71,0xa77,0xa71,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3, -0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3, -0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3, -0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3c3,0x3c9,0x3cc,0x3c6,0x3c9,0x3c3,0xc36,0xc33,0x3c9, -0x3c3,0xc36,0xc33,0x3c9,0x3c3,0xc36,0xc33,0xf72,0x3cc,0x3c6,0x3cc,0x3c6,0x3c9,0x3c3,0x3cc,0x3c6, -0x3c9,0x3c3,0x3cc,0x3c6,0x3cc,0x3c6,0x3cc,0x3c6,0x3c9,0x3c3,0x3cc,0x3c6,0x3cc,0x3c6,0x3cc,0x3c6, -0x3c9,0x3c3,0x3cc,0x3c6,0xa7a,0xa74,0x3cc,0x3c6,0x3cc,0x3c6,0x3cc,0x3c6,0x3cc,0x3c6,0xe2b,0xe28, -0x3cc,0x3c6,0xf75,0xf72,0xf75,0xf72,0xf75,0xf72,0xc9c,0xc99,0xc9c,0xc99,0xc9c,0xc99,0xc9c,0xc99, -0xc9c,0xc99,0xc9c,0xc99,0xc9c,0xc99,0xc9c,0xc99,0xfa2,0xf9f,0xfa2,0xf9f,0x10ad,0x10aa,0x10ad,0x10aa, -0x10ad,0x10aa,0x10ad,0x10aa,0x10ad,0x10aa,0x10ad,0x10aa,0x10ad,0x10aa,0x10ad,0x10aa,0x123c,0x1239,0x1419,0x1416, -0x15e7,0x15e4,0x15e1,0x15de,0x15e1,0x15de,0x15e7,0x15e4,0xc,0x3de,0x3de,0x3de,0x3de,0x3de,0x3de,0x3de, -0x3de,0x3de,0x3de,0x3de,0x3de,0x3de,0x3de,0x3de,0x3de,0x3de,0x3de,0x3de,0x3de,0x3de,0x3de,0x3de, -0x3de,0x3de,0x3de,0xc,0xc,0x3e1,0x3cf,0x3cf,0x3cf,0x3d5,0x3cf,0x3d2,0x19fe,0x3db,0x3db,0x3db, -0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db, -0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3d8, -0x19fe,0x3e4,0xa7d,0xc,0xc,0x15ae,0x15ae,0x14c7,0xf,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5, -0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0xe2e,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5, -0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x3e7,0x3e7,0x3e7,0x3e7,0x3ea,0x3e7,0x3e7,0x3e7, -0x3e7,0x3e7,0xf78,0x3e7,0x3e7,0x3e7,0x3f6,0x3e7,0x3ed,0x3e7,0x3e7,0x3f9,0x9d8,0xe31,0xe37,0xe34, -0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc, -0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc,0x3fc, -0x3fc,0x3fc,0x3fc,0xf,0xf,0xf,0xf,0x1a01,0x3fc,0x3fc,0x3fc,0x3f3,0x3f0,0xf,0xf,0xf, -0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xd47,0xd47,0xd47,0xd47,0x14ca,0x15b1,0x1035,0x1035, -0x1035,0x1032,0x1032,0xe3d,0x918,0xd41,0xd3e,0xd3e,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0x102f,0x102f, -0x102f,0x102f,0x102f,0x915,0x15a8,0x1c23,0xe40,0x91b,0x13e0,0x41d,0x420,0x420,0x420,0x420,0x420,0x41d, -0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d, -0x41d,0x41d,0x41d,0x1038,0x1038,0x1038,0x1038,0x1038,0x91e,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d, -0x41d,0x41d,0x41d,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0x999,0xbdc,0xbdc,0xbdc,0xd35,0xd3b, -0xd38,0xe3a,0xe3a,0xe3a,0xe3a,0xe3a,0xe3a,0x13dd,0x9b4,0x9b4,0x9b4,0x9b4,0x9b4,0x9b4,0x9b4,0x9b4, -0x9b4,0x9b4,0x411,0x40e,0x40b,0x408,0xc39,0xc39,0x996,0x41d,0x41d,0x426,0x41d,0x41a,0x41a,0x41a, -0x41a,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d, -0x41d,0x41d,0x417,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d, -0x41d,0x41d,0x41d,0x41d,0x41d,0x417,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d, -0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0xa83,0xa83,0x41d,0x41d, -0x41d,0x41d,0x41d,0xa83,0x420,0x41d,0x420,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d,0x41d, -0x41d,0x41d,0x41d,0xa83,0x41d,0x41d,0x41d,0x420,0x9b7,0x41d,0x402,0x402,0x402,0x402,0x402,0x402, -0x402,0x3ff,0x408,0x405,0x405,0x402,0x402,0x402,0x402,0x423,0x423,0x402,0x402,0x408,0x405,0x405, -0x405,0x402,0xd44,0xd44,0x414,0x414,0x414,0x414,0x414,0x414,0x414,0x414,0x414,0x414,0xa83,0xa83, -0xa83,0xa80,0xa80,0xd44,0xa98,0xa98,0xa98,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa8f, -0xa92,0xa8f,0x12,0xa9b,0xa95,0xa86,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95, -0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95,0xa95, -0xa95,0xd4a,0xd4a,0xd4a,0xa8c,0xa8c,0xa8c,0xa8c,0xa8c,0xa8c,0xa8c,0xa8c,0xa8c,0xa8c,0xa8c,0xa8c, -0xa8c,0xa8c,0xa8c,0xa8c,0xa89,0xa89,0xa89,0xa89,0xa89,0xa89,0xa89,0xa89,0xa89,0xa89,0xa89,0x12, -0x12,0xd4a,0xd4a,0xd4a,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0, -0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0, -0xea0,0xea0,0x10bf,0x10bf,0x10bf,0x10bf,0x10bf,0x10bf,0x10bf,0x10bf,0x10bf,0x10bf,0x10bf,0x10bf,0x10bf,0x10bf, -0x10bf,0x10bf,0x10bf,0x10bf,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1, -0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1, -0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xaa1,0xa9e,0xa9e,0xa9e,0xa9e,0xa9e,0xa9e, -0xa9e,0xa9e,0xa9e,0xa9e,0xa9e,0xc3c,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15, -0x15,0x15,0x15,0x15,0xfba,0xfba,0xfba,0xfba,0xfba,0xfba,0xfba,0xfba,0xfba,0xfba,0xfbd,0xfbd, -0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd, -0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfc0,0xfc0,0xfc0,0xfb1, -0xfb1,0xfb1,0xfb1,0xfb1,0xfb1,0xfb1,0xfb1,0xfb1,0xfc3,0xfc3,0xfb4,0xfb4,0xfb7,0xfc9,0xfc6,0xff, -0xff,0x1a25,0x1a28,0x1a28,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0xbb5,0xbb5,0xbb8,0xbb8,0xbb5,0xbb5,0xbb5,0xbb5,0xbb5,0xbb5,0xbb5,0xbb5, -0x1d67,0x1d67,0x1d64,0x1d64,0x1dd,0x1dd,0x1dd,0x1dd,0x1dd,0x1dd,0x1dd,0x1728,0x1728,0x1728,0x1728,0x1728, -0x1728,0x1728,0x1728,0x1728,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1e9,0x1e9,0x1e9,0x1e9,0x1e9,0x1e9,0x1e9,0x1e9,0x1e9,0x1761,0x1761,0x1761, -0x1761,0x1761,0x1761,0x1761,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x168,0x168,0x168, -0x168,0x168,0x168,0x168,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1daf,0x1daf,0x1daf,0x1daf,0x1daf,0x1daf,0x2ca,0x2ca,0x2ca,0x2ca,0x2ca,0x2ca, -0x2ca,0x2ca,0x1da9,0x1da9,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1d01,0x1cfe,0x1bf,0x1bf,0x1bf,0x1bf,0x1bf,0x1bf,0x1bf,0x1bf,0x1bf,0x1bf, -0x1bf,0x1bf,0x1bf,0x1bf,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1c80,0x1c80,0x1c80,0x1c80,0x1c80,0x1c80,0x1c80,0x1fe,0x1fe,0x1fe,0x1fe,0x1fe, -0x1fe,0x1fe,0x1fe,0x1fe,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246,0x246, -0x246,0x246,0x246,0x246,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1a76,0x1a76,0x1a76,0x1a76,0x1a76,0x1a76,0x1a76,0x1a76,0x1a76,0x1a76,0x24c,0x24c, -0x24c,0x24c,0x24c,0x24c,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1be7,0x288,0x288,0x288,0x288,0x288,0x288,0x288,0x288,0x288,0x288,0x288, -0x288,0x288,0x288,0x288,0x1863,0x1863,0x1863,0x1863,0x204,0x204,0x204,0x204,0x204,0x204,0x204,0x204, -0x204,0x204,0x204,0x204,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92, -0x1c92,0x1c92,0x1c92,0x1c92,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f, -0x174f,0x174f,0x174f,0x174f,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1ce9,0x1ce9,0x1ce9,0x1ce9,0x29d,0x1ce9,0x1ce9,0x1ce9,0x1ce9,0x1ce9,0x1ce9,0x1ce9, -0x29d,0x1ce9,0x1ce9,0x29d,0x17c7,0x17c7,0x17c7,0x17c7,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec, -0x1ec,0x1ec,0x1ec,0x1ec,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x2b2,0x2b2,0x2b2,0x2b2,0x2b2,0x2b2,0x2b2,0x2b2, -0x2b2,0x2b2,0x2b2,0x2b2,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0xe97,0xe97,0xe94,0xe94,0xe94,0xe97,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2, -0xd2,0xd2,0xd2,0xd2,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x210,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b, -0x187b,0x187b,0x187b,0x187b,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8, -0x2b8,0x2b8,0x2b8,0x1d1c,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1b33,0x1b33,0x1b33,0x1b33,0x1b33,0x1b33,0x1b33,0x1b33,0x1b33,0x1b33,0x26d,0x26d, -0x26d,0x26d,0x1b36,0x1b30,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9, -0x1cb9,0x1cb9,0x1cb9,0x1cb9,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c, -0x1d4c,0x1d4c,0x1d4c,0x1d4c,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4, -0x1df4,0x1df4,0x1df4,0x1df4,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0x252,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b, -0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x270,0x270,0x270,0x270,0x270,0x270,0x270,0x270,0x270,0x270,0x270,0x270, -0x270,0x270,0x270,0x270,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0x16e3,0x16e9,0x16e9,0x16e6,0x16e6,0x16e6,0,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6, +0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6, +0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6,0, +0,0,0,0,0x96f,0x96f,0x96f,0x96f,0x96f,0x96f,0,0,0x96f,0,0x96f,0x96f, +0x96f,0x96f,0x96f,0x96f,0x96f,0x96f,0x96f,0x96f,0x96f,0x96f,0x96f,0x96f,0x96f,0x96f,0x96f,0x96f, +0x96f,0x96f,0x96f,0x96f,0x96f,0x96f,0,0x96f,0x96f,0,0,0,0x96f,0,0,0x96f, +0xe28,0xe28,0xe28,0xe28,0xe28,0xe28,0xe28,0xe28,0xe28,0xe28,0xe28,0xe28,0xe28,0xe28,0xe28,0xe28, +0xe28,0xe28,0xe28,0xe28,0xe28,0xe28,0,0xe25,0xe22,0xe22,0xe22,0xe22,0xe22,0xe22,0xe22,0xe22, +0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4, +0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0x11f4,0, +0,0,0,0,0,0,0,0x11f1,0x11f1,0x11f1,0x11f1,0x11f1,0x11f1,0x11f1,0x11f1,0x11f1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0x1356,0x1356,0x1356,0x1356,0x1356,0x1356,0x1356,0x1356,0x1356,0x1356,0x1356,0x1356,0x1356,0x1356,0x1356,0x1356, +0x1356,0x1356,0x1356,0,0x1356,0x1356,0,0,0,0,0,0x1353,0x1353,0x1353,0x1353,0x1353, +0xb91,0xb91,0xb91,0xb91,0xb91,0xb91,0xb91,0xb91,0xb91,0xb91,0xb91,0xb91,0xb91,0xb91,0xb91,0xb91, +0xb91,0xb91,0xb91,0xb91,0xb91,0xb91,0xb8b,0xb8b,0xb8b,0xb8b,0xde9,0xde9,0,0,0,0xb8e, +0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9, +0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0xcf9,0,0,0,0,0,0xcf6, +0x1077,0x1077,0x1077,0x1077,0x1077,0x1077,0x1077,0x1077,0x1077,0x1077,0x1077,0x1077,0x1077,0x1077,0x1077,0x1077, +0x1077,0x1077,0x1077,0x1077,0x1077,0x1077,0x1077,0x1077,0,0,0,0,0x131d,0x131d,0x1077,0x1077, +0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d, +0,0,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d, +0xa92,0xa83,0xa83,0xa83,0,0xa83,0xa83,0,0,0,0,0,0xa83,0xa83,0xa83,0xa83, +0xa92,0xa92,0xa92,0xa92,0,0xa92,0xa92,0xa92,0,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92, +0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92,0xa92, +0x14f7,0x14f7,0,0,0xa86,0xa86,0xa86,0,0,0,0,0xa89,0xa8c,0xa8c,0xa8c,0xa8c, +0xa8c,0xa8c,0xa8c,0xa8c,0x14f4,0,0,0,0,0,0,0,0xa8f,0xa8f,0xa8f,0xa8f, +0xa8f,0xa8f,0xa95,0xa95,0xa8c,0,0,0,0,0,0,0,0x11a0,0x11a0,0x11a0,0x11a0, +0x11a0,0x1194,0x1194,0,0,0,0,0x1197,0x1197,0x1197,0x1197,0x1197,0x119d,0x119d,0x12ba,0x119d, +0x119d,0x119d,0x119a,0,0,0,0,0,0,0,0,0,0xe31,0xe31,0xe31,0xe31, +0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31, +0xe31,0xe31,0,0,0,0xe2b,0xe2e,0xe2e,0xe2e,0xe2e,0xe2e,0xe2e,0xe58,0xe58,0xe58,0xe58, +0xe58,0xe58,0xe58,0xe58,0xe58,0xe58,0xe58,0xe58,0xe58,0xe58,0xe58,0xe58,0xe58,0xe58,0xe58,0xe58, +0xe58,0xe58,0,0,0xe55,0xe55,0xe55,0xe55,0xe55,0xe55,0xe55,0xe55,0xe52,0xe52,0xe52,0xe52, +0xe52,0xe52,0xe52,0xe52,0xe52,0xe52,0xe52,0xe52,0xe52,0xe52,0xe52,0xe52,0xe52,0xe52,0xe52,0, +0,0,0,0,0xe4f,0xe4f,0xe4f,0xe4f,0xe4f,0xe4f,0xe4f,0xe4f,0x11a9,0x11a9,0x11a9,0x11a9, +0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0,0, +0,0,0,0,0,0x11a6,0x11a6,0x11a6,0x11a6,0,0,0,0,0,0,0, +0,0,0,0,0,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0xde6,0xde6,0xde6,0xde6, +0xde6,0xde6,0xde6,0xde6,0xde6,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0x1305,0x1305,0x1305,0x1305, +0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0, +0,0,0,0,0,0,0,0,0,0,0,0,0x1302,0x1302,0x1302,0x1302, +0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0, +0,0,0,0,0,0,0x12ff,0x12ff,0x12ff,0x12ff,0x12ff,0x12ff,0x1557,0x1557,0x155a,0x155a, +0x1551,0x1551,0x1551,0x1551,0,0,0,0,0,0,0,0,0x1554,0x1554,0x1554,0x1554, +0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0,0,0,0,0,0,0x180f,0x180f,0x180f,0x180f, +0x180f,0x180f,0,0,0,0x17fa,0x17fd,0x17f7,0x17f7,0x17f7,0x1800,0x1812,0x1809,0x1809,0x1809,0x1809, +0x1809,0x1809,0x1809,0x1809,0x1809,0x1809,0x1809,0x1809,0x1809,0x1809,0x1809,0x1809,0x1809,0x1809,0,0, +0,0,0,0,0,0,0x1803,0x1803,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71, +0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71, +0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0xd71,0,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686, +0x1686,0x1686,0,0x1680,0x1680,0x1683,0,0,0x1686,0x1686,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0x17d6,0x17d6,0x17d6,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0x17d3,0x1758,0x1758,0x1758, +0x1569,0x1569,0x1569,0x1569,0x1569,0x1569,0x1569,0x156c,0,0,0,0,0,0,0,0, +0x1563,0x1563,0x1563,0x1563,0x1563,0x1563,0x1563,0x1563,0x1563,0x1563,0x1563,0x1563,0x1563,0x1563,0x1563,0x1563, +0x1563,0x1563,0x155d,0x155d,0x155d,0x155d,0x155d,0x155d,0x155d,0x155d,0x155d,0x155d,0x155d,0x1560,0x1560,0x1560, +0x1560,0x1566,0x1566,0x1566,0x1566,0x1566,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0x1725,0x1725,0x1725,0x1725,0x1725,0x1725,0x1725,0x1725, +0x1725,0x1725,0x1725,0x1725,0x1725,0x1725,0x1725,0x1725,0x1725,0x1725,0x1722,0x1722,0x1722,0x1722,0x1728,0x1728, +0x1728,0x1728,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0x165c,0x165c,0x165c,0x165c,0x165c,0x165c,0x165c,0x165c, +0x165c,0x165c,0x165c,0x165c,0x165c,0x165c,0x165c,0x165c,0x165c,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9, +0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0,0,0,0,0, +0,0,0,0,0xf8a,0xf8a,0xf8a,0xf8a,0xf8a,0xf8a,0xf8d,0xfa2,0xfa2,0xf93,0xf93,0xf93, +0xf93,0xf93,0,0,0,0,0xf90,0xf90,0xf90,0xf90,0xf90,0xf90,0xf90,0xf90,0xf90,0xf90, +0xf90,0xf90,0xf90,0xf90,0xf90,0xf90,0xf96,0xf96,0xf96,0xf96,0xf96,0xf96,0xf96,0xf96,0xf96,0xf96, +0x170d,0x1710,0x1710,0x170a,0x170a,0x1710,0,0,0,0,0,0,0,0,0,0x116d, +0xe49,0xe49,0x1713,0,0,0,0,0,0,0,0,0,0,0x1506,0,0, +0x1098,0x1098,0x1098,0x1098,0x1098,0x1098,0x1098,0x1098,0x1098,0x1098,0x1098,0x1098,0x1098,0x1098,0x1098,0x1098, +0x1098,0,0,0,0,0,0,0,0x1095,0x1095,0x1095,0x1095,0x1095,0x1095,0x1095,0x1095, +0x1095,0x1095,0,0,0,0,0,0,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x105f, +0x105f,0x105f,0x105f,0x105f,0x106e,0x105f,0x1062,0x1062,0x105f,0x105f,0x105f,0x1065,0x1065,0,0x106b,0x106b, +0x106b,0x106b,0x106b,0x106b,0x106b,0x106b,0x106b,0x106b,0x1068,0x1074,0x1074,0x1074,0x1503,0x1500,0x1500,0x1647, +0,0,0,0,0,0,0,0,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f, +0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x1266,0x1269,0x126c,0x126f,0, +0,0,0,0,0,0,0,0,0,0x115e,0x115e,0x115e,0x115e,0x115e,0x115e,0x115e, +0x115e,0x115e,0x115e,0x115e,0x115e,0x115e,0x115e,0x115e,0x115e,0x115e,0x115e,0x115e,0x115e,0,0,0, +0,0,0,0,0,0,0,0,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242, +0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0,0x1242,0x1242,0x1242,0x1242,0x1242, +0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1788,0x1785,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0x1359,0x1359,0x1359,0x1359,0x1359,0x1359,0x1359,0, +0x1359,0,0x1359,0x1359,0x1359,0x1359,0,0x1359,0x1359,0x1359,0x1359,0x1359,0x1359,0x1359,0x1359,0x1359, +0x1359,0x1359,0x1359,0x1359,0x1359,0x1359,0,0x1359,0x1359,0x1359,0x1359,0x1359,0x1359,0x1359,0x1359,0x1359, +0x1359,0x135c,0,0,0,0,0,0,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c, +0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x1209,0x1209,0x1209,0x11fd,0x11fd,0x11fd,0x11fd,0x11fd, +0x11fd,0x1200,0x1203,0,0,0,0,0,0x1206,0x1206,0x1206,0x1206,0x1206,0x1206,0x1206,0x1206, +0x1206,0x1206,0,0,0,0,0,0,0x1317,0x12bd,0x11d0,0x12c3,0,0x11d9,0x11d9,0x11d9, +0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0,0,0x11d9,0x11d9,0,0,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9, +0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9, +0x11d9,0,0x11d9,0x11d9,0,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0,0x157e,0x12c0,0x11d6,0x11c7,0x11d0, +0x11c7,0x11d0,0x11d0,0x11d0,0x11d0,0,0,0x11d0,0x11d0,0,0,0x11d3,0x11d3,0x11cd,0,0, +0x131a,0,0,0,0,0,0,0x11c7,0,0,0,0,0,0x11df,0x11dc,0x11dc, +0x11d9,0x11d9,0x11d0,0x11d0,0,0,0x11ca,0x11ca,0x11ca,0x11ca,0x11ca,0x11ca,0x11ca,0,0,0, +0x11ca,0x11ca,0x11ca,0x11ca,0x11ca,0,0,0,0,0,0,0,0,0,0,0, +0x187e,0x187e,0x187e,0x1881,0x187e,0x1881,0x187e,0x187e,0x187e,0x187e,0,0x187e,0,0,0x1881,0, +0x187e,0x1881,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878, +0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0,0x1875,0x185d,0x1872,0x1872,0x185d, +0x185d,0x185d,0x185d,0x185d,0x185d,0,0x185d,0,0,0x1860,0,0x1860,0x1860,0x185d,0x1872,0, +0x1872,0x1872,0x1869,0x1869,0x186c,0x187b,0x1866,0x1884,0x186f,0x186f,0,0x186f,0x186f,0,0,0, +0,0,0,0,0,0x1863,0x1863,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0x13fe,0x13fe,0x13ef,0x13e9,0x13e9,0x13fe,0x13ec,0x1401,0x1401,0x1401,0x1401,0x1404, +0x1404,0x13f8,0x13f5,0x13f2,0x13fb,0x13fb,0x13fb,0x13fb,0x13fb,0x13fb,0x13fb,0x13fb,0x13fb,0x13fb,0x1653,0x13f8, +0,0x13f2,0x150c,0x15c3,0x1656,0x1656,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0x1248,0x1257,0x124e,0x124b,0x125d,0x125d,0x1251,0x125d,0,0,0,0, +0,0,0,0,0x1254,0x1254,0x1254,0x1254,0x1254,0x1254,0x1254,0x1254,0x1254,0x1254,0,0, +0,0,0,0,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2, +0x12a2,0x12a2,0x12a2,0x128a,0x129c,0x129c,0x128a,0x128a,0x128a,0x128a,0,0,0x129c,0x129c,0x129f,0x129f, +0x128a,0x128a,0x129c,0x1290,0x128d,0x1293,0x12a5,0x12a5,0x1296,0x1296,0x1299,0x1299,0x1299,0x12a5,0x1365,0x1365, +0x1365,0x1365,0x1365,0x1365,0x1365,0x1365,0x1365,0x1365,0x1365,0x1365,0x1365,0x1365,0x1362,0x1362,0x1362,0x1362, +0x135f,0x135f,0,0,0x1272,0x1284,0x1284,0x1278,0x1281,0,0,0,0,0,0,0, +0,0,0,0,0x127b,0x127b,0x127b,0x127b,0x127b,0x127b,0x127b,0x127b,0x127b,0x127b,0,0, +0,0,0,0,0x139e,0x139e,0x139e,0x139e,0x139e,0x139e,0x139e,0x139e,0x139e,0x139e,0x139e,0x139e, +0x139e,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x109b, +0x10a7,0x109b,0x10a7,0x10a7,0x109b,0x109b,0x109b,0x109b,0x109b,0x109b,0x10a1,0x109e,0x15bd,0x1716,0,0, +0,0,0,0,0x10a4,0x10a4,0x10a4,0x10a4,0x10a4,0x10a4,0x10a4,0x10a4,0x10a4,0x10a4,0,0, +0,0,0,0,0x17e8,0x17e8,0x17e8,0x17e8,0x17e8,0x17e8,0x17e8,0x17e8,0x17e8,0x17e8,0x17e8,0x17e8, +0x17e8,0x17e8,0x17e8,0x17e8,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d, +0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x134d,0x1509,0,0,0x133b,0x134a,0x133b, +0x1347,0x1347,0x133b,0x133b,0x133b,0x133b,0x134a,0x133b,0x133b,0x133b,0x133b,0x133e,0,0,0,0, +0x1344,0x1344,0x1344,0x1344,0x1344,0x1344,0x1344,0x1344,0x1344,0x1344,0x1341,0x1341,0x1350,0x1350,0x1350,0x1341, +0x1719,0x1719,0x1719,0x1719,0x1719,0x1719,0x1719,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x151e,0x151e,0x151e,0x1512, +0x1512,0x1512,0x1512,0x1512,0x1512,0x1512,0x1512,0x1512,0x151e,0x1518,0x1515,0x151b,0,0,0,0, +0x1212,0x1212,0x1212,0x1212,0x1212,0x1212,0x1212,0x1212,0x1212,0x1212,0x120f,0x120f,0x120f,0x120f,0x120f,0x120f, +0x120f,0x120f,0x120f,0,0,0,0,0,0,0,0,0,0,0,0,0x1218, +0x1677,0x1677,0x1677,0x1677,0x1677,0x1677,0x1677,0,0,0x1677,0,0,0x1677,0x1677,0x1677,0x1677, +0x1677,0x1677,0x1677,0x1677,0,0x1677,0x1677,0,0x1677,0x1677,0x1677,0x1677,0x1677,0x1677,0x1677,0x1677, +0x1677,0x1677,0x1677,0x1677,0x1677,0x1677,0x1677,0x1677,0x165f,0x1671,0x1671,0x1671,0x1671,0x1671,0,0x1671, +0x1674,0,0,0x165f,0x165f,0x1665,0x1668,0x167a,0x1671,0x167a,0x1671,0x1662,0x167d,0x166b,0x167d,0, +0,0,0,0,0,0,0,0,0x166e,0x166e,0x166e,0x166e,0x166e,0x166e,0x166e,0x166e, +0x166e,0x166e,0,0,0,0,0,0,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7, +0,0,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7, +0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e7,0x15e4,0x15e4,0x15e4,0x15db,0x15db,0x15db,0x15db, +0,0,0x15db,0x15db,0x15e4,0x15e4,0x15e4,0x15e4,0x15de,0x15e7,0x15e1,0x15e7,0x15e4,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0x1488,0x148b,0x149a,0x149a,0x148b,0x148e,0x1488,0x1485, +0,0,0,0,0,0,0,0,0x1476,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1473, +0x1473,0x1461,0x1461,0x1461,0x1476,0x1476,0x1476,0x1476,0x146d,0x1470,0x1470,0,0,0,0,0, +0,0,0,0,0,0,0,0,0x16f5,0x16f5,0x16f5,0x16f5,0x16f5,0x16f5,0x16f5,0x16f5, +0x16f5,0x16f5,0x16f5,0x16f5,0x16f5,0x16f5,0x16f5,0x16f5,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287, +0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287, +0x1287,0,0,0,0,0,0,0,0x1764,0x1764,0x1764,0x1764,0x1764,0x1764,0x1764,0x1764, +0x1764,0x1764,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0x1854,0x184e,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851, +0x1851,0x1851,0,0,0,0,0,0,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4, +0x13d4,0,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4, +0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d4,0x13d1,0x13bf,0x13bf,0x13bf,0x13bf, +0x13bf,0x13bf,0x13bf,0,0x13bf,0x13bf,0x13bf,0x13bf,0x13bf,0x13bf,0x13d1,0x13c2,0x13d4,0x13d7,0x13d7,0x13cb, +0x13c8,0x13c8,0,0,0,0,0,0,0,0,0,0,0x13ce,0x13ce,0x13ce,0x13ce, +0x13ce,0x13ce,0x13ce,0x13ce,0x13ce,0x13ce,0x13c5,0x13c5,0x13c5,0x13c5,0x13c5,0x13c5,0x13c5,0x13c5,0x13c5,0x13c5, +0x13c5,0x13c5,0x13c5,0x13c5,0x13c5,0,0,0,0x13dd,0x13e0,0x13e6,0x13e6,0x13e6,0x13e6,0x13e6,0x13e6, +0x13e6,0x13e6,0x13e6,0x13e6,0x13e6,0x13e6,0x13e6,0x13e6,0x13e6,0x13e6,0x13e6,0x13e6,0,0,0x13da,0x13da, +0x13da,0x13da,0x13da,0x13da,0x13da,0x13da,0x13da,0x13da,0x13da,0x13da,0x13da,0x13da,0,0x13e3,0x13da,0x13da, +0x13da,0x13da,0x13da,0x13da,0x13da,0x13e3,0x13da,0x13da,0x13e3,0x13da,0x13da,0,0,0,0,0, +0,0,0,0,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0,0x145b,0x145b,0,0x145b, +0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b, +0x145b,0x145b,0x145b,0x145b,0x145b,0x144f,0x144f,0x144f,0x144f,0x144f,0x144f,0,0,0,0x144f,0, +0x144f,0x144f,0,0x144f,0x144f,0x144f,0x1452,0x144f,0x1455,0x1455,0x145e,0x144f,0,0,0,0, +0,0,0,0,0x1458,0x1458,0x1458,0x1458,0x1458,0x1458,0x1458,0x1458,0x1458,0x1458,0,0, +0,0,0,0,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0,0x1530,0x1530,0,0x1530,0x1530, +0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530, +0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x152d,0x152d,0x152d,0x152d,0x152d,0,0x1524,0x1524,0,0x152d, +0x152d,0x1524,0x152d,0x1527,0x1530,0,0,0,0,0,0,0,0x152a,0x152a,0x152a,0x152a, +0x152a,0x152a,0x152a,0x152a,0x152a,0x152a,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0x153c,0x153c,0x153c,0x153c, +0x153c,0x153c,0x153c,0x153c,0x153c,0x153c,0x153c,0x153c,0x153c,0x153c,0x153c,0x153c,0x153c,0x153c,0x1539,0x1533, +0x1533,0x1536,0x1536,0x153f,0x153f,0,0,0,0,0,0,0,0x178b,0x178b,0x17a0,0x179a, +0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0,0x179d,0x179d, +0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d,0x179d, +0x179d,0x179d,0x179d,0x179d,0x179a,0x179a,0x178b,0x178b,0x178b,0x178b,0x178b,0,0,0,0x179a,0x179a, +0x178b,0x178e,0x1791,0x17a3,0x17a3,0x1794,0x1794,0x1794,0x1794,0x1794,0x1794,0x1794,0x1794,0x1794,0x1794,0x1794, +0x1797,0x1797,0x1797,0x1797,0x1797,0x1797,0x1797,0x1797,0x1797,0x1797,0x17f4,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0x164a,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0x15a5,0x159f,0x159f,0x159f, +0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0,0, +0,0,0,0,0,0,0,0,0,0,0,0x15a2,0x1191,0x1191,0x1191,0x1191, +0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191, +0x1191,0x1191,0x1191,0x1191,0x1191,0x1308,0,0,0,0,0,0,0xb97,0xb97,0xb97,0x1191, +0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0,0xb94,0xb94,0xb94,0xb94, +0x118e,0,0,0,0,0,0,0,0,0,0,0,0x1308,0x1308,0x1308,0x1308, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0x171f,0x171f,0x171f,0x171f, +0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171c,0x171c,0, +0,0,0,0,0,0,0,0,0,0,0,0,0x1779,0x177f,0x177f,0x177f, +0x177f,0x177f,0x177f,0x177c,0x177c,0x177c,0x177c,0x177c,0x177c,0x177c,0x177c,0x177c,0x177c,0x177c,0x177c,0x177c, +0x177c,0x177c,0,0,0,0,0,0,0,0,0,0,0x17f1,0x17f1,0x17f1,0x17f1, +0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1, +0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0,0,0,0,0,0x1332,0x1332,0x1332,0x1332, +0x1332,0x1332,0x1332,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0x1818,0x181b,0x181b,0x181b, +0x181b,0x181b,0x181b,0x181b,0x181b,0x1818,0x1824,0x1824,0x1824,0x1818,0x1818,0x181e,0x1821,0x1821,0x1821,0x1821, +0x1821,0x1821,0x1821,0x1821,0x1821,0x1821,0,0,0,0,0,0,0xfae,0xfae,0xfae,0xfae, +0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae, +0xfae,0xfae,0xfae,0xfae,0xfae,0,0,0,0,0,0,0,0x1221,0x1221,0x1221,0x1221, +0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221, +0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0,0x121e,0x121e,0x121e,0x121e, +0x121e,0x121e,0x121e,0x121e,0x121e,0x121e,0,0,0,0,0x1224,0x1224,0x172e,0x172e,0x172e,0x172e, +0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e, +0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0,0x172b,0x172b,0x172b,0x172b, +0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0,0,0,0,0,0,0x11af,0x11af,0x11af,0x11af, +0x11af,0x11af,0x11af,0x11af,0x11af,0x11af,0x11af,0x11af,0x11af,0x11af,0x11af,0x11af,0x11af,0x11af,0,0, +0x11ac,0x11ac,0x11ac,0x11ac,0x11ac,0x11b2,0,0,0,0,0,0,0,0,0,0, +0x117c,0x117c,0x117f,0x117f,0x1182,0x1173,0,0,0,0,0,0,0,0,0,0, +0x1179,0x1179,0x1179,0x1179,0x1179,0x1179,0x1179,0x1179,0x1179,0x1179,0,0x1173,0x1173,0x1173,0x1173,0x1173, +0x1173,0x1173,0,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c, +0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0,0,0,0,0,0x117c,0x117c,0x117c, +0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0x1833,0x1833,0x1833,0x1836,0x1833,0x1833,0x1833,0x1836,0x1839,0x1839,0x1839,0x183c,0x183c,0x182a,0x182d,0x182d, +0x1830,0x1830,0x1830,0x1830,0x1830,0x1830,0x1830,0x1830,0x1830,0x1830,0,0,0,0,0,0, +0x1542,0x1542,0x1542,0x1542,0x1542,0x1542,0x1542,0x1542,0x1542,0x1542,0x1542,0x1542,0x1542,0x1542,0x1542,0x1542, +0x1542,0x1542,0x1542,0x1542,0x1542,0x1542,0x1542,0x1545,0x154e,0x1542,0x1542,0,0,0,0,0, +0x103b,0x103b,0x103b,0x103b,0x103b,0x15ba,0x15ba,0x15ba,0x15ba,0x15ba,0x15ba,0,0,0,0,0x15b4, +0x103b,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038, +0x15b7,0x15b7,0x15b7,0x15b7,0x15b7,0x15b7,0x15b7,0x15b7,0,0,0,0,0,0,0,0x1035, +0x1035,0x1035,0x1035,0x103e,0x103e,0x103e,0x103e,0x103e,0x103e,0x103e,0x103e,0x103e,0x103e,0x103e,0x103e,0x103e, +0x141c,0x14af,0x15fc,0x15ff,0x169b,0,0,0,0,0,0,0,0,0,0,0, +0x1692,0x1692,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x157b,0x157b,0x157b, +0x157b,0x157b,0x1608,0x1608,0x1608,0x1608,0x1608,0x1608,0,0,0,0,0,0,0,0, +0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e, +0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0x188a,0x1698,0x1698,0x1698,0x1698,0x1698,0x1698,0x1698,0x1698, +0x1698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0x174c,0x174c,0x174c,0x174c,0,0x174c,0x174c,0x174c, +0x174c,0x174c,0x174c,0x174c,0,0x174c,0x174c,0,0x1749,0x1749,0x1749,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0x17b8,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0x1602,0x1602,0x1602,0, +0,0x17bb,0,0,0,0,0,0,0,0,0,0,0x1605,0x1605,0x1605,0x1605, +0,0,0,0,0,0,0,0,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac, +0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac, +0x14ac,0x14ac,0x14ac,0x14ac,0,0,0,0,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be, +0x11be,0x11be,0x11be,0,0,0,0,0,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be, +0x11be,0x11be,0x11be,0x11be,0x11be,0,0,0,0,0,0,0,0x11be,0x11be,0x11be,0x11be, +0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0,0,0x11bb,0x11b5,0x11b8,0x11c1,0x12b1,0x12b1,0x12b1,0x12b1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0x17ca,0x17ca,0x17ca,0x17ca, +0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17cd,0x17cd,0x17cd,0x17cd, +0x17cd,0x17cd,0x17cd,0x17cd,0x17cd,0x17cd,0,0,0,0,0,0,0x17c7,0x17c7,0x17c7,0x17c7, +0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7, +0,0,0,0,0,0,0,0,0,0,0,0,0x16b6,0x16b6,0x16b6,0x16b6, +0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0,0,0x16b6,0x16b6,0x16b6,0x16b6, +0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0, +0,0,0,0,0,0,0,0,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4, +0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9, +0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0,0,0,0,0,0, +0,0,0,0,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0,0,0xba9,0x7e9,0x7e9, +0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9, +0x7e9,0x7e9,0x7e9,0x7e9,0x12cf,0x12cf,0x12cf,0x12cf,0x12cf,0x12cf,0x12cf,0x12cf,0x12cf,0x16a4,0x16a4,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0xa41,0xa41,0xa3b,0xa3b,0xa3b,0xa41,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0x1752,0x1752,0x1752,0x1752,0x1752,0x1752,0x1752,0x1752,0x1752,0x1752,0x1752,0x1752, +0x1752,0x1752,0x1752,0x1752,0x1752,0x1752,0x1752,0x1752,0,0,0,0,0,0,0,0, +0,0,0,0,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8, +0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0,0,0,0,0,0,0,0, +0,0,0,0,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb, +0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0,0,0,0,0, +0,0,0,0,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a, +0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0,0,0, +0,0,0,0,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8, +0x7f8,0x7f8,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f5,0x7f5,0x7f8,0x7f8,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5, +0x7f8,0,0x7f8,0x7f8,0,0,0x7f8,0,0,0x7f8,0x7f8,0,0,0x7f8,0x7f8,0x7f8, +0x7f8,0,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f5,0x7f5,0x7f5,0x7f5,0,0x7f5, +0,0x7f5,0x7f5,0x7f5,0x7f5,0x8f7,0x7f5,0x7f5,0,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f5,0x7f5,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8, +0x7f8,0x7f8,0x7f8,0x7f8,0x7f5,0x7f5,0x7f5,0x7f5,0x7f8,0x7f8,0,0x7f8,0x7f8,0x7f8,0x7f8,0, +0,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8, +0x7f8,0,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f8,0x7f8,0,0x7f8, +0x7f8,0x7f8,0x7f8,0,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0,0x7f8,0,0,0,0x7f8,0x7f8, +0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f5,0x7f5,0x9d8,0x9d8,0,0,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8, +0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8, +0x7f5,0x7f5,0x7f5,0x7ef,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0xb07,0xb04,0,0,0x7f2,0x7f2, +0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2, +0x130e,0x130e,0x130e,0x130e,0x130b,0x130e,0x130e,0x1311,0x1314,0x1311,0x1311,0x130e,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0x130b,0x130b,0x130b,0x130b,0x130b, +0,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16dd,0x16da,0x16da,0x16da,0x16da,0x16da, +0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0x16da,0, +0,0,0,0,0,0x176d,0x176d,0x176d,0x176d,0x176d,0x176d,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1, +0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0,0,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1, +0x13a1,0x13a1,0,0x13a1,0x13a1,0,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0,0,0,0,0, +0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761, +0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x1761,0x1761,0x1761,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0x175b,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5, +0x15d5,0,0,0,0x15cc,0x15cc,0x15cc,0x15cc,0x15cc,0x15cc,0x15cc,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5, +0x15d8,0x15d8,0,0,0x15d2,0x15d2,0x15d2,0x15d2,0x15d2,0x15d2,0x15d2,0x15d2,0x15d2,0x15d2,0,0, +0,0,0x15d5,0x15cf,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0x1734,0x1734,0x1734,0x1734,0x1734,0x1734,0x1734,0x1734,0x1734,0x1734,0x1734,0x1734, +0x1734,0x1734,0x1734,0x1734,0x1734,0x1734,0x1731,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3, +0x15f3,0x15f3,0x15f3,0x15f3,0x15ea,0x15ea,0x15ea,0x15ea,0x15f0,0x15f0,0x15f0,0x15f0,0x15f0,0x15f0,0x15f0,0x15f0, +0x15f0,0x15f0,0,0,0,0,0,0x15ed,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac, +0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17a6,0x17a6,0x17a6,0x17a6,0x17a9,0x17a9,0x17a9,0x17a9, +0x17a9,0x17a9,0x17a9,0x17a9,0x17a9,0x17a9,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0x184b,0x184b,0x184b,0x184b,0x184b,0x184b,0x184b,0x184b, +0x184b,0x184b,0x184b,0x184b,0x184b,0x184b,0x184b,0x184b,0x184b,0x184b,0x183f,0x1842,0x184b,0x1848,0x1848,0x1848, +0x1848,0x1848,0x1848,0x1848,0x1848,0x1848,0x1848,0,0,0,0,0x1845,0x16d1,0x16d1,0x16d1,0x16d1, +0x16d1,0x16d1,0x16d1,0,0x16d1,0x16d1,0x16d1,0x16d1,0,0x16d1,0x16d1,0,0x16d1,0x16d1,0x16d1,0x16d1, +0x16d1,0x16d1,0x16d1,0x16d1,0x16d1,0x16d1,0x16d1,0x16d1,0x16d1,0x16d1,0x16d1,0,0x11e8,0x11e8,0x11e8,0x11e8, +0x11e8,0,0,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e2,0x11e2,0x11e2,0x11e2, +0x11e2,0x11e2,0x11e2,0,0,0,0,0,0,0,0,0,0x13b9,0x13b9,0x13b9,0x13b9, +0x13b0,0x13b0,0x13b0,0x13aa,0x13ad,0x13ad,0x13ad,0x15c0,0,0,0,0,0x13b6,0x13b6,0x13b6,0x13b6, +0x13b6,0x13b6,0x13b6,0x13b6,0x13b6,0x13b6,0,0,0,0,0x13b3,0x13b3,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0x14b8,0x14b8,0x14b8, +0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14be,0x14b8,0x14b8,0x14b8, +0x14be,0x14b8,0x14b8,0x14b8,0x14b8,0,0,0,0,0,0,0,0,0,0,0, +0,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581, +0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581, +0x1581,0x1581,0,0,0x1005,0x1005,0x1005,0x1005,0,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005, +0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005, +0x1005,0x1005,0x1005,0x1005,0,0x1005,0x1005,0,0x1005,0,0,0x1005,0,0x1005,0x1005,0x1005, +0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0,0x1005,0x1005,0x1005,0x1005,0,0x1005,0,0x1005, +0,0,0,0,0,0,0x1005,0,0,0,0,0x1005,0,0x1005,0,0x1005, +0,0x1005,0x1005,0x1005,0,0x1005,0x1005,0,0x1005,0,0,0x1005,0,0x1005,0,0x1005, +0,0x1005,0,0x1005,0,0x1005,0x1005,0,0x1005,0,0,0x1005,0x1005,0x1005,0x1005,0, +0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0,0x1005,0x1005,0x1005,0x1005,0,0x1005,0x1005,0x1005, +0x1005,0,0x1005,0,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0,0x1005, +0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005, +0,0,0,0,0,0x1005,0x1005,0x1005,0,0x1005,0x1005,0x1005,0x1005,0x1005,0,0x1005, +0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005,0x1005, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0xfff,0xfff,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0,0,0,0, +0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb, +0,0,0,0,0,0,0,0,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb, +0x10cb,0x10cb,0,0,0,0,0,0,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb, +0,0,0,0,0,0,0,0,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb, +0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0,0,0x1614,0x1614,0x17c7,0x17c7, +0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0,0,0,0,0x17c7,0x17c7,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0x1614,0x1614,0x1614,0x1614, +0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0, +0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x17c7,0x17c7,0x17c7,0x17c7, +0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x161d,0x161d,0x161d,0x161d, +0x161d,0x161d,0x161d,0x161d,0x161d,0x161d,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0x9d2,0x9d2,3,3,3,3,3,3,3,3,3,3,3,3, +0,0,0,0,0,0,0x63f,0x63f,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3, +0xba3,0xba3,0xba3,0xba3,3,3,3,3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3, +0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,3,3,3,3, +3,3,3,3,3,3,3,3,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15, +0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,3,3,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15, +0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,0x10ce,3,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15, +0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,0xfc3,3,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15, +0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,0xf15,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce, +0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,3,3, +3,3,3,3,3,3,3,3,0x140d,0x140d,0x140d,0x140d,0x140d,0x140d,0x140d,0x140d, +0x140d,0x140d,0x140d,0x140d,0x140d,0x1617,3,3,3,3,3,3,3,3,3,3, 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, -3,3,3,3,3,3,0x9d2,0x9d2,6,6,6,6,6,6,6,6, -6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, -6,6,6,6,6,6,6,6,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef, -0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,6,6,6,6,6,6,6,6, -6,6,6,6,6,6,6,6,0x15b7,0x444,0x453,0x453,0x18,0x45c,0x45c,0x45c, -0x45c,0x45c,0x45c,0x45c,0x45c,0x18,0x18,0x45c,0x45c,0x18,0x18,0x45c,0x45c,0x45c,0x45c,0x45c, -0x45c,0x45c,0x45c,0x45c,0x45c,0x45c,0x45c,0x45c,0x45c,0x18,0x45c,0x45c,0x45c,0x45c,0x45c,0x45c, -0x45c,0x18,0x45c,0x18,0x18,0x18,0x45c,0x45c,0x45c,0x45c,0x18,0x18,0x447,0xd50,0x444,0x453, -0x453,0x444,0x444,0x444,0x444,0x18,0x18,0x453,0x453,0x18,0x18,0x456,0x456,0x44a,0xe46,0x18, -0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x444,0x18,0x18,0x18,0x18,0x459,0x459,0x18,0x459, -0x45c,0x45c,0x444,0x444,0x18,0x18,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd,0x9bd, -0x45c,0x45c,0x450,0x450,0x44d,0x44d,0x44d,0x44d,0x44d,0x450,0x44d,0x1212,0x195c,0x1959,0x1a04,0x18, -0x1b,0xd53,0x45f,0xd56,0x1b,0x471,0x471,0x471,0x471,0x471,0x471,0x1b,0x1b,0x1b,0x1b,0x471, -0x471,0x1b,0x1b,0x471,0x471,0x471,0x471,0x471,0x471,0x471,0x471,0x471,0x471,0x471,0x471,0x471, -0x471,0x1b,0x471,0x471,0x471,0x471,0x471,0x471,0x471,0x1b,0x471,0x46e,0x1b,0x471,0x46e,0x1b, -0x471,0x471,0x1b,0x1b,0x462,0x1b,0x46b,0x46b,0x46b,0x45f,0x45f,0x1b,0x1b,0x1b,0x1b,0x45f, -0x45f,0x1b,0x1b,0x45f,0x45f,0x468,0x1b,0x1b,0x1b,0x1041,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b, -0x1b,0x46e,0x46e,0x46e,0x471,0x1b,0x46e,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x9c0,0x9c0, -0x9c0,0x9c0,0x9c0,0x9c0,0x9c0,0x9c0,0x9c0,0x9c0,0x45f,0x465,0x471,0x471,0x471,0x1041,0x1a07,0x1b, -0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1e,0x474,0x474,0x47d,0x1e,0x480,0x480,0x480, -0x480,0x480,0x480,0x480,0xd5f,0x480,0x1e,0x480,0x480,0x480,0x1e,0x480,0x480,0x480,0x480,0x480, -0x480,0x480,0x480,0x480,0x480,0x480,0x480,0x480,0x480,0x1e,0x480,0x480,0x480,0x480,0x480,0x480, -0x480,0x1e,0x480,0x480,0x1e,0x480,0x480,0x480,0x480,0x480,0x1e,0x1e,0x477,0x480,0x47d,0x47d, -0x47d,0x474,0x474,0x474,0x474,0x474,0x1e,0x474,0x474,0x47d,0x1e,0x47d,0x47d,0x47a,0x1e,0x1e, -0x480,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e, -0x480,0xd5f,0xd59,0xd59,0x1e,0x1e,0x9c3,0x9c3,0x9c3,0x9c3,0x9c3,0x9c3,0x9c3,0x9c3,0x9c3,0x9c3, -0x14cd,0xd5c,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x17dc,0x195f,0x1965,0x195f,0x1962,0x1962,0x1962, -0x21,0x483,0x492,0x492,0x21,0x49b,0x49b,0x49b,0x49b,0x49b,0x49b,0x49b,0x49b,0x21,0x21,0x49b, -0x49b,0x21,0x21,0x49b,0x49b,0x49b,0x49b,0x49b,0x49b,0x49b,0x49b,0x49b,0x49b,0x49b,0x49b,0x49b, -0x49b,0x21,0x49b,0x49b,0x49b,0x49b,0x49b,0x49b,0x49b,0x21,0x49b,0x49b,0x21,0xd62,0x49b,0x49b, -0x49b,0x49b,0x21,0x21,0x486,0x49b,0x483,0x483,0x492,0x483,0x483,0x483,0x1044,0x21,0x21,0x492, -0x495,0x21,0x21,0x495,0x495,0x489,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x1b7b,0x483,0x483, -0x21,0x21,0x21,0x21,0x498,0x498,0x21,0x49b,0x49b,0x49b,0x1044,0x1044,0x21,0x21,0x48f,0x48f, -0x48f,0x48f,0x48f,0x48f,0x48f,0x48f,0x48f,0x48f,0x48c,0xd62,0x13ec,0x13ec,0x13ec,0x13ec,0x13ec,0x13ec, -0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x24,0x24,0x49e,0x4aa,0x24,0x4aa,0x4aa,0x4aa, -0x4aa,0x4aa,0x4aa,0x24,0x24,0x24,0x4aa,0x4aa,0x4aa,0x24,0x4aa,0x4aa,0x4ad,0x4aa,0x24,0x24, -0x24,0x4aa,0x4aa,0x24,0x4aa,0x24,0x4aa,0x4aa,0x24,0x24,0x24,0x4aa,0x4aa,0x24,0x24,0x24, -0x4aa,0x4aa,0x4aa,0x24,0x24,0x24,0x4aa,0x4aa,0x4aa,0x4aa,0x4aa,0x4aa,0x4aa,0x4aa,0xe49,0x4aa, -0x4aa,0x4aa,0x24,0x24,0x24,0x24,0x49e,0x4a4,0x49e,0x4a4,0x4a4,0x24,0x24,0x24,0x4a4,0x4a4, -0x4a4,0x24,0x4a7,0x4a7,0x4a7,0x4a1,0x24,0x24,0x1047,0x24,0x24,0x24,0x24,0x24,0x24,0x49e, -0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0xf66,0x9c9,0x9c9,0x9c9,0x9c9,0x9c9, -0x9c9,0x9c9,0x9c9,0x9c9,0x9c6,0x9c6,0x9c6,0xe16,0xd65,0xd65,0xd65,0xd65,0xd65,0xd68,0xd65,0x24, -0x24,0x24,0x24,0x24,0x15ba,0x4bc,0x4bc,0x4bc,0x1a0a,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf, -0x4bf,0x27,0x4bf,0x4bf,0x4bf,0x27,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf, -0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x27,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf, -0x15bd,0x4bf,0x4bf,0x4bf,0x4bf,0x4bf,0x27,0x27,0x1c26,0x1053,0x4b0,0x4b0,0x4b0,0x4bc,0x4bc,0x4bc, -0x4bc,0x27,0x4b0,0x4b0,0x4b3,0x27,0x4b0,0x4b0,0x4b0,0x4b6,0x27,0x27,0x27,0x27,0x27,0x27, -0x27,0x4b0,0x4b0,0x27,0x1050,0x1050,0x17df,0x27,0x1d70,0x1c29,0x27,0x27,0x4bf,0x4bf,0x104a,0x104a, -0x27,0x27,0x4b9,0x4b9,0x4b9,0x4b9,0x4b9,0x4b9,0x4b9,0x4b9,0x4b9,0x4b9,0x27,0x27,0x27,0x27, -0x27,0x27,0x27,0x1ad9,0x104d,0x104d,0x104d,0x104d,0x104d,0x104d,0x104d,0x104d,0x189f,0x15c0,0x4c8,0x4c8, -0x1a0d,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x2a,0x4d1,0x4d1,0x4d1,0x2a,0x4d1,0x4d1, -0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x2a,0x4d1,0x4d1, -0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x2a,0x4d1,0x4d1,0x4d1,0x4d1,0x4d1,0x2a,0x2a, -0xd6b,0xd6e,0x4c8,0x4c2,0x4cb,0x4c8,0x4c2,0x4c8,0x4c8,0x2a,0x4c2,0x4cb,0x4cb,0x2a,0x4cb,0x4cb, -0x4c2,0x4c5,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x4c2,0x4c2,0x2a,0x2a,0x2a,0x2a,0x2a, -0x1d73,0x1c2c,0x4ce,0x2a,0x4d1,0x4d1,0xf7e,0xf7e,0x2a,0x2a,0x9cc,0x9cc,0x9cc,0x9cc,0x9cc,0x9cc, -0x9cc,0x9cc,0x9cc,0x9cc,0x2a,0xf81,0xf81,0x1cef,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a, -0x2a,0x2a,0x2a,0x2a,0x1968,0x15c3,0x4dd,0x4dd,0x1b7e,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3, -0x4e3,0x2d,0x4e3,0x4e3,0x4e3,0x2d,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3, -0x4e3,0x4e3,0x4e3,0x4e3,0x4dd,0x4d4,0x4d4,0x4d4,0x1056,0x2d,0x4dd,0x4dd,0x4dd,0x2d,0x4e0,0x4e0, -0x4e0,0x4d7,0x13f2,0x18a2,0x2d,0x2d,0x2d,0x2d,0x18a5,0x18a5,0x18a5,0x4d4,0x18a2,0x18a2,0x18a2,0x18a2, -0x18a2,0x18a2,0x18a2,0x17e2,0x4e3,0x4e3,0x1056,0x1056,0x2d,0x2d,0x4da,0x4da,0x4da,0x4da,0x4da,0x4da, -0x4da,0x4da,0x4da,0x4da,0x1059,0x1059,0x1059,0x1059,0x1059,0x1059,0x18a2,0x18a2,0x18a2,0x105c,0x105f,0x105f, -0x105f,0x105f,0x105f,0x105f,0x30,0x1b81,0xab3,0xab3,0x30,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc, -0xabc,0xabc,0xabc,0xab9,0xab9,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0x30,0x30,0x30,0xabc,0xabc, -0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xab9,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc, -0xabc,0xabc,0x30,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0x30,0xabc,0x30,0x30, -0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0x30,0x30,0x30,0xaaa,0x30,0x30,0x30,0x30,0xaa7, -0xab3,0xab3,0xaa7,0xaa7,0xaa7,0x30,0xaa7,0x30,0xab3,0xab3,0xab6,0xab3,0xab6,0xab6,0xab6,0xaa4, -0x30,0x30,0x30,0x30,0x30,0x30,0x15c6,0x15c6,0x15c6,0x15c6,0x15c6,0x15c6,0x15c6,0x15c6,0x15c6,0x15c6, -0x30,0x30,0xab3,0xab0,0xaad,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30, -0x33,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe, -0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe, -0x4fe,0x4e9,0x4fe,0x4fb,0x4e9,0x4e9,0x4e9,0x4e9,0x4e9,0x4e9,0x4ef,0x33,0x33,0x33,0x33,0x4e6, -0x504,0x504,0x504,0x504,0x504,0x4fe,0x501,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4e9,0x4ec,0x4f2, -0x4f8,0x4f8,0x4f8,0x4f8,0x4f8,0x4f8,0x4f8,0x4f8,0x4f8,0x4f8,0x4f5,0x4f5,0x33,0x33,0x33,0x33, -0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33, -0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x36,0x516,0x516,0x36, -0x516,0x36,0x1adf,0x516,0x516,0x1adf,0x516,0x36,0x1adf,0x516,0x1adf,0x1adf,0x1adf,0x1adf,0x1adf,0x1adf, -0x516,0x516,0x516,0x516,0x1adf,0x516,0x516,0x516,0x516,0x516,0x516,0x516,0x1adf,0x516,0x516,0x516, -0x36,0x516,0x36,0x516,0x1adf,0x1adf,0x516,0x516,0x1adf,0x516,0x516,0x516,0x516,0x507,0x516,0x510, -0x507,0x507,0x507,0x507,0x507,0x507,0x1adc,0x507,0x507,0x516,0x36,0x36,0x51c,0x51c,0x51c,0x51c, -0x51c,0x36,0x519,0x36,0x50a,0x50a,0x50a,0x50a,0x50a,0x507,0x1cf2,0x36,0x50d,0x50d,0x50d,0x50d, -0x50d,0x50d,0x50d,0x50d,0x50d,0x50d,0x36,0x36,0x513,0x513,0x14d0,0x14d0,0x36,0x36,0x36,0x36, -0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36, -0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,0xa1d,0xa1d,0xa1d,0xa1a, -0xa1d,0xa1d,0xa1d,0xa1d,0x39,0xa1d,0xa1d,0xa1d,0xa1d,0xa1a,0xa1d,0xa1d,0xa1d,0xa1d,0xa1a,0xa1d, -0xa1d,0xa1d,0xa1d,0xa1a,0xa1d,0xa1d,0xa1d,0xa1d,0xa1a,0xa1d,0xa1d,0xa1d,0xa1d,0xa1d,0xa1d,0xa1d, -0xa1d,0xa1d,0xa1d,0xa1d,0xa1d,0xa1a,0xacb,0x106b,0x106b,0x39,0x39,0x39,0x39,0x9de,0x9de,0x9db, -0x9de,0x9db,0x9db,0x9f0,0x9db,0x9f0,0x9de,0x9de,0x9de,0x9de,0x9de,0xa14,0x9de,0x9db,0x9ea,0x9ea, -0x9ed,0x9f6,0x9e7,0x9e7,0xa1d,0xa1d,0xa1d,0xa1d,0x13fb,0x13f5,0x13f5,0x13f5,0x9de,0x9de,0x9de,0x9db, -0x9de,0x9de,0xabf,0x9de,0x39,0x9de,0x9de,0x9de,0x9de,0x9db,0x9de,0x9de,0x9de,0x9de,0x9db,0x9de, -0x9de,0x9de,0x9de,0x9db,0x9de,0x9de,0x9de,0x9de,0x9db,0x9de,0xabf,0xabf,0xabf,0x9de,0x9de,0x9de, -0x9de,0x9de,0x9de,0x9de,0xabf,0x9db,0xabf,0xabf,0xabf,0x39,0xac8,0xac8,0xac5,0xac5,0xac5,0xac5, -0xac5,0xac5,0xac2,0xac5,0xac5,0xac5,0xac5,0xac5,0xac5,0x39,0x1062,0xac5,0xe4c,0xe4c,0x1065,0x1068, -0x1062,0x1215,0x1215,0x1215,0x1215,0x13f8,0x13f8,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39, -0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39, -0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x522,0x522,0x522,0x522,0x522,0x522,0x3c,0x14d6, -0x3c,0x3c,0x3c,0x3c,0x3c,0x14d6,0x3c,0x3c,0x525,0x525,0x525,0x525,0x525,0x525,0x525,0x525, -0x525,0x525,0x525,0x525,0x525,0x525,0x525,0x525,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xe5b, -0xaf5,0x3f,0xaf5,0xaf5,0xaf5,0xaf5,0x3f,0x3f,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0x3f, -0xaf5,0x3f,0xaf5,0xaf5,0xaf5,0xaf5,0x3f,0x3f,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xe5b, -0xaf5,0x3f,0xaf5,0xaf5,0xaf5,0xaf5,0x3f,0x3f,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5, -0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xe5b,0xaf5,0x3f,0xaf5,0xaf5, -0xaf5,0xaf5,0x3f,0x3f,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0x3f,0xaf5,0x3f,0xaf5,0xaf5, -0xaf5,0xaf5,0x3f,0x3f,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xe5b,0xaf5,0xaf5,0xaf5,0xaf5, -0xaf5,0xaf5,0xaf5,0x3f,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5, -0xaf5,0xaf5,0xaf5,0xe5b,0xaf5,0x3f,0xaf5,0xaf5,0xaf5,0xaf5,0x3f,0x3f,0xaf5,0xaf5,0xaf5,0xaf5, -0xaf5,0xaf5,0xaf5,0xe5b,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5, -0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0x3f,0x3f,0x13fe,0x13fe,0xe55,0xe58,0xaef,0xaf8,0xaec, -0xaec,0xaec,0xaec,0xaf8,0xaf8,0xaf2,0xaf2,0xaf2,0xaf2,0xaf2,0xaf2,0xaf2,0xaf2,0xaf2,0xae9,0xae9, -0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0x3f,0x3f,0x3f,0xafb,0xafb,0xafb,0xafb, -0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb, -0xafb,0x17e8,0x42,0x42,0x17e5,0x17e5,0x17e5,0x17e5,0x17e5,0x17e5,0x42,0x42,0xb0d,0xb10,0xb10,0xb10, -0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10, -0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb0a,0xb07,0x45,0x45,0x45,0xb16,0xb16,0xb16,0xb16, -0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb13,0xb13,0xb13,0xb16,0xb16,0xb16,0x15c9,0x15c9,0x15c9, -0x15c9,0x15c9,0x15c9,0x15c9,0x15c9,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0xb40,0xb40,0xb40,0xb40, -0xb40,0xb40,0xb19,0xb40,0xb40,0xb25,0xb25,0xb25,0xb25,0xb25,0xb1f,0xb1f,0xb25,0xb22,0xb28,0xb1c, -0xb4c,0xb4c,0xb3a,0xb46,0xb34,0xb2e,0xb37,0xb31,0xb46,0xd71,0x4b,0x4b,0xb3d,0xb3d,0xb3d,0xb3d, -0xb3d,0xb3d,0xb3d,0xb3d,0xb3d,0xb3d,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0xd74,0xd74,0xd74,0xd74, -0xd74,0xd74,0xd74,0xd74,0xd74,0xd74,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0xb58,0xb58,0xbd0,0xbd3, -0xb5e,0xbcd,0xb5b,0xb58,0xb61,0xb70,0xb64,0xb73,0xb73,0xb73,0xb4f,0x1c2f,0xb67,0xb67,0xb67,0xb67, -0xb67,0xb67,0xb67,0xb67,0xb67,0xb67,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0xb6a,0xb6a,0xb6a,0xb6a, -0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a, -0xb6a,0xb6a,0xb6a,0xb6a,0x1a10,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0xb6a,0xb6a,0xb6a,0xb6a, -0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb52,0x1089,0x4e,0x4e,0x4e,0x4e,0x4e,0x126f,0x126f,0x126f,0x126f, -0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x549,0x549,0x549,0x549, -0x549,0x549,0x549,0x549,0x54c,0x54c,0x54c,0x54c,0x54c,0x54c,0x54c,0x54c,0x549,0x549,0x549,0x549, -0x549,0x549,0x51,0x51,0x54c,0x54c,0x54c,0x54c,0x54c,0x54c,0x51,0x51,0x549,0x549,0x549,0x549, -0x549,0x549,0x549,0x549,0x51,0x54c,0x51,0x54c,0x51,0x54c,0x51,0x54c,0x549,0x549,0x549,0x549, -0x549,0x549,0x549,0x549,0x54c,0x54c,0x54c,0x54c,0x54c,0x54c,0x54c,0x54c,0x549,0x543,0x549,0x543, -0x549,0x543,0x549,0x543,0x549,0x543,0x549,0x543,0x549,0x543,0x51,0x51,0x549,0x549,0x549,0x549, -0x549,0x549,0x549,0x549,0x54c,0x54c,0x54c,0x54c,0x54c,0x54c,0x54c,0x54c,0x549,0x549,0x549,0x549, -0x549,0x51,0x549,0x549,0x54c,0x54c,0x54c,0x546,0x54c,0x53d,0x543,0x53d,0x53d,0x53a,0x549,0x549, -0x549,0x51,0x549,0x549,0x54c,0x546,0x54c,0x546,0x54c,0x53a,0x53a,0x53a,0x549,0x549,0x549,0x543, -0x51,0x51,0x549,0x549,0x54c,0x54c,0x54c,0x546,0x51,0x53a,0x53a,0x53a,0x549,0x549,0x549,0x543, -0x549,0x549,0x549,0x549,0x54c,0x54c,0x54c,0x546,0x54c,0x53a,0x53a,0x53a,0x51,0x51,0x549,0x549, -0x549,0x51,0x549,0x549,0x54c,0x546,0x54c,0x546,0x54c,0x540,0x53d,0x51,0xc42,0xc45,0xc45,0xc45, -0x1095,0x54,0x15a5,0x15a5,0x15a5,0x15a5,0x555,0x555,0x555,0x555,0x555,0x555,0x5a0,0xc57,0x57,0x57, -0x747,0x5a0,0x5a0,0x5a0,0x5a0,0x5a0,0x5a6,0x5b8,0x5a6,0x5b2,0x5ac,0x74a,0x59d,0x744,0x744,0x744, -0x744,0x59d,0x59d,0x59d,0x59d,0x59d,0x5a3,0x5b5,0x5a3,0x5af,0x5a9,0x57,0xe67,0xe67,0xe67,0xe67, -0xe67,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x57,0x57,0x57,0x1c32,0x5a,0x5a,0x5a, -0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5c7,0x5c7,0x5c7,0x5c7, -0x5c7,0x5c7,0x5c7,0x5c7,0x5c7,0x5c7,0x5c7,0x5c7,0x5c7,0x5c4,0x5c4,0x5c4,0x5c4,0x5c7,0xb7f,0xb7f, -0xc5d,0xc63,0xc63,0xc60,0xc60,0xc60,0xc60,0xe6d,0xf84,0xf84,0xf84,0xf84,0x1200,0x5d,0x5d,0x5d, -0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,0x5f7,0x5f7,0x5f7,0xb88, -0xf8d,0x109b,0x109b,0x109b,0x109b,0x135f,0x17ee,0x17ee,0x60,0x60,0x60,0x60,0x771,0x771,0x771,0x771, -0x771,0x771,0x771,0x771,0x771,0x771,0x606,0x606,0x603,0x603,0x603,0x603,0x627,0x627,0x627,0x627, -0x627,0xb91,0xb91,0x1d76,0x1d76,0x1d76,0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x63, -0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x62a,0x62a,0x62a,0x62a, -0x62a,0x62a,0x62a,0x62a,0x62a,0x62a,0x62a,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66, -0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0xbac,0xbac,0xbac,0xbac, -0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac, -0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0x69,0xbac,0xbac,0xbac,0xbac,0xbaf,0xbac,0xbac,0xbac,0xbac, -0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbaf, -0x69,0x69,0x69,0x69,0x69,0x69,0x69,0x69,0x69,0x69,0x69,0x69,0xbb2,0xbb2,0xbb2,0xbb2, -0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2, -0xbb2,0xbb2,0x6c,0x6c,0x6c,0x6c,0x6c,0x6c,0x6c,0x6c,0x6c,0x6c,0x6f,0x894,0x88e,0x894, -0x88e,0x894,0x88e,0x894,0x88e,0x894,0x88e,0x88e,0x891,0x88e,0x891,0x88e,0x891,0x88e,0x891,0x88e, -0x891,0x88e,0x891,0x88e,0x891,0x88e,0x891,0x88e,0x891,0x88e,0x891,0x88e,0x88e,0x88e,0x88e,0x894, -0x88e,0x894,0x88e,0x894,0x88e,0x88e,0x88e,0x88e,0x88e,0x88e,0x894,0x88e,0x88e,0x88e,0x88e,0x88e, -0x891,0xcfc,0xcfc,0x6f,0x6f,0x9ab,0x9ab,0x972,0x972,0x897,0x89a,0xcf9,0x72,0x72,0x72,0x72, -0x72,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac, -0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x8ac,0x11ee,0x19d7,0x1ac4, -0x75,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af, -0x8af,0x8af,0x8af,0x75,0x97b,0x97b,0x97e,0x97e,0x97e,0x97e,0x97e,0x97e,0x97e,0x97e,0x97e,0x97e, -0x97e,0x97e,0x97e,0x97e,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8, -0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8,0x8b8, -0x8b8,0xdfb,0xdfb,0x78,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4, -0xbc4,0x7b,0x7b,0x7b,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca, -0xbca,0xbca,0xbca,0xbca,0xbca,0xd05,0xbca,0xbca,0xbca,0xd05,0xbca,0x7e,0x7e,0x7e,0x7e,0x7e, -0x7e,0x7e,0x7e,0x7e,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296, -0x1296,0x1296,0x1296,0x1296,0xa3e,0xa3e,0xa3e,0xa3e,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81, -0x81,0x81,0x81,0x81,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b, -0x130b,0x130b,0x130b,0x130b,0x66f,0x66f,0x66f,0x66f,0x66f,0x66f,0x66f,0x84,0x84,0x84,0x84,0x84, -0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x65d,0x65d,0x65d,0x65d,0x65d,0x84,0x84,0x84,0x84, -0x84,0xb9d,0x660,0x666,0x66c,0x66c,0x66c,0x66c,0x66c,0x66c,0x66c,0x66c,0x66c,0x663,0x666,0x666, -0x666,0x666,0x666,0x666,0x666,0x666,0x666,0x666,0x666,0x666,0x666,0x84,0x666,0x666,0x666,0x666, -0x666,0x84,0x666,0x84,0x666,0x666,0x84,0x666,0x666,0x84,0x666,0x666,0x666,0x666,0x666,0x666, -0x666,0x666,0x666,0x669,0x67b,0x675,0x67b,0x675,0x678,0x67e,0x67b,0x675,0x678,0x67e,0x67b,0x675, -0x678,0x67e,0x67b,0x675,0x1413,0x1413,0x1c35,0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87, -0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x67b,0x675,0x678,0x67e,0x67b,0x675,0x67b,0x675,0x67b, -0x675,0x67b,0x67b,0x675,0x675,0x675,0x675,0x678,0x675,0x675,0x678,0x675,0x678,0x678,0x678,0x675, -0x678,0x678,0x678,0x678,0x87,0x87,0x678,0x678,0x678,0x678,0x675,0x675,0x678,0x675,0x675,0x675, -0x675,0x678,0x675,0x675,0x675,0x675,0x675,0x678,0x678,0x678,0x675,0x675,0x87,0x87,0x87,0x87, -0x87,0x87,0x87,0x1c35,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8, -0xbe8,0xbe8,0xbe8,0xbe8,0x8d0,0x8e2,0x8df,0x8e2,0x8df,0xd1a,0xd1a,0xe07,0xe04,0x8d3,0x8d3,0x8d3, -0x8d3,0x8e5,0x8e5,0x8e5,0x8fd,0x900,0x90f,0x8a,0x903,0x906,0x912,0x912,0x8fa,0x8f1,0x8eb,0x8f1, -0x8eb,0x8f1,0x8eb,0x8ee,0x8ee,0x909,0x909,0x90c,0x909,0x909,0x909,0x8a,0x909,0x8f7,0x8f4,0x8ee, -0x8a,0x8a,0x8a,0x8a,0x687,0x693,0x687,0xc96,0x687,0x8d,0x687,0x693,0x687,0x693,0x687,0x693, -0x687,0x693,0x687,0x693,0x693,0x690,0x68a,0x68d,0x693,0x690,0x68a,0x68d,0x693,0x690,0x68a,0x68d, -0x693,0x690,0x68a,0x690,0x68a,0x690,0x68a,0x68d,0x693,0x690,0x68a,0x690,0x68a,0x690,0x68a,0x690, -0x68a,0x8d,0x8d,0x684,0x7ce,0x7d1,0x7e6,0x7e9,0x7c8,0x7d1,0x7d1,0x93,0x7b0,0x7b3,0x7b3,0x7b3, -0x7b3,0x7b0,0x7b0,0x93,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0xba0,0xba0,0xba0, -0xa41,0x7aa,0x696,0x696,0x93,0x7f8,0x7d7,0x7c8,0x7d1,0x7ce,0x7c8,0x7da,0x7cb,0x7c5,0x7c8,0x7e6, -0x7dd,0x7d4,0x7f5,0x7c8,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7e3,0x7e0, -0x7e6,0x7e6,0x7e6,0x7f8,0x7b9,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6, -0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6, -0x7b6,0x7b6,0x7b6,0x93,0x93,0x93,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x93,0x93,0x7b6,0x7b6, -0x7b6,0x7b6,0x7b6,0x7b6,0x93,0x93,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x7b6,0x93,0x93,0x7b6,0x7b6, -0x7b6,0x93,0x93,0x93,0xbeb,0xbeb,0xbeb,0xbeb,0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96, -0x96,0x1974,0x1974,0x1974,0xbf1,0xbf1,0xbf1,0xbf1,0xbf1,0xbf1,0xbf1,0xbf1,0xbf1,0xbf1,0xbf1,0xbf1, -0xbf1,0xbf1,0xbf1,0xbf1,0xbf1,0xbf1,0xbf1,0x99,0x99,0x99,0x99,0x99,0x1737,0x1737,0x1737,0x1737, -0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0xbfa,0xbfa,0xbfa,0xbfa, -0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa, -0xbfa,0xbfa,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0xc06,0xc06,0xc06,0xc06, -0xc06,0xc06,0xc06,0x9f,0x9f,0x10a7,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06, -0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0x17f4,0x17f4,0x17f4,0x17f4, -0x17f4,0x17f4,0x17f4,0x17f4,0x17f4,0x1c38,0x1c38,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f, -0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xc18,0xc18,0xc18,0xc18, -0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15, -0xc15,0xa2,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc18,0xc18,0xc15,0xc15, -0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15, -0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc18,0xa2,0xc18,0xc18,0xa2,0xa2,0xc18,0xa2, -0xa2,0xc18,0xc18,0xa2,0xa2,0xc18,0xc18,0xc18,0xc18,0xa2,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18, -0xc18,0xc18,0xc15,0xc15,0xc15,0xc15,0xa2,0xc15,0xa2,0xc15,0xc15,0xc15,0xc15,0xd8f,0xc15,0xc15, -0xa2,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc18,0xc18,0xc18,0xc18, -0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc15,0xc15,0xc15,0xc15, -0xc18,0xc18,0xa2,0xc18,0xc18,0xc18,0xc18,0xa2,0xa2,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18, -0xc18,0xa2,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xa2,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15, -0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15, -0xc15,0xc15,0xc15,0xc15,0xc18,0xc18,0xa2,0xc18,0xc18,0xc18,0xc18,0xa2,0xc18,0xc18,0xc18,0xc18, -0xc18,0xa2,0xc18,0xa2,0xa2,0xa2,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xa2,0xc15,0xc15, -0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xe7f,0xe7f,0xa2,0xa2, -0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18, -0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc15,0xc15,0xc15,0xc0f,0xc15,0xc15,0xc15,0xc15, -0xc15,0xc15,0xf9c,0xf99,0xa2,0xa2,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12, -0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xa5,0xc1e,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5, -0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5, -0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xca5,0xca5,0xca5,0xca5,0xca5,0xca5,0xca5,0xca5, -0xca5,0xca5,0xca5,0xca5,0xca5,0x1c3e,0xca5,0xca5,0xca5,0xca5,0xc9f,0xc9f,0xca2,0x1c3b,0xa8,0xa8, -0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0x1c3e,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae, -0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xca8,0xca8,0xcab,0xd0e,0xd0e,0xab, -0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xcb4,0xcb4,0xcb4,0xcb4,0xcb4,0xcb4,0xcb4,0xcb4, -0xcb4,0xcb4,0xcb4,0xcb4,0xcb4,0xcb4,0xcb4,0xcb4,0xcb4,0xcb4,0xcb1,0xcb1,0xae,0xae,0xae,0xae, -0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xcba,0xcba,0xcba,0xcba,0xcba,0xcba,0xcba,0xcba, -0xcba,0xcba,0xcba,0xcba,0xcba,0xb1,0xcba,0xcba,0xcba,0xb1,0xcb7,0xcb7,0xb1,0xb1,0xb1,0xb1, -0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xda1,0xda1,0xda1,0xda1,0xda1,0xda1,0xda1,0xda1, -0xda1,0xda1,0xda1,0xda1,0xda1,0xda1,0xda1,0xda1,0xda1,0xda1,0xda1,0xda1,0xda1,0xda1,0xda1,0xda1, -0xda1,0xda1,0xda1,0xda1,0xda1,0x15ea,0x15ea,0xb4,0xd92,0xd92,0xd92,0xd9e,0xd9e,0xd9e,0xd9e,0xd92, -0xd92,0xd9e,0xd9e,0xd9e,0xb4,0xb4,0xb4,0xb4,0xd9e,0xd9e,0xd92,0xd9e,0xd9e,0xd9e,0xd9e,0xd9e, -0xd9e,0xd95,0xd95,0xd95,0xb4,0xb4,0xb4,0xb4,0xd98,0xb4,0xb4,0xb4,0xda4,0xda4,0xd9b,0xd9b, -0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xda7,0xda7,0xda7,0xda7,0xda7,0xda7,0xda7,0xda7, -0xda7,0xda7,0xda7,0xda7,0xda7,0xda7,0xda7,0xda7,0xda7,0xda7,0xb7,0xb7,0xda7,0xda7,0xda7,0xda7, -0xda7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0x15ed,0x15ed,0x15ed,0x15ed, -0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed, -0xba,0xba,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed, -0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0xba,0x1b84,0x15ed,0x15ed,0x15ed,0x15ed, -0x15ed,0x15ed,0x15ed,0x15ed,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb, -0xbd,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb, -0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xbd,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb, -0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xbd,0xdcb,0xdcb,0xbd,0xdcb, -0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xbd,0xbd, -0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xdcb,0xbd,0xbd, -0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd, -0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd, -0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce, -0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xc0,0xc0,0xc0,0xc0,0xc0, -0xe0d,0xe0d,0xe13,0xc3,0xc3,0xc3,0xc3,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a, -0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a,0xe0a, -0xc3,0xc3,0xc3,0xe10,0xe10,0xe10,0xe10,0xe10,0xe10,0xe10,0xe10,0xe10,0xdd4,0xdd4,0xdd4,0xdd4, -0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4, -0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xdd4,0xc6,0xdd1,0xddd,0xddd,0xddd,0xddd, -0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd, -0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xddd,0xc9,0xc9,0xdda,0xdda,0xdda,0xdda, -0xdda,0xdda,0xdda,0xdda,0xdda,0xdda,0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,0x1935,0x1935,0x1935,0x1935, -0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0xde0,0xde0,0xde0,0xde0, -0xde0,0xde0,0xcc,0xcc,0xde0,0xcc,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0, -0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xcc,0xde0, -0xde0,0xcc,0xcc,0xcc,0xde0,0xcc,0xcc,0xde0,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3, -0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xcf, -0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xe9a,0xe9a,0xe9a,0xe9a,0xe9a,0xe9a,0xe9a,0xe9a, -0xe9a,0xe9a,0xe9a,0x15f0,0x15f0,0x18ab,0x18ab,0xd5,0x11cd,0x11cd,0x11cd,0x11cd,0x11cd,0x11cd,0x11cd,0x11cd, -0x11cd,0x11cd,0x11cd,0x11cd,0x1b99,0x126,0x126,0x126,0xeac,0xeac,0xeac,0xeac,0xeac,0xeac,0xeac,0xeac, -0xeac,0xeac,0xeac,0xeac,0xeac,0xeac,0xeac,0xeac,0xeac,0xeac,0xeac,0xeac,0xeac,0xeac,0xeac,0xea3, -0xea3,0xea9,0xea9,0xea3,0xd8,0xd8,0xea6,0xea6,0x11fa,0x11fa,0x11fa,0x11fa,0x1e39,0x1e39,0xdb,0xdb, -0xdb,0xdb,0xdb,0xdb,0xdb,0xdb,0xdb,0x1d6a,0xd0b,0xd0b,0xd0b,0xd0b,0xd0b,0xd0b,0xd0b,0xd0b, -0xd0b,0xd0b,0xd0b,0xd0b,0xd0b,0xd0b,0xd0b,0xd0b,0xebe,0xebb,0xebe,0xebb,0xebb,0xeb2,0xeb2,0xeb2, -0xeb2,0xeb2,0xeb2,0x124b,0x1248,0x124b,0x1248,0x1242,0x1245,0x1245,0x14df,0x14dc,0xde,0xde,0xde,0xde, -0xde,0xeb8,0xeb5,0xeb5,0xeb5,0xeb2,0xeb8,0xeb5,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1, -0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xe1, -0xe1,0xe1,0xe1,0xe1,0xe1,0xe1,0xe1,0xe1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xe1, -0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xe1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xe1, -0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xe1,0xec7,0xec7,0xec7,0xec7,0xec7,0xec7,0xec7,0xec7, -0xec7,0xec7,0xec7,0xec7,0xec7,0xec7,0xec7,0xec7,0xec4,0xec4,0xec4,0xec4,0xec4,0xec4,0xec4,0xec4, -0xec4,0xec4,0xe4,0xe4,0xe4,0xe4,0xe4,0xe4,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xe7,0x14e2, -0xe7,0xe7,0xe7,0xe7,0xe7,0x14e2,0xe7,0xe7,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24, -0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xee2,0xed3,0xed3,0xed3,0xea,0xed3,0xed3,0xea, -0xea,0xea,0xea,0xea,0xed3,0xed3,0xed3,0xed3,0xee2,0xee2,0xee2,0xee2,0xea,0xee2,0xee2,0xee2, -0xea,0xee2,0xee2,0xee2,0xee2,0xee2,0xee2,0xee2,0xee2,0xee2,0xee2,0xee2,0xee2,0xee2,0xee2,0xee2, -0xee2,0xee2,0xee2,0xee2,0xee2,0xee2,0xee2,0xee2,0x1a19,0x1a19,0xea,0xea,0xed6,0xed6,0xed6,0xea, -0xea,0xea,0xea,0xed9,0xedc,0xedc,0xedc,0xedc,0xedc,0xedc,0xedc,0xedc,0x1a16,0xea,0xea,0xea, -0xea,0xea,0xea,0xea,0xedf,0xedf,0xedf,0xedf,0xedf,0xedf,0xee5,0xee5,0xedc,0xea,0xea,0xea, -0xea,0xea,0xea,0xea,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0x1251,0x1251, -0xed,0xed,0xed,0xed,0xef1,0xef1,0xef1,0xef1,0xef1,0xef4,0xef4,0xef4,0xef1,0xef1,0xef4,0xef1, -0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xed,0xed,0xed,0xed,0xed,0xed, -0xeee,0xeee,0xeee,0xeee,0xeee,0xeee,0xeee,0xeee,0xeee,0xeee,0x124e,0xed,0xed,0xed,0xeeb,0xeeb, -0xefa,0xefa,0xefa,0xefa,0xf0,0xf0,0xf0,0xf0,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa, -0xef7,0xefa,0xefa,0xefa,0xefa,0xefa,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0, -0x15ff,0x1605,0x1602,0x1956,0x18b1,0x197d,0x197d,0x197d,0x197d,0x197d,0x1a1f,0x1a1c,0x1a22,0x1a1c,0x1a22,0x1ae5, -0x1b87,0x1b87,0x1b87,0x1c50,0x1c50,0x1c4a,0x1c47,0x1c4a,0x1c47,0x1c4a,0x1c47,0x1c4a,0x1c47,0x1c4d,0xf3,0xf3, -0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3, -0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3, -0xf21,0xf21,0xf21,0xf1e,0xf1e,0xf15,0xf15,0xf1e,0xf1b,0xf1b,0xf1b,0xf1b,0x1b8a,0xf6,0xf6,0xf6, -0x13b6,0x13b6,0x13b6,0x13b9,0x13b9,0x13b9,0x13bc,0x13bc,0x13c2,0x13bc,0x14a,0x14a,0x14a,0x14a,0x14a,0x14a, -0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0x14f1,0x14f1,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf27, -0x1425,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x1422, -0xcde,0xcde,0xcde,0xcde,0xcde,0xcde,0xcde,0xcde,0xcde,0xcde,0xcde,0xcde,0xcde,0xcde,0xcde,0xcde, -0xf57,0xf48,0xf42,0xf54,0xf51,0xf4b,0xf4b,0xf5a,0xf45,0xf4e,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, -0xfe7,0xfe7,0xfcc,0xfe7,0xfd5,0xfea,0xfea,0xfea,0xfea,0xfea,0xfea,0xfea,0x1c53,0x102,0x1d79,0x1d79, -0xfe1,0xfe1,0xfe1,0xfe1,0xfe1,0xfe1,0xfe1,0xfe1,0xfe1,0xfe1,0xff0,0xff0,0xfdb,0xfde,0xff0,0xff0, -0x1c5f,0x1c5c,0x1af1,0x1aee,0x1af1,0x1af1,0x1af1,0x1b96,0x1b93,0x1b96,0x1b93,0x1d7f,0x1d7f,0x1d7c,0x105,0x105, -0x1c5f,0x1c5c,0x105,0x1c5c,0x105,0x1c5c,0x1c5f,0x1c5c,0x1c5f,0x1c5c,0x1d7f,0x1d7c,0x1d7f,0x105,0x105,0x105, -0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105, -0x105,0x105,0x1c59,0x1c59,0x1c59,0x1b90,0x1b8d,0x160e,0x14fa,0x14fa,0x142e,0x1110,0x1110,0x1110,0x1110,0x1110, -0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b, -0x100b,0x100b,0x100b,0x100b,0x1008,0x1008,0x100e,0x100e,0x108,0x108,0x108,0x108,0x108,0x108,0x108,0x108, -0x1017,0x1017,0x1017,0x1017,0x1017,0x1017,0x1017,0x1017,0x1017,0x1017,0x1017,0x1017,0x1017,0x1017,0x1017,0x1017, -0x1017,0x1017,0x1017,0x1017,0x1017,0x1017,0x1011,0x1011,0x1011,0x1011,0x125a,0x125a,0x10b,0x10b,0x10b,0x1014, -0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614, -0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1803,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e, -0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e, -0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x1020,0x1020,0x1020,0x161a, -0x161a,0x161a,0x161a,0x161a,0x161a,0x161a,0x161a,0x161a,0x161a,0x161a,0x161a,0x111,0x101d,0x101d,0x101d,0x101d, -0x1617,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x1023,0x1023,0x1023,0x1023, -0x1023,0x1023,0x1023,0x1023,0x1023,0x1023,0x1023,0x1023,0x1023,0x1023,0x1023,0x1023,0x1023,0x1023,0x1a34,0x1a34, -0x1a34,0x1a34,0x1a34,0x1a34,0x1a34,0x114,0x114,0x114,0x114,0x114,0x114,0x114,0x1146,0x1146,0x1146,0x1146, -0x1143,0x1143,0x1143,0x1143,0x1143,0x1143,0x1143,0x1143,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134, -0x1143,0x1143,0x113a,0x1137,0x117,0x117,0x117,0x1149,0x1149,0x113d,0x113d,0x113d,0x1140,0x1140,0x1140,0x1140, -0x1140,0x1140,0x1140,0x1140,0x1140,0x1140,0x117,0x117,0x117,0x1146,0x1146,0x1146,0x114c,0x114c,0x114c,0x114c, -0x114c,0x114c,0x114c,0x114c,0x114c,0x114c,0x114f,0x114f,0x114f,0x114f,0x114f,0x114f,0x1161,0x1161,0x1161,0x1161, -0x1161,0x1161,0x1161,0x1161,0x1161,0x1161,0x1167,0x1167,0x11a,0x11a,0x11a,0x11a,0x11a,0x11a,0x11a,0x11a, -0x11a,0x11a,0x11a,0x11a,0x11a,0x11a,0x11a,0x11a,0x11a,0x11a,0x11a,0x11a,0x1191,0x1191,0x1191,0x1191, -0x118b,0x18b7,0x11d,0x11d,0x11d,0x11d,0x11d,0x11d,0x11d,0x11d,0x1197,0x1197,0x118e,0x118e,0x118e,0x118e, -0x118e,0x118e,0x118e,0x118e,0x118e,0x118e,0x11d,0x11d,0x11d,0x11d,0x11d,0x11d,0x11b5,0x11b5,0x11b5,0x11b5, -0x11b5,0x11b5,0x11b5,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11a9,0x11b2,0x11ac, -0x120,0x120,0x120,0x120,0x120,0x120,0x120,0x120,0x120,0x120,0x120,0x11af,0x11c7,0x11c7,0x11c7,0x11c7, -0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11b8,0x11b8,0x11b8,0x11b8,0x11b8,0x11b8,0x11c1,0x11c1,0x11b8,0x11b8,0x11c1, -0x11c1,0x11b8,0x11b8,0x123,0x123,0x123,0x123,0x123,0x123,0x123,0x123,0x123,0x11c4,0x11c4,0x11c4,0x11b8, -0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11b8,0x11c1,0x123,0x123,0x11be,0x11be,0x11be,0x11be, -0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x123,0x123,0x11bb,0x11ca,0x11ca,0x11ca,0x1626,0x126,0x126,0x126, -0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126, -0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x126,0x11d0,0x11d0,0x11d0,0x11d0, -0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0, -0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d0,0x11d3,0x129,0x129,0x11d6,0x11d6,0x11d6,0x11d6, -0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6, -0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x11d6,0x12c,0x12c,0x12c,0x11d9,0x11d9,0x11d9,0x11d9, -0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x12f,0x12f,0x12f, -0x12f,0x12f,0x12f,0x12f,0x12f,0x12f,0x12f,0x12f,0x12f,0x12f,0x12f,0x12f,0x11df,0x11df,0x11df,0x11df, -0x11df,0x11df,0x11df,0x11df,0x11df,0x11df,0x11df,0x11df,0x11df,0x11df,0x11df,0x11df,0x11df,0x11df,0x11df,0x11df, -0x11df,0x11df,0x11df,0x11df,0x11df,0x11df,0x132,0x132,0x132,0x132,0x132,0x11dc,0x11e2,0x11e2,0x11e2,0x11e2, -0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x135,0x135,0x135,0x135,0x11e5,0x11e5,0x11e5,0x11e5, -0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5, -0x138,0x138,0x138,0x138,0x138,0x138,0x138,0x138,0x138,0x138,0x138,0x138,0x1260,0x1260,0x1260,0x1260, -0x1269,0x1260,0x1260,0x1260,0x1269,0x1260,0x1260,0x1260,0x1260,0x125d,0x13b,0x13b,0x1266,0x1266,0x1266,0x1266, -0x1266,0x1266,0x1266,0x126c,0x1266,0x126c,0x1266,0x1266,0x1266,0x126c,0x126c,0x13b,0x126f,0x126f,0x126f,0x126f, -0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f, -0x126f,0x126f,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x128a,0x128a,0x128a,0x128a, -0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a, -0x128a,0x1287,0x1272,0x1287,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x141,0x127b,0x1284,0x1272,0x1284, -0x1284,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1272, -0x1272,0x1278,0x1278,0x1278,0x1278,0x1278,0x1278,0x1278,0x1278,0x141,0x141,0x1275,0x1281,0x1281,0x1281,0x1281, -0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x141,0x141,0x141,0x141,0x141,0x141,0x1281,0x1281,0x1281,0x1281, -0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x141,0x141,0x141,0x141,0x141,0x141,0x127e,0x127e,0x127e,0x127e, -0x127e,0x127e,0x127e,0x128d,0x1290,0x1290,0x1290,0x1290,0x127e,0x127e,0x141,0x141,0x1668,0x1668,0x1668,0x1668, -0x1668,0x1668,0x1668,0x1668,0x1668,0x1668,0x1668,0x1668,0x1668,0x1668,0x1665,0x1bab,0x13d1,0x13aa,0x13c8,0x13c8, -0x13c8,0x13c8,0x13c8,0x13c8,0x13c8,0x13b0,0x13ad,0x13a4,0x13a4,0x13ce,0x13a4,0x13a4,0x13a4,0x13a4,0x13b3,0x1599, -0x159f,0x159c,0x159c,0x19f8,0x17ca,0x17ca,0x1b72,0x144,0x144,0x144,0x144,0x144,0x12a5,0x12a5,0x12a5,0x12a5, -0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x129c,0x129c,0x129f,0x12a8, -0x12a2,0x12a2,0x12a2,0x12a8,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x147,0x1395,0x1395,0x1395,0x1395, -0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x1395, -0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x1395,0x14d,0x14d,0x14d,0x12ba,0x12bd,0x12bd,0x12bd, -0x12bd,0x12bd,0x12bd,0x12c0,0x12cc,0x12cc,0x12bd,0x12bd,0x12bd,0x12bd,0x150,0x13c5,0x12c3,0x12c3,0x12c3,0x12c3, -0x12c3,0x12c3,0x12c3,0x12c3,0x12c3,0x12c3,0x150,0x150,0x150,0x150,0x12bd,0x12bd,0x12ea,0x12de,0x12ea,0x153, -0x153,0x153,0x153,0x153,0x153,0x153,0x153,0x153,0x153,0x153,0x153,0x153,0x153,0x153,0x153,0x153, -0x153,0x153,0x153,0x153,0x153,0x153,0x153,0x12e7,0x12e7,0x12ed,0x12e1,0x12e4,0x1302,0x1302,0x1302,0x12fc, -0x12fc,0x12f3,0x12fc,0x12fc,0x12f3,0x12fc,0x12fc,0x1305,0x12ff,0x12f6,0x156,0x156,0x12f9,0x12f9,0x12f9,0x12f9, -0x12f9,0x12f9,0x12f9,0x12f9,0x12f9,0x12f9,0x156,0x156,0x156,0x156,0x156,0x156,0x130b,0x130b,0x130b,0x130b, -0x130b,0x130b,0x130b,0x159,0x159,0x159,0x159,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308, -0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308, -0x1308,0x1308,0x1308,0x1308,0x159,0x159,0x159,0x159,0x1314,0x1314,0x1314,0x1314,0x1314,0x1314,0x1314,0x1314, -0x1314,0x1314,0x1314,0x1314,0x1314,0x1314,0x1314,0x1314,0x1314,0x1314,0x1314,0x1314,0x1314,0x1314,0x15c,0x1311, -0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323, -0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x15f,0x15f, -0x15f,0x131d,0x1320,0x1320,0x1320,0x1320,0x1320,0x1320,0x1329,0x1329,0x1329,0x1329,0x1329,0x1329,0x1329,0x1329, -0x1329,0x1329,0x1329,0x1329,0x1329,0x1329,0x1329,0x1329,0x1329,0x1329,0x1329,0x1329,0x1329,0x1329,0x162,0x162, -0x1326,0x1326,0x1326,0x1326,0x1326,0x1326,0x1326,0x1326,0x132f,0x132f,0x132f,0x132f,0x132f,0x132f,0x132f,0x132f, -0x132f,0x132f,0x132f,0x132f,0x132f,0x132f,0x132f,0x132f,0x132f,0x132f,0x132f,0x165,0x165,0x165,0x165,0x165, -0x132c,0x132c,0x132c,0x132c,0x132c,0x132c,0x132c,0x132c,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335, -0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335, -0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x1335,0x16b,0x134d,0x134d,0x1c62,0x16e,0x16e,0x16e,0x16e,0x16e, -0x16e,0x16e,0x16e,0x16e,0x16e,0x1a3d,0x16e,0x16e,0x1578,0x1578,0x1578,0x1578,0x1578,0x1578,0x1578,0x1578, -0x1578,0x1578,0x1578,0x1578,0x1578,0x1578,0x1578,0x1578,0x1938,0x1938,0x1938,0x1938,0x1938,0x1938,0x1938,0x1938, -0x1938,0x1938,0x1938,0x1938,0x1938,0x1b9c,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171, -0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171, -0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x171,0x143a,0x143a,0x143a,0x143a,0x143a,0x143a, -0x143a,0x143a,0x143a,0x143a,0x143a,0x143a,0x143a,0x143a,0x143a,0x143a,0x143a,0x143a,0x143a,0x143a,0x143a,0x143a, -0x143a,0x143a,0x143a,0x143a,0x139e,0x14a0,0x14a0,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174, -0x174,0x174,0x174,0x174,0x139b,0x139b,0x139b,0x139b,0x139b,0x139b,0x139b,0x139b,0x139b,0x139b,0x139b,0x139b, -0x139b,0x139b,0x139b,0x139b,0x139b,0x139b,0x14a0,0x14a0,0x14a0,0x14a0,0x14a0,0x14a0,0x14a0,0x14a0,0x14a0,0x193b, -0x174,0x174,0x174,0x174,0x1398,0x1398,0x1398,0x1398,0x1398,0x1398,0x1398,0x1398,0x1398,0x174,0x174,0x174, -0x174,0x174,0x174,0x174,0x14c4,0x14c4,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174, -0x174,0x174,0x174,0x174,0x19dd,0x19dd,0x19dd,0x19dd,0x19dd,0x19dd,0x174,0x174,0x174,0x174,0x174,0x174, -0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174, -0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x174,0x1443,0x1443,0x1443,0x1443, -0x1443,0x1443,0x1443,0x1443,0x1443,0x1443,0x1443,0x1443,0x1443,0x1443,0x1443,0x1443,0x1443,0x1443,0x1443,0x1443, -0x1443,0x1443,0x1443,0x1443,0x1443,0x143d,0x143d,0x143d,0x177,0x177,0x1440,0x177,0x1455,0x1455,0x1455,0x1455, -0x1455,0x1455,0x1449,0x1452,0x1446,0x1446,0x1452,0x1452,0x1452,0x1446,0x1452,0x1446,0x1446,0x1446,0x144c,0x144c, -0x17a,0x17a,0x17a,0x17a,0x17a,0x17a,0x17a,0x17a,0x144f,0x144f,0x144f,0x144f,0x17d,0x1458,0x1458,0x1458, -0x1458,0x1458,0x1458,0x17d,0x17d,0x1458,0x1458,0x1458,0x1458,0x1458,0x1458,0x17d,0x17d,0x1458,0x1458,0x1458, -0x1458,0x1458,0x1458,0x17d,0x17d,0x17d,0x17d,0x17d,0x17d,0x17d,0x17d,0x17d,0x1458,0x1458,0x1458,0x1458, -0x1458,0x1458,0x1458,0x17d,0x1458,0x1458,0x1458,0x1458,0x1458,0x1458,0x1458,0x17d,0x16ce,0x16ce,0x16ce,0x16ce, -0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x145b,0x145b,0x145b,0x145b, -0x145b,0x145b,0x145e,0x1473,0x1473,0x1464,0x1464,0x1464,0x1464,0x1464,0x180,0x180,0x180,0x180,0x1461,0x1461, -0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1467,0x1467, -0x1467,0x1467,0x1467,0x1467,0x1467,0x1467,0x1467,0x1467,0x1c68,0x1c6b,0x1c6b,0x1c65,0x1c65,0x1c6b,0x180,0x180, -0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x1635,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476, -0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476, -0x1476,0x183,0x183,0x183,0x183,0x183,0x183,0x183,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479, -0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x186,0x186,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479, -0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x1638,0x186,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479, -0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x14a9,0x186,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479, -0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x1479,0x1638,0x1638,0x1638,0x1638,0x1638,0x1638,0x1638,0x1638, -0x1638,0x1638,0x1638,0x1638,0x1638,0x1638,0x1638,0x1638,0x1638,0x1638,0x1638,0x1638,0x1638,0x1638,0x186,0x186, -0x186,0x186,0x186,0x186,0x186,0x186,0x186,0x186,0x14be,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x1644,0x1644, -0x1644,0x1644,0x1644,0x1644,0x17c1,0x1644,0x1644,0x1644,0x1893,0x1944,0x1944,0x1980,0x1980,0x1b54,0x1c05,0x1c05, -0x189,0x189,0x189,0x189,0x1d52,0x1cd4,0x1cd4,0x1cd4,0x1644,0x1644,0x1644,0x1644,0x1644,0x1644,0x1644,0x1644, -0x1644,0x1644,0x1644,0x17be,0x17be,0x189,0x189,0x189,0x1644,0x1644,0x1644,0x1644,0x1944,0x1944,0x1944,0x19e3, -0x19e3,0x1aca,0x1b54,0x1c05,0x1c05,0x189,0x189,0x189,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c, -0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x1cf8,0x1cf8,0x1cf8,0x18c, -0x18c,0x18c,0x18c,0x1cf8,0x1cf8,0x1cf8,0x1cf8,0x1cf8,0x151b,0x151b,0x151b,0x151b,0x18f,0x151b,0x151b,0x151b, -0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b, -0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x18f,0x151b,0x151b,0x18f,0x151b,0x18f,0x18f,0x151b, -0x18f,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x18f,0x151b,0x151b,0x151b,0x151b, -0x18f,0x151b,0x18f,0x151b,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x151b,0x18f,0x18f,0x18f,0x18f,0x151b, -0x18f,0x151b,0x18f,0x151b,0x18f,0x151b,0x151b,0x151b,0x18f,0x151b,0x151b,0x18f,0x151b,0x18f,0x18f,0x151b, -0x18f,0x151b,0x18f,0x151b,0x18f,0x151b,0x18f,0x151b,0x18f,0x151b,0x151b,0x18f,0x151b,0x18f,0x18f,0x151b, -0x151b,0x151b,0x151b,0x18f,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x18f,0x151b,0x151b,0x151b,0x151b, -0x18f,0x151b,0x151b,0x151b,0x151b,0x18f,0x151b,0x18f,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b, -0x151b,0x151b,0x18f,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b, -0x151b,0x151b,0x151b,0x151b,0x18f,0x18f,0x18f,0x18f,0x18f,0x151b,0x151b,0x151b,0x18f,0x151b,0x151b,0x151b, -0x151b,0x151b,0x18f,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b,0x151b, -0x151b,0x151b,0x151b,0x151b,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f, -0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f, -0x18f,0x18f,0x18f,0x18f,0x1518,0x1518,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f,0x18f, -0x18f,0x18f,0x18f,0x18f,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x151e,0x151e,0x151e,0x151e,0x151e, -0x152d,0x151e,0x1521,0x1521,0x151e,0x151e,0x151e,0x1524,0x1524,0x192,0x152a,0x152a,0x152a,0x152a,0x152a,0x152a, -0x152a,0x152a,0x152a,0x152a,0x1527,0x1533,0x1533,0x1533,0x1a49,0x1a46,0x1a46,0x1ba2,0x192,0x192,0x192,0x192, -0x192,0x192,0x192,0x192,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0, -0x16e0,0x16e0,0x16e0,0x16e0,0x153f,0x153f,0x153f,0x153f,0x153f,0x153f,0x153f,0x153f,0x153f,0x153f,0x153f,0x153c, -0x1536,0x1536,0x153c,0x153c,0x1545,0x1545,0x153f,0x1542,0x1542,0x153c,0x1539,0x195,0x195,0x195,0x195,0x195, -0x195,0x195,0x195,0x195,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548, -0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x198,0x198,0x198,0x198, -0x1818,0x1818,0x1548,0x1548,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818, -0x1818,0x1818,0x1818,0x1818,0x198,0x198,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818, -0x1818,0x1818,0x1818,0x1818,0x1554,0x1554,0x1554,0x1554,0x1554,0x1afd,0x1afd,0x1afd,0x1afd,0x1afd,0x1afd,0x19b, -0x19b,0x19b,0x19b,0x1af7,0x1554,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551, -0x1551,0x1551,0x1551,0x1551,0x1afa,0x1afa,0x1afa,0x1afa,0x1afa,0x1afa,0x1afa,0x1afa,0x19b,0x19b,0x19b,0x19b, -0x19b,0x19b,0x19b,0x154e,0x154e,0x154e,0x154e,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557, -0x1557,0x1557,0x1557,0x1557,0x1578,0x1578,0x1578,0x1578,0x1578,0x1578,0x1578,0x1578,0x1578,0x19e,0x19e,0x19e, -0x19e,0x19e,0x19e,0x19e,0x1575,0x1575,0x1575,0x1575,0x1575,0x1575,0x1575,0x1575,0x1575,0x1575,0x19e,0x19e, -0x19e,0x19e,0x19e,0x19e,0x157b,0x157b,0x157b,0x157b,0x157b,0x157b,0x157b,0x157b,0x1a1,0x1a1,0x1a1,0x1a1, -0x1a1,0x1a1,0x1a1,0x1a1,0x13cb,0x13c8,0x13cb,0x13a7,0x13c8,0x13ce,0x13ce,0x13d1,0x13ce,0x13d1,0x13d4,0x13c8, -0x13d1,0x13d1,0x13c8,0x13c8,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x157e, -0x158a,0x157e,0x158a,0x158a,0x157e,0x157e,0x157e,0x157e,0x157e,0x157e,0x1584,0x1581,0x1b00,0x1c77,0x1a4,0x1a4, -0x1a4,0x1a4,0x1a4,0x1a4,0x1587,0x1587,0x1587,0x1587,0x1587,0x1587,0x1587,0x1587,0x1587,0x1587,0x1a4,0x1a4, -0x1a4,0x1a4,0x1a4,0x1a4,0x1de5,0x1de5,0x1de5,0x1de5,0x1de5,0x1de5,0x1de5,0x1de5,0x1de5,0x1de5,0x1de5,0x1de5, -0x1de5,0x1de5,0x1de5,0x1de5,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659, -0x1659,0x1659,0x1a7,0x1a7,0x1656,0x1656,0x1656,0x1656,0x1656,0x165c,0x1a7,0x1a7,0x1a7,0x1a7,0x1a7,0x1a7, -0x1a7,0x1a7,0x1a7,0x1a7,0x1662,0x1662,0x1662,0x1662,0x1aa,0x1aa,0x1aa,0x1aa,0x1aa,0x1aa,0x1aa,0x1aa, -0x1aa,0x1aa,0x1aa,0x165f,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x2af, -0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x17cd,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4, +3,3,3,3,3,3,3,3,3,3,0xf1b,0xf1b,0xf1b,0xf1b,0xf1b,0xf1b, +0xf1b,0xf1b,0xf1b,0xf1b,0xf1b,0xf1b,0xf1b,0xf1b,0xf1b,0xf1b,0xf1b,0xf1b,0xf1b,0xf1b,0xf1b,0xf1b, +0xf1b,0xf1b,0xf1b,0xf1b,0xed6,0xfc9,0xfc9,3,3,3,3,3,3,3,3,3, +3,3,3,3,0xec4,0xec4,0xec4,0xec4,0xec4,0xec4,0xec4,0xec4,0xec4,0xec4,0xec4,0xec4, +0xec4,0xec4,0xec4,0xec4,0xec4,0xec4,0xfc9,0xfc9,0xfc9,0xfc9,0xfc9,0xfc9,0xfc9,0xfc9,0xfc9,0x1416, +3,3,3,3,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,0xec1,3,3,3, +3,3,3,3,0xfe1,0xfe1,3,3,3,3,3,3,3,3,3,3, +3,3,3,3,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,3,3,3,3,3,3, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, +3,3,3,3,0xfc6,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce, +0x12ab,0x10ce,0x10ce,0x10ce,0x1368,0x1410,0x1410,0x1425,0x1425,0x15f6,0x1689,0x1689,3,3,3,3, +0x17af,0x173d,0x173d,0x173d,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x12a8, +0x12a8,3,3,3,0x10ce,0x10ce,0x10ce,0x10ce,0x1410,0x1410,0x1410,0x149d,0x149d,0x156f,0x15f6,0x1689, +0x1689,3,3,3,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12, +0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0x1755,0x1755,0x1755,3,3,3,3,0x1755, +0x1755,0x1755,0x1755,0x1755,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb, +0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x14bb,0x14bb,0x14bb,0x14bb,0x1755,3,3, +3,3,3,3,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6, +3,3,3,3,0x173d,3,3,3,3,3,3,3,3,3,3,3, +3,3,3,3,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581, +0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,3,3,3,3,3,3,3,3, +3,3,3,3,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb, +0x14bb,0x14bb,3,3,0x15f6,0x15f6,0x15f6,0x15f6,0x1689,0x17af,0x17af,0x17af,0x15f6,0x15f6,0x15f6,0x173d, +0x173d,3,3,3,0x15f6,0x15f6,0x15f6,0x1689,0x1689,0x1689,0x1689,0x17af,0x17af,0x1887,3,3, +3,3,3,0x1887,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6,0x1689,0x1689,0x1689,0x1689,0x1689,0x1689, +0x1689,0x1689,0x1689,0x1689,0x1689,0x1689,0x1689,0x1740,0x1740,0x1740,0x1887,3,3,3,3,3, +3,3,0x17af,0x17af,0x1689,0x1689,0x1689,0x1689,0x1689,0x1689,0x1689,0x173d,0x173d,0x173d,0x17af,0x17af, +0x1887,3,3,0x1887,0x173d,0x173d,0x173d,0x173d,0x173d,0x173d,0x173d,0x173d,0x17af,0x1887,3,3, +3,3,3,3,0x1740,0x1740,0x1740,0x1740,0x1740,0x1740,0x1740,0x17b2,0x17b2,3,3,3, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,0x63f,0x63f, +0x16a1,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, +0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x10e,0x10e,0x10e, +9,0x7e0,9,9,9,9,9,9,9,9,9,9,9,9,9,9, +9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, +9,9,9,9,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5, +0x9a5,0x9a5,0x9a5,0x9a5,9,9,9,9,9,9,9,9,9,9,9,9, +9,9,9,9,0xa8,0xa8,0xa8,0xa8,0xa8,0x669,0x669,0x17d0,0x17d0,0x17d0,0xc,0xc, +0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc, +0xc,0xc,0xc,0xc,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xc, +0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc, +0xc,0xc,0xc,0xc,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3, +0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0xc,0xc,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3, +0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3, +0x10e3,0x10e3,0xc,0x1620,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10ec,0x10f2,0x10ef,0x141f, +0x137a,0x142e,0x142e,0x142e,0x142e,0x142e,0x14c4,0x14c1,0x14c7,0x14c1,0x14c7,0x158a,0x1620,0x1620,0x1620,0x16b0, +0x16b0,0x16aa,0x16a7,0x16aa,0x16a7,0x16aa,0x16a7,0x16aa,0x16a7,0x16ad,0xc,0xc,0xc,0xc,0xc,0xc, +0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc, +0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0x8c7,0x8c7,0x8c7,0x8c7, +0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0xecd,0xecd,0xecd,0xf,0xf,0xae9,0xae9,0xae9,0xae9, +0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9, +0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf, +0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf, +0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0, +0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0x1743,0x1743,0x1743, +0x1743,0x17b5,0xf,0xf,0xf,0xf,0xf,0xf,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8, +0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8, +0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xf,0xf,0x1371,0x1371,0xf,0xf,0xf,0xf,0xf,0xf, +0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6, +0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0xf,0xf,0xf,0xf,0xf,0xf,0xf, +0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4, 0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4, -0x1ad,0x1ad,0x1ad,0x1ad,0x1bab,0x1c7d,0x1c7d,0x1c7d,0x1c7d,0x1c7d,0x1c7d,0x1c7d,0x1c7d,0x1c7d,0x1c7d,0x1c7d, -0x1c7a,0x1c7a,0x1c7a,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0, -0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0,0x1b0, -0x1b0,0x1b0,0x1b0,0x1b0,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1b3, -0x1b3,0x1b3,0x1b3,0x1b3,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674, -0x1674,0x1b3,0x1b3,0x1b3,0x1b3,0x1b3,0x1b3,0x1b3,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674, -0x1674,0x1674,0x1b3,0x1b3,0x1671,0x166b,0x166e,0x1677,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a, -0x1b6,0x1b6,0x1b6,0x1b6,0x1b6,0x1b6,0x1b6,0x1b6,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662, -0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d, -0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x1a4c,0x1a4c,0x1a4c, -0x1a4c,0x1cfb,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b57,0x1b57,0x1b57,0x1b57,0x1b57,0x1b57,0x1b57,0x1b57, -0x1b57,0x1b57,0x1b57,0x1b57,0x1b9,0x1b9,0x1b9,0x1b9,0x1cd7,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9, -0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x182d,0x17d0,0x1689,0x17d6,0x1bc,0x1692,0x1692,0x1692, -0x1692,0x1692,0x1692,0x1692,0x1692,0x1bc,0x1bc,0x1692,0x1692,0x1bc,0x1bc,0x1692,0x1692,0x1692,0x1692,0x1692, -0x1692,0x1692,0x1692,0x1692,0x1692,0x1692,0x1692,0x1692,0x1692,0x1bc,0x1692,0x1692,0x1692,0x1692,0x1692,0x1692, -0x1692,0x1bc,0x1692,0x1692,0x1bc,0x1692,0x1692,0x1692,0x1692,0x1692,0x1bc,0x1ad6,0x17d3,0x168f,0x1680,0x1689, -0x1680,0x1689,0x1689,0x1689,0x1689,0x1bc,0x1bc,0x1689,0x1689,0x1bc,0x1bc,0x168c,0x168c,0x1686,0x1bc,0x1bc, -0x1830,0x1bc,0x1bc,0x1bc,0x1bc,0x1bc,0x1bc,0x1680,0x1bc,0x1bc,0x1bc,0x1bc,0x1bc,0x1698,0x1695,0x1695, -0x1692,0x1692,0x1689,0x1689,0x1bc,0x1bc,0x1683,0x1683,0x1683,0x1683,0x1683,0x1683,0x1683,0x1bc,0x1bc,0x1bc, -0x1683,0x1683,0x1683,0x1683,0x1683,0x1bc,0x1bc,0x1bc,0x1bc,0x1bc,0x1bc,0x1bc,0x1bc,0x1bc,0x1bc,0x1bc, -0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0, -0x16b0,0x16b0,0x1bf,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0, -0x16c2,0x16c2,0x16c2,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b9,0x16bc,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2, -0x16bf,0x16bf,0x16bf,0x16bf,0x16bf,0x16bf,0x16bf,0x16bf,0x16bf,0x16bf,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2, -0x1833,0x1833,0x1833,0x1833,0x16ce,0x16cb,0x1b03,0x1b03,0x1bb1,0x1bb4,0x1bae,0x1bae,0x1c5,0x1c5,0x1c5,0x1c5, -0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8, -0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8,0x1c8, -0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0,0x16e0, -0x16e0,0x16e0,0x16e0,0x16d7,0x16da,0x16dd,0x16e0,0x1cb,0x1cb,0x1cb,0x1cb,0x1cb,0x1cb,0x1cb,0x1cb,0x1cb, -0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16e3,0x16e3,0x1ce,0x1ce,0x1ce,0x1ce,0x16e6,0x16e6,0x16e6,0x16e6,0x16e6, -0x16ec,0x16ec,0x17d9,0x16ec,0x16ec,0x16ec,0x16e9,0x1ce,0x1ce,0x1ce,0x1ce,0x1ce,0x1ce,0x1ce,0x1ce,0x1ce, -0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x1d1,0x1d1,0x16f5,0x16f5,0x16f5,0x16f5,0x16f5,0x16f5,0x16f5,0x16f5,0x16f5, -0x16f2,0x16f2,0x16f2,0x16f2,0x16f2,0x16f2,0x16f2,0x1d1,0x1d1,0x1d1,0x1d1,0x1d1,0x1d1,0x1d1,0x1d1,0x1d1, -0x16fb,0x170d,0x170d,0x1701,0x170a,0x1d4,0x1d4,0x1d4,0x1d4,0x1d4,0x1d4,0x1d4,0x1d4,0x1d4,0x1d4,0x1d4, -0x1704,0x1704,0x1704,0x1704,0x1704,0x1704,0x1704,0x1704,0x1704,0x1704,0x1d4,0x1d4,0x1d4,0x1d4,0x1d4,0x1d4, -0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713, -0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1713,0x1d7, -0x1710,0x1710,0x1710,0x1710,0x1710,0x1710,0x1710,0x1710,0x1710,0x1710,0x1d7,0x1d7,0x1d7,0x1d7,0x1716,0x1716, -0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3, -0x171f,0x171f,0x171f,0x171f,0x171f,0x1719,0x1725,0x1722,0x1722,0x1722,0x1722,0x1722,0x1722,0x1722,0x1722,0x1722, -0x171c,0x171c,0x171c,0x171c,0x171c,0x171c,0x171c,0x171c,0x171c,0x171c,0x1722,0x1722,0x1722,0x1722,0x1722,0x1da, -0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b, -0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x172b,0x1dd, -0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1737, -0x1737,0x1737,0x1737,0x1737,0x1737,0x1737,0x1734,0x1734,0x1734,0x1734,0x1734,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0, -0x174f,0x174f,0x1752,0x1752,0x1755,0x1746,0x1e3,0x1e3,0x1e3,0x1e3,0x1e3,0x1e3,0x1e3,0x1e3,0x1e3,0x1e3, -0x174c,0x174c,0x174c,0x174c,0x174c,0x174c,0x174c,0x174c,0x174c,0x174c,0x1e3,0x1746,0x1746,0x1746,0x1746,0x1746, -0x1746,0x1746,0x1e3,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f, -0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x1e3,0x1e3,0x1e3,0x1e3,0x1e3,0x174f,0x174f,0x174f, -0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e, -0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x1e6,0x1e6,0x1e6,0x1e6,0x1e6,0x1e6,0x1e6, -0x1767,0x1767,0x1767,0x1767,0x1767,0x1767,0x1767,0x1767,0x1767,0x1767,0x1767,0x1767,0x1767,0x1767,0x1767,0x1767, -0x1767,0x1767,0x1e9,0x1e9,0x1e9,0x1e9,0x1e9,0x1e9,0x1e9,0x1764,0x1764,0x1764,0x1764,0x1e9,0x1e9,0x1e9, -0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x176a, -0x177c,0x177c,0x176a,0x176a,0x176a,0x176a,0x1ef,0x1ef,0x177c,0x177c,0x177f,0x177f,0x176a,0x176a,0x177c,0x1770, -0x176d,0x1773,0x1785,0x1785,0x1776,0x1776,0x1779,0x1779,0x1779,0x1785,0x183c,0x183c,0x183c,0x183c,0x183c,0x183c, -0x183c,0x183c,0x183c,0x183c,0x183c,0x183c,0x183c,0x183c,0x1839,0x1839,0x1839,0x1839,0x1836,0x1836,0x1ef,0x1ef, -0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef, -0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef,0x1ef, -0x1f2,0x1788,0x1788,0x1788,0x1788,0x1788,0x1788,0x1788,0x1788,0x1788,0x1788,0x1788,0x1788,0x1788,0x1788,0x1788, -0x1788,0x1788,0x1788,0x1788,0x1788,0x1f2,0x1f2,0x1f2,0x1f2,0x1f2,0x1f2,0x1f2,0x1f2,0x1f2,0x1f2,0x1f2, -0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x1f5,0x1f5,0x1f5,0x1f5, -0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b, -0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b, -0x178b,0x178b,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b, -0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b, -0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x1f5,0x1f5,0x1bb7,0x1bb7,0x1d82,0x1d82, -0x1d82,0x1d82,0x1d82,0x1d82,0x1d82,0x1d82,0x1d82,0x1d82,0x1f5,0x1f5,0x1f5,0x1f5,0x1d82,0x1d82,0x1f5,0x1f5, -0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5, -0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5,0x1f5, -0x178e,0x179d,0x1794,0x1791,0x17a3,0x17a3,0x1797,0x17a3,0x1f8,0x1f8,0x1f8,0x1f8,0x1f8,0x1f8,0x1f8,0x1f8, -0x179a,0x179a,0x179a,0x179a,0x179a,0x179a,0x179a,0x179a,0x179a,0x179a,0x1f8,0x1f8,0x1f8,0x1f8,0x1f8,0x1f8, -0x17a9,0x17a9,0x17a9,0x17a9,0x17a9,0x17a9,0x17a9,0x17a9,0x17a9,0x17a9,0x17a6,0x17a6,0x17a6,0x17a6,0x17a6,0x17a6, -0x17a6,0x17a6,0x17a6,0x1fb,0x1fb,0x1fb,0x1fb,0x1fb,0x1fb,0x1fb,0x1fb,0x1fb,0x1fb,0x1fb,0x1fb,0x17af, -0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851, -0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1851,0x1a4f,0x1fe,0x1fe,0x183f,0x184e,0x183f, -0x184b,0x184b,0x183f,0x183f,0x183f,0x183f,0x184e,0x183f,0x183f,0x183f,0x183f,0x1842,0x1fe,0x1fe,0x1fe,0x1fe, -0x1848,0x1848,0x1848,0x1848,0x1848,0x1848,0x1848,0x1848,0x1848,0x1848,0x1845,0x1845,0x1854,0x1854,0x1854,0x1845, -0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201, -0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201, -0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x201,0x1869,0x1869,0x1869,0x1869,0x1869,0x1869,0x1869,0x1869, -0x1869,0x1869,0x1869,0x1869,0x1869,0x1869,0x1869,0x1869,0x1869,0x1869,0x1869,0x207,0x1869,0x1869,0x207,0x207, -0x207,0x207,0x207,0x1866,0x1866,0x1866,0x1866,0x1866,0x186c,0x186c,0x186c,0x186c,0x186c,0x186c,0x186c,0x20a, -0x186c,0x20a,0x186c,0x186c,0x186c,0x186c,0x20a,0x186c,0x186c,0x186c,0x186c,0x186c,0x186c,0x186c,0x186c,0x186c, -0x186c,0x186c,0x186c,0x186c,0x186c,0x186c,0x20a,0x186c,0x186c,0x186c,0x186c,0x186c,0x186c,0x186c,0x186c,0x186c, -0x186c,0x186f,0x20a,0x20a,0x20a,0x20a,0x20a,0x20a,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5, -0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878, -0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x20d,0x20d,0x20d,0x20d,0x20d, -0x20d,0x20d,0x20d,0x20d,0x20d,0x20d,0x20d,0x20d,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875, -0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x20d,0x20d,0x20d,0x20d,0x20d, -0x20d,0x20d,0x1872,0x1872,0x1872,0x1872,0x1872,0x1872,0x187e,0x187e,0x187e,0x187e,0x187b,0x187e,0x187e,0x1881, -0x1884,0x1881,0x1881,0x187e,0x210,0x210,0x210,0x210,0x210,0x210,0x210,0x210,0x210,0x210,0x210,0x210, -0x210,0x210,0x210,0x187b,0x187b,0x187b,0x187b,0x187b,0x18db,0x18db,0x18db,0x18db,0x18d2,0x18d2,0x18d2,0x18cc, -0x18cf,0x18cf,0x18cf,0x1b06,0x213,0x213,0x213,0x213,0x18d8,0x18d8,0x18d8,0x18d8,0x18d8,0x18d8,0x18d8,0x18d8, -0x18d8,0x18d8,0x213,0x213,0x213,0x213,0x18d5,0x18d5,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6, -0x18f6,0x216,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6, -0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f6,0x18f3,0x18e1,0x18e1,0x18e1,0x18e1, -0x18e1,0x18e1,0x18e1,0x216,0x18e1,0x18e1,0x18e1,0x18e1,0x18e1,0x18e1,0x18f3,0x18e4,0x18f6,0x18f9,0x18f9,0x18ed, -0x18ea,0x18ea,0x216,0x216,0x216,0x216,0x216,0x216,0x216,0x216,0x216,0x216,0x18f0,0x18f0,0x18f0,0x18f0, -0x18f0,0x18f0,0x18f0,0x18f0,0x18f0,0x18f0,0x18e7,0x18e7,0x18e7,0x18e7,0x18e7,0x18e7,0x18e7,0x18e7,0x18e7,0x18e7, -0x18e7,0x18e7,0x18e7,0x18e7,0x18e7,0x216,0x216,0x216,0x1905,0x1908,0x190e,0x190e,0x190e,0x190e,0x190e,0x190e, -0x190e,0x190e,0x190e,0x190e,0x190e,0x190e,0x190e,0x190e,0x18fc,0x18fc,0x18fc,0x18fc,0x18fc,0x18fc,0x18fc,0x18fc, -0x18fc,0x1d88,0x1d85,0x219,0x219,0x219,0x219,0x219,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d, -0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x21c, -0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff, -0x18ff,0x21c,0x21c,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x18ff,0x21c,0x18ff,0x18ff,0x21c,0x18ff,0x18ff, -0x18ff,0x18ff,0x18ff,0x21c,0x21c,0x21c,0x21c,0x21c,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22, -0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x194d,0x19ec,0x1b60,0x1b63,0x1c11,0x21f,0x21f,0x21f, -0x21f,0x21f,0x21f,0x21f,0x21f,0x21f,0x21f,0x21f,0x1c0e,0x1c0e,0x21f,0x21f,0x21f,0x21f,0x21f,0x21f, -0x21f,0x21f,0x21f,0x21f,0x21f,0x21f,0x21f,0x21f,0x190e,0x190e,0x190e,0x190e,0x190e,0x190e,0x190e,0x190e, -0x190e,0x190e,0x190e,0x190e,0x190e,0x190e,0x190e,0x190e,0x222,0x222,0x1902,0x1902,0x1902,0x1902,0x1902,0x1902, -0x1902,0x1902,0x1902,0x1902,0x1902,0x1902,0x1902,0x1902,0x222,0x190b,0x1902,0x1902,0x1902,0x1902,0x1902,0x1902, -0x1902,0x190b,0x1902,0x1902,0x190b,0x1902,0x1902,0x222,0x222,0x222,0x222,0x222,0x222,0x222,0x222,0x222, -0x1911,0x1911,0x1911,0x1911,0x1911,0x1911,0x1911,0x1911,0x1911,0x1911,0x1911,0x1911,0x1911,0x225,0x225,0x225, -0x225,0x225,0x225,0x225,0x225,0x225,0x225,0x225,0x225,0x225,0x225,0x225,0x225,0x225,0x225,0x225, -0x1929,0x1929,0x191a,0x1914,0x1914,0x1929,0x1917,0x192c,0x192c,0x192c,0x192c,0x192f,0x192f,0x1923,0x1920,0x191d, -0x1926,0x1926,0x1926,0x1926,0x1926,0x1926,0x1926,0x1926,0x1926,0x1926,0x1bba,0x1923,0x228,0x191d,0x1a52,0x1b09, -0x1bbd,0x1bbd,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228, -0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228,0x228, -0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935,0x1935, -0x1935,0x1935,0x1935,0x1935,0x22b,0x22b,0x22b,0x22b,0x1932,0x1932,0x1932,0x1932,0x1932,0x1932,0x1932,0x1932, -0x1932,0x1932,0x1932,0x1932,0x1932,0x1932,0x1932,0x1932,0x1932,0x1932,0x1932,0x1932,0x1932,0x1932,0x1932,0x1932, -0x1932,0x1932,0x1932,0x1932,0x22b,0x22b,0x22b,0x22b,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950, -0x1950,0x1950,0x1950,0x1950,0x1950,0x1ad3,0x1ad3,0x1ad3,0x1ad3,0x1ad3,0x1b66,0x1b66,0x1b66,0x1b66,0x1b66,0x1b66, -0x22e,0x22e,0x22e,0x22e,0x22e,0x22e,0x22e,0x22e,0x1ce0,0x1ce0,0x1ce0,0x231,0x231,0x231,0x231,0x231, -0x231,0x231,0x231,0x231,0x231,0x231,0x231,0x231,0x273,0x273,0x1d55,0x273,0x273,0x273,0x273,0x273, -0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x1992,0x1992,0x1992,0x1992,0x1992,0x1992,0x1992,0x234, -0x1992,0x1992,0x234,0x1992,0x1992,0x1992,0x1992,0x1992,0x1992,0x1992,0x1992,0x1992,0x1992,0x1992,0x1992,0x1992, -0x1992,0x1992,0x1992,0x1992,0x1992,0x1992,0x1992,0x1992,0x1992,0x1986,0x1986,0x1986,0x1986,0x1986,0x1986,0x234, -0x234,0x234,0x1986,0x234,0x1986,0x1986,0x234,0x1986,0x1986,0x1986,0x1989,0x1986,0x198c,0x198c,0x1995,0x1986, -0x234,0x234,0x234,0x234,0x234,0x234,0x234,0x234,0x198f,0x198f,0x198f,0x198f,0x198f,0x198f,0x198f,0x198f, -0x198f,0x198f,0x234,0x234,0x234,0x234,0x234,0x234,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5, -0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5, -0x19f5,0x19f5,0x19f5,0x19f5,0x237,0x237,0x237,0x237,0x19a4,0x19a7,0x19a7,0x23a,0x23a,0x23a,0x23a,0x23a, -0x23a,0x23a,0x23a,0x23a,0x23a,0x23a,0x23a,0x23a,0x1cbc,0x1cbc,0x1cbc,0x1cbc,0x1cbc,0x1cbc,0x1cbc,0x1cbc, -0x1cbc,0x1cbc,0x1cbc,0x1cbc,0x1cbc,0x1cbc,0x1cbc,0x1cbc,0x19b6,0x19b6,0x19b6,0x19b6,0x19b6,0x19b6,0x19b6,0x19b6, -0x19b6,0x19b6,0x19b6,0x23d,0x23d,0x23d,0x23d,0x23d,0x1c89,0x1c89,0x1c89,0x1c89,0x1c89,0x1c89,0x1c89,0x1c89, -0x1c89,0x1c89,0x1c89,0x1c89,0x1c89,0x1c89,0x1c89,0x1c89,0x19c2,0x19c5,0x19d4,0x19d4,0x19c5,0x19c8,0x19c2,0x19bf, -0x240,0x240,0x240,0x240,0x240,0x240,0x240,0x240,0x19ad,0x1998,0x1998,0x1998,0x1998,0x1998,0x1998,0x19aa, -0x19aa,0x1998,0x1998,0x1998,0x19ad,0x19ad,0x19ad,0x19ad,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f, -0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x243,0x243,0x243,0x243, -0x243,0x243,0x243,0x243,0x243,0x243,0x243,0x243,0x1a58,0x1a58,0x1a58,0x1a58,0x1a58,0x1a58,0x1a58,0x1a58, -0x1a58,0x1a58,0x1a58,0x1a58,0x1a58,0x1a58,0x243,0x243,0x1b6f,0x1b6f,0x1b6f,0x1b6f,0x1c17,0x1d5b,0x1d5b,0x1d5b, -0x1b6f,0x1b6f,0x1b6f,0x1ce3,0x1ce3,0x276,0x276,0x276,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a, -0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a67,0x1a67,0x1a67,0x1a5b,0x1a5b,0x1a5b,0x1a5b,0x1a5b,0x1a5b,0x1a5b,0x1a5b,0x1a5b, -0x1a67,0x1a61,0x1a5e,0x1a64,0x246,0x246,0x246,0x246,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d, -0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d,0x1a6d, -0x1a6d,0x1a6d,0x1a6d,0x249,0x249,0x1a6d,0x1a6d,0x1a6d,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x24c,0x1a7c, -0x1a7c,0x24c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c, -0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a7c,0x1a79,0x1a79,0x1a79,0x1a79,0x1a79,0x24c, -0x1a70,0x1a70,0x24c,0x1a79,0x1a79,0x1a70,0x1a79,0x1a73,0x1a7c,0x24c,0x24c,0x24c,0x24c,0x24c,0x24c,0x24c, -0x1a85,0x1a85,0x1a88,0x1a88,0x1a7f,0x1a7f,0x1a7f,0x1a7f,0x24f,0x24f,0x24f,0x24f,0x24f,0x24f,0x24f,0x24f, -0x1a82,0x1a82,0x1a82,0x1a82,0x1a82,0x1a82,0x1a82,0x1a82,0x1a82,0x1a82,0x24f,0x24f,0x24f,0x24f,0x24f,0x24f, -0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8e,0x1a8b,0x1a8b,0x1a8b, -0x1a8e,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x252,0x252,0x252,0x252,0x252,0x252,0x252,0x252,0x252,0x252,0x252, -0x1a9a,0x1a9a,0x1a9a,0x1a9a,0x1a9a,0x1a9a,0x1a9a,0x1a9a,0x1a9a,0x1a9a,0x1a9a,0x1a9a,0x1a9a,0x1a9a,0x1a9a,0x1a9a, -0x1a9a,0x1a9a,0x1a97,0x1a91,0x1a91,0x1a94,0x1a94,0x1a9d,0x1a9d,0x255,0x255,0x255,0x255,0x255,0x255,0x255, -0x1aa0,0x1aa0,0x1aa0,0x1aa0,0x1aa0,0x1aa0,0x1aa0,0x1aa0,0x1aa0,0x1aa0,0x1aa0,0x1aa0,0x1aa0,0x1aa0,0x1aa0,0x1aa0, -0x1aa0,0x1aa0,0x1aa0,0x1aa0,0x258,0x258,0x258,0x258,0x258,0x258,0x258,0x258,0x258,0x258,0x258,0x258, -0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3, -0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa3,0x1aa6,0x1aaf,0x1aa3,0x1aa3,0x25b,0x25b,0x25b,0x25b,0x25b, -0x1ab2,0x1ab2,0x1ab2,0x1ab2,0x1ab2,0x1ab2,0x1ab2,0x1ab5,0x25e,0x25e,0x25e,0x25e,0x25e,0x25e,0x25e,0x25e, -0x1abe,0x1abe,0x1abe,0x1abe,0x1abe,0x1abe,0x1abe,0x1abe,0x1abe,0x1abe,0x1abe,0x1abe,0x1abe,0x1abe,0x1abe,0x1abe, -0x1abe,0x1abe,0x1ab8,0x1ab8,0x1ab8,0x1ab8,0x1ab8,0x1ab8,0x1ab8,0x1ab8,0x1ab8,0x1ab8,0x1ab8,0x1abb,0x1abb,0x1abb, -0x1abb,0x1ac1,0x1ac1,0x1ac1,0x1ac1,0x1ac1,0x261,0x261,0x261,0x261,0x261,0x261,0x261,0x261,0x261,0x261, -0x261,0x261,0x261,0x261,0x261,0x261,0x261,0x261,0x1caa,0x1caa,0x1caa,0x1caa,0x1caa,0x1caa,0x1caa,0x1caa, -0x1caa,0x1caa,0x1caa,0x1caa,0x1caa,0x1caa,0x1caa,0x1caa,0x1d0d,0x1d13,0x1d13,0x1d13,0x1d13,0x1d13,0x1d13,0x1d10, -0x1d10,0x1d10,0x1d10,0x1d10,0x1d10,0x1d10,0x1d10,0x1d10,0x1d10,0x1d10,0x1d10,0x1d10,0x1d10,0x1d10,0x264,0x264, -0x264,0x264,0x264,0x264,0x264,0x264,0x264,0x264,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b, -0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x1b1b,0x267, -0x267,0x267,0x267,0x267,0x267,0x267,0x267,0x267,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a, -0x26a,0x26a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a, -0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b2a,0x1b27,0x1b27,0x1b27,0x1b1e,0x1b1e,0x1b1e,0x1b1e, -0x26a,0x26a,0x1b1e,0x1b1e,0x1b27,0x1b27,0x1b27,0x1b27,0x1b21,0x1b2a,0x1b24,0x1b2a,0x1b27,0x26a,0x26a,0x26a, -0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a, -0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x26a,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36, -0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x26d,0x26d,0x26d,0x1b2d,0x1b2d,0x1b2d,0x1b2d,0x1b2d,0x1b2d,0x1b2d,0x1b36, -0x1b36,0x1b36,0x1b36,0x1b36,0x1b39,0x1b39,0x26d,0x26d,0x270,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c, -0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c, -0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x1b3c,0x270,0x270,0x273,0x273,0x273,0x273, -0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x1b69,0x1b69,0x1b69,0x273, -0x273,0x1d58,0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x1b6c,0x1b6c,0x1b6c,0x1b6c, -0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x273,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5, -0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x1b6f,0x1b6f,0x1b6f,0x1c17,0x1c17,0x1c17,0x1c17,0x1d5b, -0x1d5b,0x1e3c,0x276,0x276,0x276,0x276,0x276,0x1e3c,0x1b6f,0x1b6f,0x1b6f,0x1b6f,0x1b6f,0x1b6f,0x1c17,0x1c17, -0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1ce6,0x1ce6,0x1ce6,0x1e3c,0x276, -0x276,0x276,0x276,0x276,0x276,0x276,0x1d5b,0x1d5b,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1ce3, -0x1ce3,0x1ce3,0x1d5b,0x1d5b,0x1e3c,0x276,0x276,0x1e3c,0x1ce3,0x1ce3,0x1ce3,0x1ce3,0x1ce3,0x1ce3,0x1ce3,0x1ce3, -0x1d5b,0x1e3c,0x276,0x276,0x276,0x276,0x276,0x276,0x1ce6,0x1ce6,0x1ce6,0x1ce6,0x1ce6,0x1ce6,0x1ce6,0x1d5e, -0x1d5e,0x276,0x276,0x276,0x276,0x276,0x276,0x276,0x1b45,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f, -0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x279,0x279,0x279,0x279,0x279,0x279, -0x279,0x279,0x279,0x279,0x279,0x279,0x279,0x1b42,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51, -0x1b51,0x1b51,0x1b51,0x1b51,0x1b48,0x1b48,0x1b48,0x1b48,0x1b4e,0x1b4e,0x1b4e,0x1b4e,0x1b4e,0x1b4e,0x1b4e,0x1b4e, -0x1b4e,0x1b4e,0x27c,0x27c,0x27c,0x27c,0x27c,0x1b4b,0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc0,0x1bc0,0x1bc0, -0x1bc0,0x1bc0,0x1bc0,0x1bc0,0x27f,0x27f,0x27f,0x27f,0x27f,0x27f,0x27f,0x27f,0x27f,0x27f,0x27f,0x27f, -0x27f,0x27f,0x27f,0x27f,0x27f,0x27f,0x27f,0x27f,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x282, -0x282,0x1bde,0x282,0x282,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x282,0x1bde,0x1bde,0x282, -0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde,0x1bde, -0x1bc6,0x1bd8,0x1bd8,0x1bd8,0x1bd8,0x1bd8,0x282,0x1bd8,0x1bdb,0x282,0x282,0x1bc6,0x1bc6,0x1bcc,0x1bcf,0x1be1, -0x1bd8,0x1be1,0x1bd8,0x1bc9,0x1be4,0x1bd2,0x1be4,0x282,0x282,0x282,0x282,0x282,0x282,0x282,0x282,0x282, -0x1bd5,0x1bd5,0x1bd5,0x1bd5,0x1bd5,0x1bd5,0x1bd5,0x1bd5,0x1bd5,0x1bd5,0x282,0x282,0x282,0x282,0x282,0x282, -0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d, -0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x285,0x285,0x285,0x285,0x285,0x285,0x285,0x285,0x285,0x285, -0x285,0x285,0x285,0x285,0x285,0x285,0x285,0x285,0x285,0x285,0x285,0x285,0x285,0x285,0x285,0x285, -0x285,0x285,0x285,0x285,0x285,0x285,0x285,0x1e3f,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea, -0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x28b,0x1bea,0x1bea,0x1bea,0x1bea, -0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b, -0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1bed,0x1bed,0x1bed,0x1bed,0x1bed,0x1bed,0x1bed,0x1bed, -0x1bed,0x1bed,0x28b,0x28b,0x28b,0x28b,0x28b,0x28b,0x1c20,0x1c20,0x1c20,0x1c20,0x1c20,0x1c20,0x1c20,0x1c20, -0x1c20,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e, -0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e, -0x28e,0x28e,0x28e,0x28e,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x291,0x1bf0, -0x1bf0,0x1bf3,0x291,0x291,0x1bf6,0x1bf6,0x291,0x291,0x291,0x291,0x291,0x291,0x291,0x291,0x291,0x291, -0x291,0x291,0x291,0x291,0x1c89,0x1c89,0x1c89,0x1c89,0x1c89,0x1c89,0x1c89,0x1c89,0x1c86,0x1c89,0x1c89,0x1c89, -0x1c89,0x1c89,0x1c89,0x294,0x1c8c,0x1c8c,0x294,0x294,0x294,0x294,0x294,0x1d8e,0x1c83,0x1c83,0x1c83,0x1c83, -0x1c83,0x1c83,0x1c83,0x1c83,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92, -0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c8f,0x1c8f,0x297,0x297,0x297,0x297,0x297,0x297,0x297,0x297,0x297, -0x297,0x297,0x297,0x297,0x1c95,0x1c95,0x1c95,0x1c95,0x1c95,0x1c95,0x1c95,0x29a,0x1c95,0x1c95,0x1c95,0x1c95, -0x29a,0x1c95,0x1c95,0x29a,0x1c95,0x1c95,0x1c95,0x1c95,0x1c95,0x1c95,0x1c95,0x1c95,0x1c95,0x1c95,0x1c95,0x1c95, -0x1c95,0x1c95,0x1c95,0x29a,0x1c98,0x1c9e,0x1c9e,0x1c9b,0x1c9b,0x1c9b,0x2a0,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b, -0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b, -0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x2a0,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x1c9b,0x2a0, -0x2a0,0x2a0,0x2a0,0x2a0,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca4,0x1ca1, -0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1,0x1ca1, -0x1ca1,0x1ca1,0x1ca1,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x1d16,0x1d16,0x1d16,0x1d16,0x1d16,0x1d16,0x2a3, -0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3, -0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3,0x2a3, -0x1caa,0x1caa,0x1ca7,0x1ca7,0x1ca7,0x1ca7,0x1cad,0x1cad,0x1cad,0x1cad,0x2a6,0x2a6,0x2a6,0x2a6,0x2a6,0x2a6, -0x2a6,0x2a6,0x2a6,0x2a6,0x2a6,0x2a6,0x2a6,0x2a6,0x2a6,0x2a6,0x2a6,0x2a6,0x2a6,0x2a6,0x2a6,0x2a6, -0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc3,0x1bc3, -0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3, -0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x2a9, -0x1cb0,0x1cb0,0x1cb0,0x1cb0,0x1cb0,0x1cb0,0x1cb0,0x1cb0,0x1cb0,0x1cb0,0x2a9,0x2a9,0x2a9,0x2a9,0x2a9,0x2a9, -0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659,0x1659, -0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb9,0x1cb6,0x2ac, -0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac,0x2ac, -0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x1cc2,0x2af,0x1cc2,0x1cc2,0x1cc2,0x1cc2, -0x1cc2,0x1cc2,0x1cc2,0x2af,0x1cc2,0x1cc2,0x2af,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf, -0x1cbf,0x1cbf,0x2af,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf, -0x1cbf,0x1cbf,0x2af,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x1cbf,0x2af,0x1cbf,0x1cbf,0x2af,0x2af,0x2af, -0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x2b2,0x2b2, -0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8, -0x1cc8,0x1cc8,0x1cc8,0x2b2,0x2b2,0x2b2,0x2b2,0x2b2,0x2b2,0x2b2,0x2b2,0x2b2,0x1cc5,0x1cc5,0x1cc5,0x1cc5, -0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x2b5,0x2b5,0x1d94,0x1d94, -0x1d94,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5, -0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5, -0x1d91,0x1d19,0x1d19,0x1d19,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d22, -0x1d22,0x1d22,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8,0x2b8, -0x2b8,0x2b8,0x2b8,0x2b8,0x1d25,0x1d25,0x1d25,0x1d25,0x1d25,0x1d25,0x1d25,0x1d25,0x1d25,0x1d25,0x2bb,0x2bb, -0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb, -0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb,0x2bb, -0x1d28,0x1d28,0x1d28,0x1d28,0x1d28,0x1d28,0x1d28,0x1d28,0x1d28,0x1d28,0x1d28,0x1d28,0x1d28,0x1d28,0x1d28,0x1d28, -0x1d28,0x1d28,0x1d28,0x1d28,0x2be,0x2be,0x2be,0x2be,0x2be,0x2be,0x2be,0x2be,0x2be,0x2be,0x2be,0x2be, -0x1d2b,0x1d2b,0x1d40,0x1d3a,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d, -0x1d3d,0x2c1,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d, -0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3d,0x1d3a,0x1d3a,0x1d2b,0x1d2b,0x1d2b,0x1d2b,0x1d2b,0x2c1, -0x2c1,0x2c1,0x1d3a,0x1d3a,0x1d2b,0x1d2e,0x1d31,0x1d43,0x1d43,0x1d34,0x1d34,0x1d34,0x1d34,0x1d34,0x1d34,0x1d34, -0x1d34,0x1d34,0x1d34,0x1d34,0x1d37,0x1d37,0x1d37,0x1d37,0x1d37,0x1d37,0x1d37,0x1d37,0x1d37,0x1d37,0x1d97,0x2c1, -0x2c1,0x2c1,0x2c1,0x2c1,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c,0x1d4c, -0x1d46,0x1d46,0x1d46,0x1d46,0x1d49,0x1d49,0x1d49,0x1d49,0x1d49,0x1d49,0x1d49,0x1d49,0x1d49,0x1d49,0x2c4,0x2c4, -0x2c4,0x2c4,0x2c4,0x2c4,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a, -0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x2c7, -0x2c7,0x2c7,0x2c7,0x2c7,0x1db5,0x1db5,0x1db5,0x1db5,0x1db5,0x1db5,0x2ca,0x2ca,0x2ca,0x1da0,0x1da3,0x1d9d, -0x1d9d,0x1d9d,0x1da6,0x1db8,0x1daf,0x1daf,0x1daf,0x1daf,0x1daf,0x1daf,0x1daf,0x1daf,0x1daf,0x1daf,0x1daf,0x1daf, -0x1daf,0x1daf,0x1daf,0x1daf,0x1dbe,0x1dc1,0x1dc1,0x1dc1,0x1dc1,0x1dc1,0x1dc1,0x1dc1,0x1dc1,0x1dbe,0x1dca,0x1dca, -0x1dca,0x1dbe,0x1dbe,0x1dc4,0x1dc7,0x1dc7,0x1dc7,0x1dc7,0x1dc7,0x1dc7,0x1dc7,0x1dc7,0x1dc7,0x1dc7,0x2cd,0x2cd, -0x2cd,0x2cd,0x2cd,0x2cd,0x1dd9,0x1dd9,0x1dd9,0x1ddc,0x1dd9,0x1dd9,0x1dd9,0x1ddc,0x1ddf,0x1ddf,0x1ddf,0x1de2, -0x1de2,0x1dd0,0x1dd3,0x1dd3,0x1dd6,0x1dd6,0x1dd6,0x1dd6,0x1dd6,0x1dd6,0x1dd6,0x1dd6,0x1dd6,0x1dd6,0x2d0,0x2d0, -0x2d0,0x2d0,0x2d0,0x2d0,0x1de5,0x1de5,0x1de5,0x1de5,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3, -0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3,0x2d3, -0x2d3,0x2d3,0x2d3,0x2d3,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4,0x1df4, -0x1df4,0x1df4,0x1de8,0x1deb,0x1df4,0x1df1,0x1df1,0x1df1,0x1df1,0x1df1,0x1df1,0x1df1,0x1df1,0x1df1,0x1df1,0x2d6, -0x2d6,0x2d6,0x2d6,0x1dee,0x1dfd,0x1df7,0x2d9,0x2d9,0x2d9,0x2d9,0x2d9,0x2d9,0x2d9,0x2d9,0x2d9,0x2d9, -0x2d9,0x2d9,0x2d9,0x2d9,0x1dfa,0x1dfa,0x1dfa,0x1dfa,0x1dfa,0x1dfa,0x1dfa,0x1dfa,0x1dfa,0x1dfa,0x2d9,0x2d9, -0x2d9,0x2d9,0x2d9,0x2d9,0x1e03,0x1e03,0x1e03,0x1e03,0x1e03,0x1e03,0x1e03,0x1e03,0x1e03,0x1e03,0x1e03,0x1e03, -0x1e03,0x1e03,0x1e03,0x1e03,0x1e06,0x1e06,0x1e06,0x1e06,0x1e06,0x1e06,0x1e06,0x1e06,0x1e06,0x1e06,0x2dc,0x2dc, -0x2dc,0x2dc,0x2dc,0x2dc,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00, -0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x2dc,0x2dc,0x2dc,0x2dc,0x2dc,0x2dc,0x2dc,0x2dc, -0x2dc,0x2dc,0x2dc,0x2dc,0x1e09,0x1e09,0x1e09,0x1e09,0x1e0c,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09, -0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x2df,0x2df,0x2df,0x2df,0x2df,0x2df,0x2df,0x2df, -0x2df,0x2df,0x2df,0x2df,0x1e30,0x1e30,0x1e30,0x1e33,0x1e30,0x1e33,0x1e30,0x1e30,0x1e30,0x1e30,0x2e2,0x1e30, -0x2e2,0x2e2,0x1e33,0x2e2,0x1e30,0x1e33,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a, -0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x1e2a,0x2e2,0x1e27, -0x1e0f,0x1e24,0x1e24,0x1e0f,0x1e0f,0x1e0f,0x1e0f,0x1e0f,0x1e0f,0x2e2,0x1e0f,0x2e2,0x2e2,0x1e12,0x2e2,0x1e12, -0x1e12,0x1e0f,0x1e24,0x2e2,0x1e24,0x1e24,0x1e1b,0x1e1b,0x1e1e,0x1e2d,0x1e18,0x1e36,0x1e21,0x1e21,0x2e2,0x1e21, -0x1e21,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x1e15,0x1e15,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2, -0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2, -0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e2,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5, -0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5, -0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x9d2,0x9d2,0x1d61,0x1d61,0x1d61,0x1d61, -0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x2e5,0x2e5,0x2e5,0x2e5, -0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0x2e5,0xd08,0xd08,0xd08,0xd08, -0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0x138f,0x138f,0x138f,0x2e8,0x2e8,0xf3f,0xf3f,0xf3f,0xf3f, -0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f, -0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8, -0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8, -0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0x2e8,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24, -0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24, -0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0x2eb,0x2eb,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1, -0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x1cd1,0x1cd1,0x1cd1, -0x1cd1,0x1d4f,0x2ee,0x2ee,0x2ee,0x2ee,0x2ee,0x2ee,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1, -0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1, -0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x2f1,0x2f1,0x1896,0x1896,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4, -0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x2f4,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef, -0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x2f7,0x2f7,0x2f7,0x2f7,0x2f7,0x2f7,0x2f7, -0x2f7,0x2f7,0x2f7,0x2f7,0x2f7,0x2f7,0x2f7,0x2f7,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d, -0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a, -0x1c1a,0x1c1a,0x1c1a,0x2fa,0x2fa,0x2fa,0x2fa,0x2fa,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61, -0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d, -0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d, -0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x2fd,0x2fd,0x438,0x42c,0x42c,0x42c,0x42c,0x42c,0x42c,0x42c, -0x42c,0x438,0x438,0x438,0x438,0x432,0x120c,0x13e6,0x43e,0x99c,0x99f,0x429,0x429,0x1209,0x13e3,0x13e3, -0x43b,0x43b,0x43b,0x43b,0x43b,0x43b,0x43b,0x43b,0x1209,0x42c,0x42c,0x438,0xd4d,0x43e,0x43e,0x43e, -0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e, -0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x42c,0x42c,0x921,0x924,0x9ba,0x9ba, -0x9ba,0x9ba,0x9ba,0x9ba,0x9ba,0x9ba,0x9ba,0x9ba,0x435,0x103e,0x103b,0x13e9,0x13e9,0x13e9,0x13e9,0x13e9, -0x15b4,0x120f,0x120f,0xf7b,0xf7b,0xe43,0xf7b,0xf7b,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e, -0x43e,0x441,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x43e,0x441,0x43e,0x43e,0x441,0x43e,0x43e,0x43e, -0x43e,0x43e,0x13e3,0x13e6,0x42f,0x43e,0x438,0x438,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3, -0x4e3,0x13ef,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3,0x4e3, -0x4e3,0x4e3,0x13ef,0x196b,0x196b,0x105f,0x4d4,0x4dd,0x525,0x525,0x525,0x525,0x525,0x525,0x525,0x525, -0x525,0x525,0x525,0x525,0x525,0x525,0x525,0x525,0x525,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0xc3f, -0xc3f,0xe52,0xe52,0x927,0xe4f,0x14d3,0x14d3,0x14d3,0x522,0x522,0x522,0x522,0x522,0x522,0x522,0x522, -0x522,0x522,0x522,0x522,0x522,0x522,0x522,0x522,0x522,0x522,0x522,0x522,0x522,0x522,0x522,0x522, -0x522,0x522,0x522,0x522,0x522,0x522,0x522,0x522,0x52b,0x52b,0x52b,0x1224,0x1224,0x1224,0x1224,0x1224, -0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528, -0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528,0x528, -0x528,0x528,0x1221,0x1221,0x1221,0x1221,0x1221,0x1221,0x52e,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b, -0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b, -0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x52b,0x537,0x534,0x537,0x534, -0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534, -0x537,0x534,0x534,0x534,0x534,0x534,0x531,0xa20,0x108c,0x108c,0x1092,0x108c,0x537,0x534,0x537,0x534, -0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534, -0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534,0x537,0x534,0x108f,0x108c, -0x108f,0x108c,0x108f,0x108c,0x549,0x549,0x549,0x549,0x549,0x549,0x549,0x549,0x54c,0x54c,0x54c,0x54c, -0x54c,0x54c,0x54c,0x54c,0x549,0x549,0x549,0x549,0x549,0x549,0x549,0x549,0x54c,0x54c,0x54c,0x54c, -0x54c,0x54c,0x54c,0x54c,0x711,0x711,0x714,0x567,0x720,0x71d,0x71d,0x723,0x591,0x591,0x54f,0x54f, -0x54f,0x54f,0x54f,0xbd6,0x717,0x570,0x73e,0x741,0x588,0x717,0x576,0x576,0x567,0x582,0x582,0x711, -0x58e,0x58b,0x71a,0x561,0x558,0x558,0x55b,0x55b,0x55b,0x55b,0x55b,0x55e,0x55b,0x55b,0x55b,0x552, -0x59a,0x597,0x594,0x594,0x72f,0x57c,0x579,0x72c,0x729,0x726,0x73b,0x573,0x735,0x738,0x57f,0x582, -0x732,0x732,0x57f,0x582,0x564,0x567,0x567,0x567,0x585,0x56d,0x56a,0xc54,0xb79,0xb79,0xb76,0xb76, -0xb76,0xb76,0xc4b,0xc4b,0xc4b,0xc4b,0xc51,0xd7a,0xd77,0xe5e,0xe64,0xc4e,0xe64,0xe64,0xe64,0xe64, -0xe61,0xe64,0xe64,0xc48,0x5be,0x5be,0x5be,0x5be,0x5be,0x5be,0x5be,0x5bb,0x5c1,0x7ad,0x5be,0xa23, -0xa44,0xb7c,0xb7c,0xb7c,0xc5a,0xc5a,0xe6a,0xe6a,0xe6a,0xe6a,0x122d,0x1230,0x1230,0x1404,0x15a2,0x15cc, -0x15cf,0x15cf,0x17eb,0x196e,0x5d0,0x5d0,0x5e8,0x753,0x5ca,0x74d,0x5d0,0x5e5,0x5ca,0x753,0x5df,0x5e8, -0x5e8,0x5e8,0x5df,0x5df,0x5e8,0x5e8,0x5e8,0x759,0x5ca,0x5e8,0x756,0x5ca,0x5dc,0x5e8,0x5e8,0x5e8, -0x5e8,0x5e8,0x5ca,0x5ca,0x5d3,0x74d,0x750,0x5ca,0x5e8,0x5ca,0x75c,0x5cd,0x5e8,0x5d6,0x5ee,0x75f, -0x5e8,0x5e8,0x5d9,0x5df,0x5e8,0x5e8,0x5eb,0x5e8,0x5df,0x5e2,0x5e2,0x5e2,0x5e2,0xb85,0xb82,0xd7d, -0xe73,0xc6f,0xc72,0xc72,0xc6c,0xc69,0xc69,0xc69,0xc69,0xc72,0xc6f,0xc6f,0xc6f,0xc6f,0xc66,0xc69, -0xe70,0xf87,0xf8a,0x1098,0x1233,0x1233,0x1233,0x765,0x762,0x5f1,0x5f4,0x5f4,0x5f4,0x5f4,0x5f4,0x762, -0x765,0x765,0x762,0x5f4,0x76b,0x76b,0x76b,0x76b,0x76b,0x76b,0x76b,0x76b,0x76b,0x76b,0x76b,0x76b, -0x5fd,0x5fd,0x5fd,0x5fd,0x768,0x768,0x768,0x768,0x768,0x768,0x768,0x768,0x768,0x768,0x5fa,0x5fa, -0x5fa,0x5fa,0x5fa,0x5fa,0x603,0x603,0x603,0x603,0x603,0x603,0x603,0x603,0x600,0x603,0x603,0x603, -0x603,0x603,0x606,0x600,0x603,0x603,0x600,0x600,0x600,0x600,0x603,0x603,0x76e,0x76e,0x600,0x600, -0x603,0x603,0x603,0x603,0x603,0x603,0x603,0x603,0x603,0x603,0x603,0x603,0x603,0x606,0x606,0x606, -0x603,0x603,0x771,0x603,0x771,0x603,0x603,0x603,0x603,0x603,0x603,0x603,0x600,0x603,0x600,0x600, -0x600,0x600,0x600,0x600,0x603,0x603,0x600,0x76e,0x600,0x600,0x600,0xb8b,0xb8b,0xb8b,0xb8b,0xb8b, -0xb8b,0xb8b,0xb8b,0xb8b,0xc75,0xc75,0xc75,0xc75,0xc75,0xc75,0xc75,0xc75,0xc75,0xc75,0xc75,0xc75, -0x774,0x609,0x774,0x774,0x60c,0x609,0x609,0x774,0x774,0x60c,0x609,0x774,0x60c,0x609,0x609,0x774, -0x609,0x774,0x618,0x612,0x609,0x774,0x609,0x609,0x609,0x609,0x774,0x609,0x609,0x774,0x774,0x774, -0x774,0x609,0x609,0x774,0x60c,0x774,0x60c,0x774,0x774,0x774,0x774,0x774,0x77a,0x615,0x774,0x615, -0x615,0x609,0x609,0x609,0x774,0x774,0x774,0x774,0x609,0x609,0x609,0x609,0x774,0x774,0x609,0x609, -0x609,0x60c,0x609,0x609,0x60c,0x609,0x609,0x60c,0x774,0x60c,0x609,0x609,0x774,0x609,0x609,0x609, -0x609,0x609,0x774,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609, -0x777,0x774,0x60c,0x609,0x774,0x774,0x774,0x774,0x609,0x609,0x774,0x774,0x609,0x60c,0x777,0x777, -0x60c,0x60c,0x609,0x609,0x60c,0x60c,0x609,0x609,0x60c,0x60c,0x609,0x609,0x609,0x609,0x609,0x609, -0x60c,0x60c,0x774,0x774,0x60c,0x60c,0x774,0x774,0x60c,0x60c,0x609,0x609,0x609,0x609,0x609,0x609, -0x609,0x609,0x609,0x609,0x609,0x774,0x609,0x609,0x609,0x774,0x609,0x609,0x609,0x609,0x609,0x609, -0x609,0x774,0x609,0x609,0x609,0x609,0x609,0x609,0x60c,0x60c,0x60c,0x60c,0x609,0x609,0x609,0x609, -0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x774,0x609,0x609,0x609,0x609, -0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609, -0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x609,0x60c,0x60c,0x60c,0x60c, -0x609,0x609,0x609,0x609,0x609,0x609,0x60c,0x60c,0x60c,0x60c,0x609,0x60f,0x609,0x609,0xc78,0xc78, -0xc78,0xc78,0xc78,0xc78,0xc78,0xc78,0xc78,0xc78,0xc78,0xc78,0xc78,0xc78,0x61b,0xb8e,0x61b,0x61b, -0x61b,0x61b,0x61b,0x61b,0x624,0x621,0x624,0x621,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x77d,0x61b, -0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x86d,0x86d,0x61b,0x61b,0x61b,0x61b,0x61e,0x61e,0x61b,0x61b, -0x61b,0x61b,0x61b,0x61b,0x61b,0x873,0x870,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b, -0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b, -0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0x61b,0xb8e,0xc7e,0xb8e,0xb8e,0xb8e, -0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627, -0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627,0x627, -0x786,0x786,0x786,0x786,0x786,0x786,0x786,0x786,0x786,0x786,0x62d,0xcdb,0xcdb,0xcdb,0xcdb,0xcdb, -0xcdb,0xcdb,0xcdb,0xcdb,0xcdb,0xcdb,0xcdb,0xcdb,0xcdb,0xcdb,0xcdb,0xcdb,0xcdb,0xcdb,0xcdb,0xdec, -0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c, -0x78c,0x78c,0x78c,0x78c,0x630,0x633,0x633,0x633,0x633,0x633,0x633,0x633,0x633,0x633,0x633,0x633, -0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x633,0x633,0x633,0x633, -0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c, -0x78f,0x78f,0x78f,0x78f,0x78f,0x78f,0x78f,0x78f,0x78f,0x78f,0x78f,0x78f,0x78f,0x78f,0x78f,0x78f, -0x636,0x636,0x78f,0x78f,0x78f,0x78f,0xc81,0xc81,0xc81,0xc81,0xc81,0xc81,0xc81,0xc81,0xc81,0xc81, -0x795,0x795,0x639,0x792,0x792,0x792,0x792,0x792,0x792,0x792,0x639,0x639,0x639,0x639,0x63c,0x63c, -0x63c,0x63c,0x795,0x795,0x63c,0x63c,0x795,0x795,0x639,0x639,0x639,0x639,0x795,0x795,0x63c,0x63c, -0x795,0x795,0x639,0x639,0x639,0x639,0x795,0x795,0x792,0x639,0x63c,0x795,0x639,0x639,0x792,0x795, -0x795,0x795,0x63c,0x63c,0x639,0x639,0x639,0x639,0x639,0x639,0x639,0x639,0x639,0x639,0x639,0x639, -0x639,0x639,0x795,0x792,0x795,0x792,0x639,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x639,0x639,0x792, -0xb94,0xb94,0xb94,0xb94,0xb94,0xb94,0xb94,0xb94,0xc84,0xc84,0xc84,0xc84,0xc84,0xcf3,0xcf3,0xc84, -0x642,0x642,0x642,0x642,0x63f,0x79e,0x79e,0x63f,0x63f,0x798,0x63f,0x63f,0x63f,0x63f,0x798,0x798, -0x63f,0x63f,0x63f,0x63f,0xdf5,0xdf5,0xc87,0xc87,0xe7c,0xb97,0x642,0x642,0x79b,0x645,0x79b,0x642, -0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f, -0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x642,0x642,0x642,0x63f,0x63f,0x63f,0x63f, -0x79e,0x63f,0x79e,0x63f,0x63f,0x63f,0x63f,0x63f,0x876,0x876,0x876,0x876,0x876,0x876,0x876,0x876, -0x876,0x876,0x876,0x876,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f,0x63f, -0x79e,0x79e,0x648,0x79e,0x798,0x798,0x63f,0x798,0x79b,0x798,0x798,0x63f,0x798,0x79e,0x648,0x79e, -0xb97,0xb97,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xe79,0xf36, -0x64b,0x64b,0x64b,0x64b,0x64b,0x64b,0x64b,0x64b,0x64b,0x64b,0x64b,0x64b,0x64b,0x64b,0x64b,0x64b, -0x64b,0x64b,0x64b,0x64b,0x64e,0x1494,0x1494,0x1494,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e, -0x15d5,0x654,0x654,0x654,0x654,0x1494,0x64e,0x64e,0x654,0x654,0x1497,0x1497,0x65a,0x65a,0x64e,0x64e, -0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e, -0x1494,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e, -0x64e,0x64e,0x64e,0x64e,0x64e,0x7a4,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e, -0x64e,0x64e,0x64e,0x64e,0x1494,0x64e,0x1494,0x64e,0x64e,0x64e,0x64e,0x1494,0x1494,0x1494,0x64e,0x1389, -0x64e,0x64e,0x64e,0x657,0x657,0x657,0x657,0x1410,0x1410,0x64e,0x651,0x651,0x654,0x64e,0x64e,0x64e, -0xc90,0xc8d,0xc90,0xc8d,0xc90,0xc8d,0xc90,0xc8d,0xc90,0xc8d,0xc90,0xc8d,0xc90,0xc8d,0x7a1,0x7a1, -0x7a1,0x7a1,0x7a1,0x7a1,0x7a1,0x7a1,0x7a1,0x7a1,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e, -0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x1494,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e, -0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x64e,0x1494,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b, -0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b, -0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x672,0x672,0x672,0x672,0x672,0x672,0x675,0x675,0x675,0x675, -0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675, -0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8, -0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0x67b,0x67b,0x9cf,0x67b,0x67b,0x67b,0x67b,0x67b, -0x67b,0x67b,0x672,0x672,0xc93,0xe19,0x1c35,0x1c35,0x678,0x67e,0x67b,0x675,0x678,0x67e,0x67b,0x675, -0x678,0x67e,0x67b,0x675,0x678,0x67e,0x67b,0x675,0x678,0x67e,0x67b,0x675,0x678,0x67e,0x67b,0x675, -0x678,0x67e,0x67b,0x675,0x678,0x67e,0x67b,0x675,0x67b,0x675,0x67b,0x675,0x67b,0x675,0x67b,0x675, -0x67b,0x675,0x67b,0x675,0x678,0x67e,0x67b,0x675,0x678,0x67e,0x67b,0x675,0x678,0x67e,0x67b,0x675, -0x678,0x67e,0x67b,0x675,0x67b,0x675,0x678,0x67e,0x67b,0x675,0x67b,0x675,0x678,0x67e,0x67b,0x675, -0x678,0x67e,0x67b,0x675,0x67b,0x675,0x1413,0x1413,0x1413,0x1413,0x1413,0x1413,0x1413,0x1413,0x1413,0x1413, -0x1413,0x1413,0x1413,0x1413,0x67b,0x675,0x67b,0x675,0x67b,0x675,0x678,0x67e,0x678,0x67e,0x67b,0x675, -0x67b,0x675,0x67b,0x675,0x67b,0x675,0x67b,0x675,0x67b,0x675,0x67b,0x675,0x678,0x67b,0x675,0x678, -0x67b,0x675,0x678,0x67e,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675, -0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x678,0x678,0x678,0x678,0x678, -0x678,0x678,0x678,0x678,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b, -0x67b,0x67b,0x67b,0x67b,0x67b,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675, -0x675,0x675,0x675,0x675,0x675,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x67e,0x67e,0x67e,0x67e, -0x67e,0x67e,0x67e,0x67e,0x675,0x67b,0x98d,0x990,0x1c35,0x1c35,0x1c35,0x1c35,0x1c35,0x1c35,0x1c35,0x1c35, -0x1c35,0x1c35,0x1c35,0x1c35,0x1c35,0x1c35,0x1c35,0x1c35,0x678,0x675,0x678,0x678,0x678,0x678,0x678,0x678, -0x675,0x678,0x675,0x675,0x678,0x678,0x675,0x675,0x678,0x678,0x675,0x678,0x675,0x678,0x675,0x675, -0x678,0x675,0x675,0x678,0x675,0x678,0x675,0x675,0x678,0x675,0x678,0x678,0x675,0x675,0x675,0x678, -0x675,0x675,0x675,0x675,0x675,0x678,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675, -0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x675,0x678,0x678,0x675,0x675, -0x678,0x675,0x678,0x675,0x675,0x675,0x675,0x675,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678, -0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678, -0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x678,0x67e,0x67b,0x67b,0x67b,0x67b, -0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b, -0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67e,0x67e,0x67e,0x67e, +0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0xf,0xf,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816, +0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816, +0x816,0x816,0x816,0x816,0x816,0x816,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf, +0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf, +0xf,0xf,0xf,0xf,0xf,0xf,0x63f,0x63f,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695, +0x1695,0x1695,0x1695,0xf,0xf,0xf,0xf,0xf,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5, +0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf, +0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0x351,0x351,0x354,0xa8,0x369,0x366,0x366,0x36c, +0xf9,0xf9,0x15,0x15,0x15,0x15,0x15,0x7ce,0x35d,0xb7,0x38a,0x393,0xea,0x35d,0xc3,0xc3, +0xa8,0xcf,0xcf,0x351,0xf3,0xf0,0x363,0x75,0x45,0x45,0x48,0x48,0x48,0x48,0x48,0x4b, +0x48,0x48,0x48,0x18,0x11a,0x117,0x108,0x108,0x378,0xc9,0xc6,0x375,0x372,0x36f,0x384,0xc0, +0x37e,0x381,0xcc,0xcf,0x37b,0x37b,0xcc,0xcf,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21, +0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0xa8,0xfcc,0xfcc,0xfcc, +0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0x36,0x36,0x90,0x330,0x24,0x31e,0x36,0x8d, +0x24,0x330,0x87,0x90,0x90,0x90,0x87,0x87,0x90,0x90,0x90,0x348,0x24,0x90,0x333,0x24, +0x81,0x90,0x90,0x90,0x90,0x90,0x24,0x24,0x3f,0x31e,0x32a,0x24,0x90,0x24,0x3b1,0x2d, +0x90,0x51,0x291,0x3c3,0x90,0x90,0x7e,0x87,0x90,0x90,0x276,0x90,0x87,0x8a,0x8a,0x8a, +0x8a,0x660,0x654,0x8ee,0x9d8,0x831,0x834,0x834,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x27, +0x42,0x3de,0x2a,0x5eb,0x64e,0x657,0x657,0x657,0x825,0x825,0x9d2,0x9d2,0x9d2,0x9d2,0xd5c,0xd5f, +0xd5f,0xf18,0x10bf,0x10d4,0x10d7,0x10d7,0x12c6,0x1428,0x336,0x336,0x336,0x336,0x336,0x336,0x336,0x336, +0x336,0x336,0x30,0x8a9,0x8a9,0x8a9,0x8a9,0x8a9,0x8a9,0x8a9,0x8a9,0x8a9,0x8a9,0x8a9,0x8a9,0x8a9, +0x8a9,0x8a9,0x8a9,0x8a9,0x8a9,0x8a9,0x8a9,0x99c,0x82e,0x82b,0x82b,0x82b,0x82b,0x834,0x831,0x831, +0x831,0x831,0x822,0x82b,0x9cf,0xafe,0xb2e,0xba6,0xd65,0xd65,0xd65,0x32d,0x324,0x33,0x39,0x39, +0x39,0x39,0x39,0x324,0x32d,0x32d,0x324,0x39,0x7b,0xa8,0xa8,0xa8,0xde,0xb4,0xab,0x855, +0x66c,0x66c,0x669,0x669,0x669,0x669,0x83a,0x83a,0x83a,0x83a,0x846,0x8fd,0x8f4,0x9db,0x9e7,0x843, +0x9e7,0x9e7,0x9e7,0x9e7,0x9e4,0x9e7,0x9e7,0x828,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351, +0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0xa5,0xa8,0xa8,0xa8, +0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2, +0xa8,0xd2,0xd2,0xd2,0xd2,0xd2,0xd5,0xa8,0xd2,0xd2,0xa8,0xa8,0xa8,0xa8,0xd2,0xd2, +0x354,0x354,0xa8,0xa8,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2, +0xd2,0xd5,0xd5,0xd5,0xd2,0xd2,0x384,0xd2,0x384,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2, +0xa8,0xd2,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xd2,0xd2,0xa8,0x354,0xa8,0xa8,0xa8,0x669, +0x669,0x669,0x669,0x669,0x669,0x669,0x669,0x669,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846, +0x846,0x846,0x846,0x846,0xa8,0x669,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xe1,0xd8,0xe1,0xd8, +0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0x351,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0x4dd,0x4dd, +0xa8,0xa8,0xa8,0xa8,0xd2,0xd2,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0x4e3,0x4e0,0xa8, +0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8, +0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8, +0xa8,0xa8,0xa8,0x669,0x846,0x669,0x669,0x669,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351, +0x351,0x351,0x351,0x351,0xa8,0xa8,0xa8,0xa8,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351, +0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0xa8,0xa8,0x351,0x351,0x351,0x351,0x83a,0x83a, +0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x384,0x384,0xa8,0x351,0x351,0x351,0x351,0x351, +0x351,0x351,0xa8,0xa8,0xa8,0xa8,0xd2,0xd2,0xd2,0xd2,0x384,0x384,0xd2,0xd2,0x384,0x384, +0xa8,0xa8,0xa8,0xa8,0x384,0x384,0xd2,0xd2,0x384,0x384,0xa8,0xa8,0xa8,0xa8,0x384,0x384, +0x351,0xa8,0xd2,0x384,0xa8,0xa8,0x351,0x384,0x384,0x384,0xd2,0xd2,0xa8,0xa8,0xa8,0xa8, +0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0x384,0x351,0x384,0x351,0xa8,0xd2, +0xd2,0xd2,0xd2,0xd2,0xd2,0xa8,0xa8,0x351,0x669,0x669,0x669,0x669,0x669,0x669,0x669,0x669, +0x846,0x846,0x846,0x846,0x846,0x8c1,0x8c1,0x846,0xb1,0xb1,0xb1,0xb1,0xa8,0x384,0x384,0xa8, +0xa8,0x351,0xa8,0xa8,0xa8,0xa8,0x351,0x351,0xa8,0xa8,0xa8,0xa8,0x9b4,0x9b4,0x837,0x837, +0x9de,0x669,0xb1,0xb1,0x357,0xbd,0x357,0xb1,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8, +0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8, +0xa8,0xb1,0xb1,0xb1,0xa8,0xa8,0xa8,0xa8,0x384,0xa8,0x384,0xa8,0xa8,0xa8,0xa8,0xa8, +0x4da,0x4da,0x4da,0x4da,0x4da,0x4da,0x4da,0x4da,0x4da,0x4da,0x4da,0x4da,0xa8,0xa8,0xa8,0xa8, +0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0x384,0x384,0xd2,0x384,0x351,0x351,0xa8,0x351, +0x357,0x351,0x351,0xa8,0x351,0x384,0xd2,0x384,0x669,0x669,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a, +0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x9db,0xae6,0x10e9,0xb1,0xb1,0xb1,0xb1,0xfcc,0xa8,0xa8, +0xb1,0xb1,0xfd2,0xfd2,0xbd,0xbd,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8, +0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xfcc,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8, +0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0x354,0xa8,0xa8, +0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xfcc,0xa8,0xfcc,0xa8, +0xa8,0xa8,0xa8,0xfcc,0xfcc,0xfcc,0xa8,0xec7,0xa8,0xa8,0xa8,0xba,0xba,0xba,0xba,0xf24, +0xf24,0xa8,0xae,0xae,0xb1,0xa8,0xa8,0xa8,0x840,0x83d,0x840,0x83d,0x840,0x83d,0x840,0x83d, +0x840,0x83d,0x840,0x83d,0x840,0x83d,0x31b,0x31b,0x31b,0x31b,0x31b,0x31b,0x31b,0x31b,0x31b,0x31b, +0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8, +0xfcc,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xfcc, +0x384,0xd2,0x384,0x384,0xd5,0xd2,0xd2,0x384,0x384,0xd5,0xd2,0x384,0xd5,0xd2,0xd2,0x384, +0xd2,0x384,0xed,0xe4,0xd2,0x384,0xd2,0xd2,0xd2,0xd2,0x384,0xd2,0xd2,0x384,0x384,0x384, +0x384,0xd2,0xd2,0x384,0xd5,0x384,0xd5,0x384,0x384,0x384,0x384,0x384,0x390,0xe7,0x384,0xe7, +0xe7,0xd2,0xd2,0xd2,0x384,0x384,0x384,0x384,0xd2,0xd2,0xd2,0xd2,0x384,0x384,0xd2,0xd2, +0xd2,0xd5,0xd2,0xd2,0xd5,0xd2,0xd2,0xd5,0x384,0xd5,0xd2,0xd2,0x384,0xd2,0xd2,0xd2, +0xd2,0xd2,0x384,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2, +0x387,0x384,0xd5,0xd2,0x384,0x384,0x384,0x384,0xd2,0xd2,0x384,0x384,0xd2,0xd5,0x387,0x387, +0xd5,0xd5,0xd2,0xd2,0xd5,0xd5,0xd2,0xd2,0xd5,0xd5,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2, +0xd5,0xd5,0x384,0x384,0xd5,0xd5,0x384,0x384,0xd5,0xd5,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2, +0xd2,0xd2,0xd2,0xd2,0xd2,0x384,0xd2,0xd2,0xd2,0x384,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2, +0xd2,0x384,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd5,0xd5,0xd5,0xd5,0xd2,0xd2,0xd2,0xd2, +0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0x384,0xd2,0xd2,0xd2,0xd2, +0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2, +0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd5,0xd5,0xd5,0xd5, +0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd5,0xd5,0xd5,0xd5,0xd2,0xdb,0xd2,0xd2,0x846,0x846, +0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x1b3,0x1a7,0x1a7,0x1a7, +0x1a7,0x1a7,0x1a7,0x1a7,0x1a7,0x1b3,0x1b3,0x1b3,0x1b3,0x1ad,0xd92,0xf45,0x1b9,0x5b5,0x5b8,0x114, +0x114,0xd89,0xf42,0xf42,0x1b6,0x1b6,0x1b6,0x1b6,0x1b6,0x1b6,0x1b6,0x1b6,0x114,0x114,0x114,0x114, +0xbeb,0xbeb,0xbeb,0x1104,0x1104,0x1104,0x1104,0x1104,0x1104,0x1104,0x12e4,0x12e4,0x4a1,0x4b3,0x4b3,0x4d1, +0x4d1,0x4a7,0x495,0x4a7,0x495,0x4a7,0x495,0x4a7,0x495,0x4a7,0x495,0x4a7,0x141,0x141,0x141,0x141, +0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141, +0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x132,0x132,0x132,0x132,0x132,0x132, +0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b, +0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x813,0x813,0x813,0x813, +0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x813,0x141,0x141,0x5e8,0x141, +0x141,0x141,0x141,0x141,0x141,0x141,0x132,0x132,0x861,0x9cc,0x16c2,0x16c2,0x13e,0x144,0x141,0x13b, +0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b, +0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x141,0x13b,0x141,0x13b, +0x141,0x13b,0x141,0x13b,0x141,0x13b,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b, +0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x141,0x13b, +0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x141,0x13b,0xf30,0xf30,0xf30,0xf30,0xf30,0xf30, +0xf30,0xf30,0xf30,0xf30,0xf30,0xf30,0xf30,0xf30,0x141,0x13b,0x141,0x13b,0x141,0x13b,0x13e,0x144, +0x13e,0x144,0x141,0x13b,0x141,0x13b,0x141,0x13b,0x141,0x13b,0x141,0x13b,0x141,0x13b,0x141,0x13b, +0x13e,0x141,0x13b,0x13e,0x141,0x13b,0x13e,0x144,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b, +0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13e, +0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141, +0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b, +0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e, +0x144,0x144,0x144,0x144,0x144,0x144,0x144,0x144,0x13b,0x141,0x5a6,0x5a9,0x16c2,0x16c2,0x16c2,0x16c2, +0x16c2,0x16c2,0x16c2,0x16c2,0x16c2,0x16c2,0x16c2,0x16c2,0x16c2,0x16c2,0x16c2,0x16c2,0x13e,0x13b,0x13e,0x13e, +0x13e,0x13e,0x13e,0x13e,0x13b,0x13e,0x13b,0x13b,0x13e,0x13e,0x13b,0x13b,0x13e,0x13e,0x13b,0x13e, +0x13b,0x13e,0x13b,0x13b,0x13e,0x13b,0x13b,0x13e,0x13b,0x13e,0x13b,0x13b,0x13e,0x13b,0x13e,0x13e, +0x13b,0x13b,0x13b,0x13e,0x13b,0x13b,0x13b,0x13b,0x13b,0x13e,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b, +0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b,0x13b, +0x13e,0x13e,0x13b,0x13b,0x13e,0x13b,0x13e,0x13b,0x13b,0x13b,0x13b,0x13b,0x141,0x141,0x13b,0x141, +0x13b,0x141,0x13b,0x141,0x13b,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x141,0x13b,0x13e,0x144,0x141, +0x13b,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x141, +0x13b,0x141,0x13b,0x141,0x13b,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e, +0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e, +0x144,0x141,0x13b,0x13e,0x144,0x141,0x13b,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e, +0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e, +0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x13e,0x144,0x141,0x141,0x141,0x141, +0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141, +0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x144,0x144,0x144,0x144, +0x144,0x144,0x144,0x144,0x144,0x144,0x144,0x144,0x144,0x144,0x144,0x144,0x144,0x144,0x144,0x144, +0x144,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0x141,0xd89,0x1a7,0x1a7,0x1b3, +0x924,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9, +0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1a7,0x1a7, +0x53d,0x540,0x5d3,0x5d3,0x5d3,0x5d3,0x5d3,0x5d3,0x5d3,0x5d3,0x5d3,0x5d3,0x1b0,0xc24,0xc21,0xf48, +0xf48,0xf48,0xf48,0xf48,0x1125,0xd98,0xd98,0xb1f,0xb1f,0xa26,0xb1f,0xb1f,0x1b9,0x1b9,0x1b9,0x1b9, +0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1bc,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0x1bc,0x1b9,0x1b9, +0x1bc,0x1b9,0x1b9,0x1b9,0x1b9,0x1b9,0xf42,0xf45,0x1aa,0x1b9,0x1b3,0x1b3,0x1c5,0x1c5,0x1c5,0x1c5, +0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1c5,0x1bf,0x1bf,0x1bf, +0x1bf,0x1bf,0x1bf,0x876,0x876,0xa38,0xa38,0x543,0xa35,0x101a,0x101a,0x101a,0x1c2,0x1c2,0x1c2,0x1c2, +0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2, +0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1c2,0x1e9,0x1e9,0x1e9,0x1e9, +0x1e9,0x1e9,0x1e9,0x1e9,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1e9,0x1e9,0x1e9,0x1e9, +0x1e9,0x1e9,0x1e9,0x1e9,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x1ec,0x21c,0x21c,0x21c,0xd9e, +0xd9e,0xd9e,0xd9e,0xd9e,0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219, +0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219,0x219, +0x219,0x219,0x219,0x219,0x219,0x219,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0xd9b,0x21f,0x21c,0x21c,0x21c, +0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c, +0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c,0x21c, +0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a, +0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x29a,0x29a,0x29a,0x29a,0x28e,0x5f4,0xc3c,0xc3c,0xc54,0xc3c, +0x3c6,0x3c6,0x3c6,0x3c6,0x3c6,0x3c6,0x3c6,0x3c6,0x3c6,0x3c6,0x3c6,0x3c6,0x294,0x294,0x294,0x294, +0x3bd,0x3bd,0x3bd,0x3bd,0x3bd,0x3bd,0x3bd,0x3bd,0x3bd,0x3bd,0x28e,0x28e,0x28e,0x28e,0x28e,0x28e, +0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a, +0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a,0x2a0,0x29a, +0x2a0,0x29a,0xc3f,0xc3c,0xc3f,0xc3c,0xc3f,0xc3c,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5, +0x2b5,0xf60,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5,0x2b5, +0x2b5,0x2b5,0xf60,0x1446,0x1446,0xc60,0x2a6,0x2af,0x321,0x321,0x321,0x321,0x321,0x321,0x321,0x321, +0x321,0x321,0x321,0x321,0x321,0x321,0x321,0x321,0x321,0x321,0x321,0x321,0x31e,0x31e,0x31e,0x31e, +0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e, +0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x31e,0x339,0x339, +0x339,0x339,0x339,0x339,0x339,0x339,0x339,0x339,0x339,0x339,0x339,0x339,0x339,0x339,0x339,0x339, +0x336,0x336,0x336,0x336,0x336,0x336,0x336,0x336,0x336,0x336,0x336,0x336,0x336,0x336,0x336,0x336, +0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351, +0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351,0x351, +0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db, +0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db,0x3db, +0x8b2,0x555,0x54c,0x549,0x54f,0x552,0x3ed,0x3f0,0x3f0,0x3f0,0x3f0,0x3f0,0x3f0,0x3f0,0x3f0,0x3f0, +0x55b,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed, +0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed,0x3ed, +0x3ed,0x3ed,0x558,0x558,0x3f6,0x435,0x435,0x435,0x435,0x435,0x435,0x42f,0x42f,0x42f,0x42f,0x42f, +0x42f,0x42f,0x42f,0x42f,0x42f,0x42f,0x42f,0x42f,0x42f,0x42f,0x42f,0x42f,0x42f,0x42f,0x42f,0x3f9, +0x417,0x3f3,0x41d,0x420,0x41a,0x432,0x432,0x432,0x432,0x432,0x432,0x42c,0x42c,0x42c,0x42c,0x42c, +0x42c,0x42c,0x42c,0x42c,0x42c,0x42c,0x42c,0x42c,0x42c,0x42c,0x42c,0x42c,0x42c,0x42c,0x42c,0x3f9, +0x417,0x3f3,0x417,0x8b5,0x402,0x56d,0x570,0x576,0x48c,0x4f2,0x5a3,0x4ef,0x564,0x561,0x564,0x561, +0x56a,0x567,0x56a,0x567,0x564,0x561,0x4dd,0x576,0x564,0x561,0x564,0x561,0x564,0x561,0x564,0x561, +0x57c,0x582,0x585,0x57f,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe, +0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe,0x4fe, +0x9ba,0x9ba,0xaef,0x48f,0x4dd,0x4e9,0x4e9,0x4e9,0x4e9,0x4e9,0x4e9,0x4e9,0x4e9,0x4e9,0x5c4,0x5c4, +0x5c4,0x5c4,0x4f8,0x4f8,0x579,0x58e,0x58e,0x58e,0x58e,0x58b,0x498,0x573,0x7b6,0x7b6,0x7b6,0x8c4, +0x8e5,0x8e2,0x7d1,0x546,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597, +0x597,0x597,0x597,0x597,0x597,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x9ab,0x9ab,0x9ab,0x9ab,0x59d, +0x59d,0x59d,0x59d,0x59d,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e, +0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x49e, +0x49e,0x49e,0x49e,0x49e,0x49e,0x49e,0x9ab,0x9ab,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec, +0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec, +0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4f5,0x4f5,0x4ec,0x4f5,0x4ec,0x4f5, +0x4f5,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4ec,0x4f5,0x4ec,0x4f5,0x4ec,0x4f5, +0x4f5,0x4ec,0x4ec,0x4f5,0x4f5,0x4f5,0x4ec,0x4ec,0x4ec,0x4ec,0x10b0,0x10b0,0x8c7,0x8c7,0x8c7,0x8c7, +0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x4f5,0x4f5,0x4f5,0x4f5, +0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5, +0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0x4f5,0xaec,0xaec, +0xaec,0xaec,0xaec,0xaec,0xaec,0xaec,0xaec,0xaec,0xaec,0xaec,0xaec,0xaec,0xaec,0xaec,0xaec,0xaec, +0xaec,0xaec,0xaec,0xaec,0xd47,0xd47,0xd47,0xd47,0x501,0x501,0x501,0x501,0x501,0x501,0x501,0x501, +0x501,0x501,0x501,0x501,0x501,0x501,0x501,0x501,0x501,0x501,0x501,0x501,0x501,0x501,0x501,0x501, +0x501,0x501,0x501,0x501,0x501,0x501,0x501,0x501,0x501,0x501,0xed3,0xed3,0xed3,0xed3,0xed3,0x50a, +0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504, +0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504, +0x507,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504, +0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x504,0x510,0x50d,0x510,0x513, +0x50d,0x510,0x50d,0x510,0x50d,0x510,0x50d,0x50d,0x50d,0x50d,0x50d,0x50d,0x510,0x510,0x50d,0x510, +0x510,0x50d,0x510,0x510,0x50d,0x510,0x510,0x50d,0x510,0x510,0x50d,0x50d,0x597,0x597,0x597,0x597, +0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x9ab,0x9ab,0x9ab,0x9ab,0x51c,0x51c,0x51c,0x51c, +0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c, +0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x51c,0x1611,0x51f,0x51f,0x51f,0x51f, +0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f, +0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x51f,0x597,0x597,0x597,0x597, +0x597,0x597,0x597,0x597,0x8df,0x528,0x522,0x528,0x522,0x528,0x522,0x528,0x522,0x528,0x522,0x522, +0x525,0x522,0x525,0x522,0x525,0x522,0x525,0x522,0x525,0x522,0x525,0x522,0x525,0x522,0x525,0x522, +0x525,0x522,0x525,0x522,0x525,0x522,0x525,0x528,0x522,0x525,0x522,0x525,0x522,0x525,0x522,0x522, +0x522,0x522,0x522,0x522,0x525,0x525,0x522,0x525,0x525,0x522,0x525,0x525,0x522,0x525,0x525,0x522, +0x525,0x525,0x522,0x522,0x522,0x522,0x522,0x528,0x522,0x528,0x522,0x528,0x522,0x522,0x522,0x522, +0x522,0x522,0x528,0x522,0x522,0x522,0x522,0x522,0x525,0x528,0x528,0x525,0x525,0x525,0x525,0x55e, +0x591,0x52b,0x52e,0x8d3,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597, +0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597, +0x597,0x597,0x597,0x597,0xef4,0xef4,0xef4,0xef4,0xea3,0xea3,0xea3,0xea3,0xea3,0xea3,0xea3,0xea3, +0x9ab,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be, +0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597, +0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x597,0x9ab, +0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a, +0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a,0x59a, +0x59a,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be, +0x639,0x615,0x615,0x615,0x615,0x60f,0x615,0x615,0x62a,0x615,0x615,0x624,0x621,0x627,0x627,0x627, +0x627,0x627,0x62a,0x60f,0x61b,0x60f,0x60f,0x60f,0x5fd,0x5fd,0x60f,0x60f,0x60f,0x60f,0x60f,0x60f, +0x62d,0x62d,0x62d,0x62d,0x62d,0x62d,0x62d,0x62d,0x62d,0x62d,0x60f,0x60f,0x60f,0x60f,0x60f,0x60f, +0x60f,0x60f,0x60f,0x60f,0x612,0x603,0x60f,0x603,0x60f,0x600,0x61e,0x618,0x61e,0x618,0x633,0x633, +0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c, +0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c,0x63c, +0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642, +0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x63f,0x63f, +0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642, +0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642,0x642, +0x645,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648, +0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x645,0x648,0x648,0x648, +0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648, +0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x648,0x669,0x669,0x669,0x669,0x669,0x669,0x669,0x669, +0x669,0x669,0x669,0x669,0x669,0x669,0x669,0x669,0x669,0x669,0x669,0x669,0x669,0x669,0x669,0x669, +0x669,0x669,0x669,0x846,0x846,0x846,0x846,0x846,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e, 0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e, -0x67e,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x67b,0x681,0x681,0x681,0x681, -0x10a4,0x10a4,0x10a4,0x15d8,0x15d8,0x15d8,0x15d8,0x15d8,0x15d8,0x15d8,0x17f1,0x17f1,0x8d6,0x8dc,0x8dc,0x8e8, -0x8e8,0x8d9,0x8d0,0x8d9,0x8d0,0x8d9,0x8d0,0x8d9,0x8d0,0x8d9,0x8d0,0x8d9,0x690,0x690,0x68a,0x690, -0x68a,0x690,0x68a,0x690,0x68a,0x690,0x68a,0x68d,0x693,0x690,0x68a,0x690,0x68a,0x68d,0x693,0x690, -0x68a,0x690,0x68a,0x68d,0x693,0x690,0x68a,0x68d,0x693,0x690,0x68a,0x68d,0x693,0x690,0x68a,0x690, -0x68a,0x690,0x68a,0x690,0x68a,0x690,0x68a,0x68d,0x693,0x690,0x68a,0x68d,0x693,0x690,0x68a,0x68d, -0x693,0x690,0x68a,0x68d,0x693,0x690,0x68a,0x68d,0x693,0x690,0x68a,0x68d,0x693,0x690,0x68a,0x68d, -0x693,0x690,0x68a,0x68d,0x693,0x690,0x68a,0x68d,0x783,0x783,0x783,0x783,0x783,0x783,0x783,0x783, -0x783,0x783,0x783,0x783,0x783,0x783,0x783,0x783,0x783,0x783,0x783,0x783,0x780,0x780,0x780,0x780, -0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780, -0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x789,0x789, -0x789,0x789,0x789,0x789,0x789,0x789,0x789,0x789,0x789,0x789,0x789,0x789,0x789,0x789,0x789,0x789, -0x786,0x786,0x786,0x786,0x786,0x786,0x786,0x786,0x786,0x786,0x786,0x786,0x786,0x786,0x786,0x786, -0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c, -0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c,0x78c, -0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7, -0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7,0x7a7, -0xce1,0x939,0x930,0x92d,0x933,0x936,0x7bc,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf, -0x93f,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc, +0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x67e,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0xa2f, +0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c, +0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c, +0x69c,0x69c,0x69c,0xa2f,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c,0x69c, +0x69c,0x69c,0x69c,0x69c,0x6d8,0x6d8,0x6d8,0x6db,0x6db,0x6d8,0x6d8,0x6d8,0x6d5,0x6d8,0x6d8,0x6d8, +0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6bd,0x6bd,0x6d2,0x6ab,0x6ab,0x6ab,0x6ab,0x6ab, +0x6ab,0x6ab,0x6d2,0x6d2,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8, +0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8,0x6d8, +0x6d8,0x6d8,0x6d8,0x6d8,0x714,0x714,0x714,0x714,0x714,0x6ff,0x6ff,0x714,0x714,0x714,0x714,0x714, +0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714, +0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x717, +0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714, +0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x714,0x732,0x732,0xc7e,0x732, +0x732,0x732,0x735,0x732,0xc7e,0x732,0x732,0xc75,0x72c,0x720,0x720,0x720,0x720,0x72f,0x720,0xc66, +0xc66,0xc66,0x720,0x723,0x72c,0x726,0xc6c,0xc78,0xc78,0xc66,0xc66,0xc7e,0x7d7,0x7d7,0x7d7,0x7d7, +0x7d7,0x7d7,0x7d7,0x7d7,0x7d7,0x7d7,0x738,0x738,0x729,0x729,0x729,0x729,0x732,0x732,0x732,0x732, +0x732,0x732,0x72f,0x72f,0x720,0x720,0xc7e,0xc7e,0xc7e,0xc7e,0xc66,0xc66,0x732,0x732,0x732,0x732, +0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732, +0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x732,0x747,0x747,0x747,0x747, +0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747, +0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x747,0x795,0x795,0x795,0x795, +0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x792,0x798,0x795,0x795,0x795,0x795,0x795, +0x795,0x795,0x795,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb6,0x795,0x795,0x795, +0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795, +0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795,0x795, +0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b, +0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b,0x79b, +0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad, +0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0x7ad,0xfd5,0xfd5,0xfd5,0x168f,0x168f,0x168f,0x168f,0x168f, +0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0, +0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0,0x7b0, +0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3, +0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3,0x7b3, +0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9, +0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9,0x7b9, +0x7b9,0x7b9,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x7bc,0x7bc,0x8d6,0x8d6, 0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc, -0x7bc,0x7bc,0x93c,0x93c,0x7c2,0x94e,0x951,0x957,0x879,0x888,0x96f,0x885,0x945,0x942,0x945,0x942, -0x94b,0x948,0x94b,0x948,0x945,0x942,0x87f,0x957,0x945,0x942,0x945,0x942,0x945,0x942,0x945,0x942, -0x95d,0x963,0x966,0x960,0x7c8,0x804,0x804,0x804,0x804,0x804,0x804,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe, -0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7cb, -0x7e6,0x7c5,0x7ec,0x7ef,0x7e9,0x801,0x801,0x801,0x801,0x801,0x801,0x7fb,0x7fb,0x7fb,0x7fb,0x7fb, -0x7fb,0x7fb,0x7fb,0x7fb,0x7fb,0x7fb,0x7fb,0x7fb,0x7fb,0x7fb,0x7fb,0x7fb,0x7fb,0x7fb,0x7fb,0x7cb, -0x7e6,0x7c5,0x7e6,0xce4,0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867, -0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867,0x867, -0x867,0x867,0x867,0x867,0x867,0x867,0x1383,0x1383,0x1383,0x1383,0x1383,0x86a,0x87f,0x882,0x882,0x882, -0x882,0x882,0x882,0x882,0x882,0x882,0x9a8,0x9a8,0x9a8,0x9a8,0x88b,0x88b,0x95a,0x96c,0x96c,0x96c, -0x96c,0x969,0x87c,0x954,0xbbb,0xbbb,0xbbb,0xcf6,0xd14,0xd11,0xbd9,0x92a,0x891,0x88e,0x891,0x894, -0x88e,0x891,0x88e,0x891,0x88e,0x891,0x88e,0x88e,0x88e,0x88e,0x88e,0x88e,0x891,0x891,0x88e,0x891, -0x891,0x88e,0x891,0x891,0x88e,0x891,0x891,0x88e,0x891,0x891,0x88e,0x88e,0xd17,0x8a3,0x89d,0x8a3, -0x89d,0x8a3,0x89d,0x8a3,0x89d,0x8a3,0x89d,0x89d,0x8a0,0x89d,0x8a0,0x89d,0x8a0,0x89d,0x8a0,0x89d, -0x8a0,0x89d,0x8a0,0x89d,0x8a0,0x89d,0x8a0,0x89d,0x8a0,0x89d,0x8a0,0x89d,0x8a0,0x89d,0x8a0,0x8a3, -0x89d,0x8a0,0x89d,0x8a0,0x89d,0x8a0,0x89d,0x89d,0x89d,0x89d,0x89d,0x89d,0x8a0,0x8a0,0x89d,0x8a0, -0x8a0,0x89d,0x8a0,0x8a0,0x89d,0x8a0,0x8a0,0x89d,0x8a0,0x8a0,0x89d,0x89d,0x89d,0x89d,0x89d,0x8a3, -0x89d,0x8a3,0x89d,0x8a3,0x89d,0x89d,0x89d,0x89d,0x89d,0x89d,0x8a3,0x89d,0x89d,0x89d,0x89d,0x89d, -0x8a0,0x8a3,0x8a3,0x8a0,0x8a0,0x8a0,0x8a0,0x975,0x978,0x8a6,0x8a9,0xcff,0x8af,0x8af,0x8af,0x8af, -0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af, -0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8b2,0x8af,0x8af,0x8af, -0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af, -0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8af,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb, -0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb,0x8bb, -0x8bb,0x8bb,0x8bb,0x8bb,0xdfe,0xdfe,0xf39,0x8b5,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981, -0x981,0x981,0x981,0x981,0xdf8,0xdf8,0xdf8,0xdf8,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be, -0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be, -0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x8be,0x1b78,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987, -0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0xe01, -0xe01,0xe01,0xe01,0x98a,0x98a,0x98a,0x98a,0x98a,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1, -0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1, -0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0x8c1,0xe01,0xe01,0x8c4,0x8c4,0x8c4,0x8c4, -0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4, -0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x8c4,0x987,0x987,0x987,0x987, -0x987,0x987,0x987,0x987,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7, +0x8d6,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bc,0x7bf,0x7bf,0x7bf,0x7bf, +0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf, +0x7bf,0x7c2,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf, +0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf,0x7bf, +0x7bf,0x7bf,0x7bf,0x7bf,0x7ec,0x7ec,0x7ec,0x7ec,0x7ec,0x7e3,0x7e3,0x7fb,0x7fb,0x7fb,0x7e9,0x7e9, +0x7e9,0x7e6,0x7e6,0x7e6,0x7e6,0x7e6,0x7e6,0x7da,0x7da,0x7da,0x7da,0x7da,0x7da,0x7da,0x7da,0x7fb, +0x7fb,0x7fb,0x7fb,0x7fb,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd, +0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd,0x7dd, +0x7dd,0x7dd,0x7dd,0x7dd,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9, +0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9, +0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7ec,0x7ec,0x7fb,0x7fb,0x7fb,0x7e9,0x7e9,0x7fb,0x7fb,0x7fb, +0x7fb,0x7fb,0x7fb,0x7fb,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9, +0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7fb,0x7fb,0x7fb,0x7fb,0x7e9,0x7e9, +0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7ec,0x7ec,0x7ec,0x7ec,0x7ec, +0x7ec,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9, +0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x7e9,0x12cf,0x12cf, +0x7f8,0x7ef,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7ef,0x7f5,0x7f5,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8, +0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7ef,0x7f5,0x7f5,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5, +0x7f5,0x7ef,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8, +0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7ef,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f5,0x7f5,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2, +0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2,0x7f2, +0x7f2,0x7f2,0x7f2,0x7f2,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8, +0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f5,0x7f5,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8, +0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f8,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5, +0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f5,0x7f8,0x7f8,0x7f8,0x7f8,0x801,0x801,0x801,0x801, +0x801,0x801,0x921,0x921,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe, +0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x7fe,0x91e,0x91e, +0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990, +0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801, +0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801,0x801, +0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810, +0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x810,0x1158, +0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816, +0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816,0x816, +0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819, +0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819,0x819, +0x819,0x819,0x819,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1743,0x1743,0x846,0x846,0x846,0x846, +0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846, +0x846,0x846,0x83a,0x846,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a, +0x83a,0x83a,0x83a,0x8fa,0x900,0x9db,0x9db,0x9db,0x9db,0x9db,0x9db,0x9db,0x9db,0x9db,0x9db,0x9db, +0xb10,0xb10,0xb10,0xb10,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x83a,0x8fa,0x8fa, +0x8fa,0x8fa,0x8fa,0x8fa,0x8fa,0x8fa,0x9db,0xae3,0x9db,0x9db,0x9db,0x9db,0x9db,0x9db,0x9db,0x9db, +0x9db,0xbb2,0xeb8,0xeb8,0x9f0,0x9f0,0x9f0,0x9f0,0x9f0,0x9f6,0x9f3,0xb10,0xb10,0xb10,0xb10,0xff6, +0xbd0,0xff6,0xf27,0xf27,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846, +0x846,0x846,0x846,0x846,0x846,0x846,0x8bb,0x8b8,0x8bb,0x8b8,0x8bb,0x8b8,0xd3b,0xd38,0xbd6,0xbd3, +0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846, +0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846, +0x846,0x846,0x846,0x84c,0x849,0x8bb,0x8b8,0x84c,0x849,0x84c,0x849,0x84c,0x849,0x84c,0x849,0x84c, +0x849,0x84c,0x849,0x84c,0x849,0x84c,0x849,0x84c,0x849,0x846,0x846,0x846,0x846,0x846,0x846,0x846, +0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846, +0x846,0x846,0x846,0x846,0x84c,0x849,0x84c,0x849,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846, +0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846, +0x846,0x846,0x846,0x846,0x84c,0x849,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846, +0x846,0x846,0x846,0x846,0x852,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846, +0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x852,0x852,0x852,0x846, +0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846, +0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x846,0x84f,0x846,0x846,0x846, 0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7, -0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0xf3c,0xf3c,0xf3c,0xf3c,0xf3c,0xf3c,0xf3c,0xf3c,0xf3c,0xf3c, -0xf3c,0xf3c,0xf3c,0xf3c,0xf3c,0xf3c,0xf3c,0xf3c,0xf3c,0xf3c,0xf3c,0xf3c,0x11f1,0x11f1,0x11f1,0x11f1, -0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca, -0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca, -0x8ca,0x8ca,0x8cd,0x8cd,0x8ca,0x8cd,0x8ca,0x8cd,0x8cd,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca,0x8ca, -0x8ca,0x8ca,0x8ca,0x8cd,0x8ca,0x8cd,0x8ca,0x8cd,0x8cd,0x8ca,0x8ca,0x8cd,0x8cd,0x8cd,0x8ca,0x8ca, -0x8ca,0x8ca,0x1593,0x1593,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08, -0xd08,0xd08,0xd08,0xd08,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981, -0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981,0x981, -0x981,0x981,0x981,0x981,0x13bf,0x13bf,0x13bf,0x13bf,0x136b,0x136b,0x136b,0x136b,0x136b,0x136b,0x136b,0x136b, -0xdf8,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02, -0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984, -0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984,0x984, -0x984,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02,0xd02, +0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7,0x8c7, +0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb, +0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb,0x8eb, +0x8fa,0x9b1,0x9db,0x9db,0x9db,0x9db,0x9db,0x9db,0x9db,0x9db,0xae3,0xae3,0x9db,0x9db,0x9db,0x9db, +0x9db,0x9db,0xb0d,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xeca,0xeca,0xebb, +0x8fa,0x8fa,0x8fa,0x8fa,0x8fa,0x8fa,0x8fa,0x8fa,0x8fa,0x8fa,0x8fa,0x8fa,0x8fa,0x8fa,0x9db,0x9db, +0x9db,0x9db,0x9db,0x9db,0xb0d,0xb0d,0xb0d,0xb0d,0xb0d,0xb0d,0xb0d,0xd41,0xd41,0xbb2,0xbb2,0xbb2, +0x954,0x954,0x954,0x954,0x954,0x954,0x92d,0x92d,0x92d,0x92d,0x92d,0x91b,0x960,0x960,0x960,0x95a, +0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x95a,0x960,0x960,0x960,0x960, +0x936,0x936,0x95d,0x95d,0x95d,0x95d,0x933,0x933,0x933,0x933,0x933,0x954,0xa5c,0xa5c,0xa5c,0xa5c, +0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa1d,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c, +0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x95a,0x960, +0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x960,0x936,0x936,0x936, +0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951, +0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951,0x951, +0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954, +0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954,0x954, 0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987, -0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0xe01, -0xa1d,0x9f9,0x9f9,0x9f9,0x9f9,0x9f3,0x9f9,0x9f9,0xa0e,0x9f9,0x9f9,0xa08,0xa05,0xa0b,0xa0b,0xa0b, -0xa0b,0xa0b,0xa0e,0x9f3,0x9ff,0x9f3,0x9f3,0x9f3,0x9e1,0x9e1,0x9f3,0x9f3,0x9f3,0x9f3,0x9f3,0x9f3, -0xa11,0xa11,0xa11,0xa11,0xa11,0xa11,0xa11,0xa11,0xa11,0xa11,0x9f3,0x9f3,0x9f3,0x9f3,0x9f3,0x9f3, -0x9f3,0x9f3,0x9f3,0x9f3,0x9f6,0x9e7,0x9f3,0x9e7,0x9f3,0x9e4,0xa02,0x9fc,0xa02,0x9fc,0xa17,0xa17, -0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26, -0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26,0xa26, -0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29, -0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29,0xa29, -0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c, -0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c,0xa2c, -0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35, -0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa2f,0xa2f, -0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38, -0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa32,0xa32, -0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35, -0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35,0xa35, -0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38, -0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38,0xa38, -0xa3b,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e, -0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3b,0xa3e,0xa3e,0xa3e, -0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e, -0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xae0,0xae0,0x1086,0xae0,0xae0,0xae0,0xae3,0xae0, -0x1086,0xae0,0xae0,0x107d,0xada,0xace,0xace,0xace,0xace,0xadd,0xace,0x106e,0x106e,0x106e,0xace,0xad1, -0xada,0xad4,0x1074,0x1080,0x1080,0x106e,0x106e,0x1086,0xbdf,0xbdf,0xbdf,0xbdf,0xbdf,0xbdf,0xbdf,0xbdf, -0xbdf,0xbdf,0xae6,0xae6,0xad7,0xad7,0xad7,0xad7,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xadd,0xadd, -0xace,0xace,0x1086,0x1086,0x1086,0x1086,0x106e,0x106e,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0, -0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0, -0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xae0,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xe5b, -0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5, +0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987,0x987, +0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990, +0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990,0x990, +0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5, +0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5,0x9a5, +0xaf2,0xaf2,0xaf2,0xaf2,0xaf2,0xaf2,0xaf2,0xaf2,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5, +0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0x9d5,0xb0a,0xb0a,0xb0a,0xb0a,0xbaf,0xbaf,0xbaf,0xbaf,0xbaf, +0x9ea,0x9ea,0x9ea,0x9ea,0x9ea,0x9ea,0x9ea,0x9ea,0x9ea,0x9ea,0x9ea,0x9ea,0x9ea,0x9ea,0x9e7,0x9e7, +0x9e7,0x9e7,0x9e7,0x9e7,0x9e7,0x9e7,0x9e4,0x9ed,0xbbe,0xbb5,0xbcd,0xbb2,0x9e1,0x9e1,0xbb2,0xbb2, +0xaf8,0xaf8,0x9f9,0x9f9,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xbeb,0xbeb,0xbee,0xbf1,0xbeb, +0xbe2,0xbe5,0xbe5,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8, +0xa1a,0xa17,0xa1a,0xa17,0xa1a,0xa17,0xa1a,0xa17,0xa1a,0xa17,0xa1a,0xa17,0xa1a,0xa17,0xa1a,0xa17, +0xa1a,0xa17,0xa1a,0xa17,0xa1a,0xa17,0xa1a,0xa17,0xa1a,0xa17,0xa1a,0xa17,0xa1a,0xa17,0xa1a,0xa17, +0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32, +0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32,0xa32, +0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44, +0xa44,0xa44,0xa44,0xa44,0xa44,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e,0xa3e, +0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41, +0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41,0xa41, +0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44, +0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44,0xa44, +0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68, +0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa68,0xa47, +0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c, +0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa5c,0xa68,0xa68,0xa68,0xa68,0xa68, +0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0x1701, +0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d, +0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0xa7d,0x16fe, +0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80, +0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80,0xa80, +0xaa4,0xaa4,0xa98,0xaa4,0xaa4,0xaa4,0xa9b,0xaa4,0xaa4,0xaa4,0xaa4,0xa98,0xaa4,0xaa4,0xaa4,0xaa4, +0xaa4,0xaa4,0xaa4,0xaa4,0xaa4,0xaa4,0xaa4,0xaa4,0xaa4,0xaa4,0xaa4,0xaa4,0xaa4,0xaa4,0xaa4,0xaa4, +0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad, +0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad,0xaad, +0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3, +0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3,0xab3, +0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc, +0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc,0xabc, +0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9, +0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9,0xae9, 0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5, -0xaf5,0xaf5,0xaf5,0xe5b,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5,0xaf5, -0xaf5,0xaf5,0xaf5,0xaf5,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb, -0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb,0xafb, -0xafb,0xafb,0xafb,0xafb,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01, -0xb01,0xafe,0xb04,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0x122a,0x122a,0x122a,0x122a,0x122a, -0x122a,0x122a,0x122a,0x122a,0x1227,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01, -0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01, -0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb01,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16, -0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16, -0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb16,0xb46,0xb46,0xb46,0xb49,0xb49,0xb46,0xb46,0xb46, -0xb43,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb2b,0xb2b,0xb40,0xb19, -0xb19,0xb19,0xb19,0xb19,0xb19,0xb19,0xb40,0xb40,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46, -0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46, -0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb55,0xb55,0xb6a, -0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a, -0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a, -0xb6a,0xb6a,0xb6a,0xb6d,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a, -0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a,0xb6a, -0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e, -0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xb8e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e, -0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a, -0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a,0xb9a, -0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac, -0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac,0xbac, -0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2, -0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2, -0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe, -0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0xbbe,0x149a,0x149a,0x149a,0x1bf9,0x1bf9,0x1bf9,0x1bf9,0x1bf9, -0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1, -0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1,0xbc1, -0xbc1,0xbc1,0x1bfc,0x1bfc,0x1bfc,0x1bfc,0x1bfc,0x1bfc,0x1bfc,0x1bfc,0x1bfc,0x1bfc,0xbc4,0xbc4,0xbc4,0xbc4, -0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4, -0xbc4,0xbc7,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4, -0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4,0xbc4, -0xbc4,0xbc4,0xbc4,0xbc4,0xbca,0xbca,0xd05,0xd05,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca, -0xbca,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca,0xd05,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca,0xbca, -0xbca,0xbca,0xbca,0xbca,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee, -0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee,0xbee, -0xbee,0xbee,0xbee,0x15db,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xd8c,0xd8c,0xbf4,0xbf4,0xbf4,0xbf4, -0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0xbf4, -0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0xbf4,0xd89,0xd89,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7, -0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7, -0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7, -0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbf7,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa, -0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa, -0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xbfa,0xc09,0xc09,0xc09,0xc09,0xc09,0xc00,0xc00,0xc0c, -0xc0c,0xc0c,0xc06,0xc06,0xc06,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xbfd,0xbfd,0xbfd,0xbfd,0xbfd, -0xbfd,0xbfd,0xbfd,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06, -0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06, -0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc09,0xc09,0xc0c,0xc0c,0xc0c,0xc06, -0xc06,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06, -0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc0c,0xc0c, -0xc0c,0xc0c,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc09, -0xc09,0xc09,0xc09,0xc09,0xc09,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06, -0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06, -0xc06,0xc06,0x17f4,0x17f4,0xc18,0xc0f,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15, -0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc0f, -0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18, -0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc0f, -0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15, -0xc15,0xc15,0xc15,0xc15,0xc15,0xc0f,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc18,0xc18,0xc18,0xc18, -0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18, -0xc18,0xc0f,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15, -0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12, -0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12, -0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc12,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18, -0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18, -0xc18,0xc18,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15, -0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18, -0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18,0xc18, -0xc18,0xc18,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15, -0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc15,0xc18,0xc18,0xc18,0xc18, -0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b, -0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b,0xc1b, -0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21, -0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21,0xc21, -0xc21,0xc21,0xc21,0x1c02,0x1c02,0x1c02,0x1c02,0x1c02,0x1c02,0x1c02,0x1cce,0x1cce,0xc24,0xc24,0xc24,0xc24, -0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24, -0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc24,0xc7e,0xc7e,0xc7e,0xc7e, -0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e, -0xc7e,0xc7e,0xc7b,0xc7e,0xc7b,0xc7b,0xc7b,0xc7b,0xc7b,0xc7b,0xc7b,0xc7b,0xc7b,0xc7b,0xc7b,0xc7b, -0xc7b,0xc7b,0xc7b,0xd80,0xd83,0xe76,0xe76,0xe76,0xe76,0xe76,0xe76,0xe76,0xe76,0xe76,0xe76,0xe76, -0xf93,0xf93,0xf93,0xf93,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xc8a,0xd86,0xd86, -0xd86,0xd86,0xd86,0xd86,0xd86,0xd86,0xe79,0xf33,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79, -0xe79,0x109e,0x1362,0x1362,0xe82,0xe82,0xe82,0xe82,0xe82,0xe88,0xe85,0xfa5,0xfa5,0xfa5,0xfa5,0x14d9, -0x10b0,0x14d9,0x141c,0x141c,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd, -0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcea,0xce7,0xcea,0xce7,0xcea,0xce7,0x11eb,0x11e8,0x10b6,0x10b3, -0xcc0,0xcc0,0xcc0,0xcc0,0xcc0,0xcc0,0xcc0,0xcc0,0xcc0,0xcc0,0xcc0,0xcc0,0xcc0,0xcc0,0xcc0,0xcc0, -0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3, -0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3,0xcc3, -0xcc6,0xcc6,0xcc6,0xccc,0xcc9,0xcf0,0xced,0xccc,0xcc9,0xccc,0xcc9,0xccc,0xcc9,0xccc,0xcc9,0xccc, -0xcc9,0xccc,0xcc9,0xccc,0xcc9,0xccc,0xcc9,0xccc,0xcc9,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6, -0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6, -0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xccc,0xcc9,0xccc,0xcc9, -0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6, -0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xcc6,0xccc,0xcc9,0xcc6,0xcc6, -0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xcd5,0xccf,0xccf,0xccf, -0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf, -0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf, -0xcd5,0xcd5,0xcd5,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf, -0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf,0xccf, -0xcd2,0xccf,0xccf,0xccf,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08, -0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08,0xd08, -0xd08,0xd08,0xd08,0xd08,0xd86,0xdf2,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xf33,0xf33, -0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xf96,0x109e,0x109e,0x109e,0x109e,0x109e,0x109e,0x109e,0x109e,0x109e, -0x109e,0x1386,0x1386,0x1365,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa, -0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa,0xdaa, -0xdaa,0xdaa,0xdaa,0xdaa,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb0,0xdb0,0xdb0,0xdb0,0xdb0,0xdad, -0xdc2,0xdc2,0xdc2,0xdbc,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdbc, -0xdc2,0xdc2,0xdc2,0xdc2,0xdb6,0xdb6,0xdbf,0xdbf,0xdbf,0xdbf,0xdb3,0xdb3,0xdb3,0xdb3,0xdb3,0xdb9, -0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8b,0xe8e,0xe8e,0xe8e, -0xe8e,0xe8e,0xe8e,0xe8e,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2, -0xdc2,0xdc2,0xdbc,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2, -0xdc2,0xdb6,0xdb6,0xdb6,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9, +0xd4a,0xd4a,0xd4a,0xd4a,0xd4a,0xd4a,0xd4a,0xd4a,0xd4a,0xd4a,0xd4a,0xd4a,0xd4a,0xd4a,0xd4a,0xd4a, +0xb01,0xb01,0xc45,0xc42,0xc45,0xc42,0xc45,0xc42,0xc45,0xc42,0xc45,0xc42,0xc45,0xc42,0xc45,0xc42, +0xc33,0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33, +0xb10,0xb10,0xb10,0xb0d,0xb0d,0xb0d,0xb0d,0xb0d,0xd68,0xfcc,0xfcc,0xfcc,0xfcc,0xf1e,0xf1e,0xf1e, +0xfcf,0xf21,0xf21,0xfcf,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x1377,0x1377,0x1377,0x1377,0x142b, +0xb0d,0xb0d,0xb0d,0xb0d,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2,0xbb2, +0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0xbd0, +0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0xbe8,0x10fe,0x10fe,0x10fe,0x10fe,0x10fe,0x10fe,0x10fe,0x10fe,0x10fe, +0x10fe,0x10fe,0x10fe,0x10fe,0x10fe,0x1104,0x1431,0x1431,0x14b5,0x1431,0x174f,0x1380,0xf2a,0xd6e,0xb16,0xb16, +0xb37,0xb34,0xb37,0xb37,0xb37,0xb34,0xb34,0xb37,0xb3a,0xb3d,0xb3a,0xb3d,0xb3a,0xc39,0xc39,0xc39, +0xda1,0xc33,0xc39,0xc33,0xb2e,0xb31,0xb2e,0xb34,0xc3c,0xc3c,0xc3c,0xc3c,0xc4e,0xc51,0xda1,0xda1, +0xb40,0xb40,0xb40,0xb40,0xb58,0xb5e,0xb61,0xb5e,0xb61,0xb5e,0xb61,0xb5e,0xb61,0xb5e,0xb61,0xb5e, +0xb5e,0xb5e,0xb61,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e, +0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb5e,0xb43,0xb40,0xb40,0xb40,0xb40,0xb40,0xb40,0xb5b, +0xb40,0xb5b,0xb58,0xb58,0xb4c,0xb4f,0xb4f,0xb4f,0xb4f,0xb4f,0xb4f,0xb4f,0xb4f,0xb4f,0xb4f,0xb46, +0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb46,0xb4f,0xb4f,0xb4f,0xb4f,0xb4f,0xb4f,0xb4f,0xb4f, +0xb4f,0x1707,0x1707,0x17ee,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85, +0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85,0xb85, +0xb85,0xb85,0xb85,0xb85,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97, +0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97, +0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0xb97,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191, +0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0xba3,0xba3,0xba3,0xba3,0xd3e,0xba3,0xba3,0xba3, +0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3, +0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3,0xba3, +0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xbaf,0xbac,0xbac,0xc4b,0xc48,0xf5d,0xf57,0x12f3, +0xf54,0xf51,0x1029,0x1026,0x1134,0x1134,0x113a,0x1134,0x113a,0x1134,0x113a,0x1134,0x113a,0x1134,0x113a,0x1134, +0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0xbb2,0xbb2,0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0xbd0,0x10e3,0x10e3,0x10e3, +0xd41,0xbb2,0xbb2,0xbb2,0xbb2,0xec7,0xeb8,0xeb8,0xeb8,0xeb8,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3, +0xbc4,0xbc4,0xbc1,0xbb8,0xbc1,0xbb8,0xbc1,0xbb8,0xbc1,0xbb8,0xbc7,0xbc7,0xbc7,0xbc7,0xbdc,0xbd9, +0xbca,0xd6b,0xff0,0xfed,0xfed,0xff0,0xfea,0xfea,0xfea,0xff0,0xff3,0xff3,0x10f5,0x10e6,0x10e6,0x10e3, +0xbbb,0xbbb,0xbbb,0xbbb,0xeca,0xeca,0xebb,0xebb,0xebb,0xeb8,0xeb8,0xeb8,0xeb8,0xebb,0xfcc,0xebb, +0xebb,0xebb,0xeb8,0xebb,0xeca,0xeb8,0xeb8,0xeb8,0xebb,0xebb,0xeb8,0xeb8,0xebb,0xeb8,0xeb8,0xebb, +0xf39,0xf36,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc12,0xd56, +0xc00,0xc00,0xc00,0xc0c,0x1014,0x1014,0x1014,0x1014,0x1014,0x1014,0x1014,0x1014,0xc06,0xc06,0xc09,0xc1e, +0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03, +0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03,0xc03, +0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f, +0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f,0xc15,0xc0f, +0x1119,0x1116,0x1119,0x1116,0x1122,0x1122,0x12e1,0x1014,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33, +0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33, +0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc33,0xc51,0xc33,0xc33,0xc33,0xc33,0xc33,0xc33,0xc33, +0xc33,0xc39,0xc33,0xc39,0xc33,0xc39,0xc39,0xc33,0xc66,0xc7e,0xc75,0xc7b,0xc7b,0xc7e,0xc7e,0xc75, +0xc75,0xc7b,0xc7b,0xc7b,0xc7b,0xc7b,0xc7e,0xc7e,0xc7e,0xc66,0xc66,0xc66,0xc66,0xc7e,0xc7e,0xc7e, +0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc7e,0xc66,0xc75,0xc78,0xc66,0xc66,0xc7b, +0xc7b,0xc7b,0xc7b,0xc7b,0xc7b,0xc69,0xc7e,0xc7b,0xc72,0xc72,0xc72,0xc72,0xc72,0xc72,0xc72,0xc72, +0xc72,0xc72,0xdad,0xdad,0xdaa,0xda4,0xc6f,0xc6f,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae, +0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae, +0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcae,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcb4,0xcb4, +0xcb4,0xcb4,0xcb4,0xcb7,0xcb7,0xcb7,0xd4d,0xcc0,0xd17,0xd17,0xd17,0xd17,0xd17,0xd17,0xd17,0xd17, +0xd17,0xd17,0xd17,0xd17,0xd17,0xd17,0xd17,0xd17,0xcba,0xcba,0xcba,0xcba,0xcba,0xcba,0xcba,0xcba, +0xcba,0xcba,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd, +0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcbd,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5, +0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5, +0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xcd5,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1, +0xce1,0xce1,0xce1,0xce1,0xce7,0xcdb,0xced,0xcea,0xce4,0xce4,0xce4,0xce1,0xce1,0xce1,0xce1,0xce1, +0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1, +0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xce1,0xcf0,0xcf0,0xcf0,0xcf0, +0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0, +0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcf0,0xcff,0xcff,0xcff,0xcff, +0xcff,0xcff,0xcff,0xcff,0xcff,0xcff,0xcff,0xcff,0xcff,0xcff,0xcff,0xcff,0xcff,0xcff,0xcff,0xcff, +0xcff,0xcff,0xcff,0xcff,0xd02,0xd02,0xd02,0xd05,0xd02,0xd02,0xd08,0xd08,0xd20,0xd20,0xd23,0xd23, +0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23, +0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd23,0xd20,0xd20,0xd20,0xd20, +0xd20,0xd20,0xd20,0xd20,0xd20,0xd20,0xd20,0xd20,0xd29,0xd29,0xd32,0xd35,0xd35,0xd35,0xd35,0xd35, +0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35, +0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd35,0xd32,0xd29,0xd29,0xd29,0xd29,0xd32,0xd32, +0xd29,0xd29,0xd2c,0x1044,0x1041,0x1041,0xd35,0xd35,0xd2f,0xd2f,0xd2f,0xd2f,0xd2f,0xd2f,0xd2f,0xd2f, +0xd2f,0xd2f,0x104a,0x104a,0x104a,0x104a,0x104a,0x104a,0xd47,0xd47,0xd47,0xd47,0xed0,0xed0,0xed0,0xed0, +0xed0,0xed0,0xed0,0xed0,0x10b3,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x14a6,0x14a6, +0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0xea6,0xea6,0xea6,0xea6,0xea6,0xea6,0xea6,0xea6, +0xea6,0xea6,0xea6,0xea9,0xea9,0xea9,0xd62,0x14b8,0xfba,0xeb5,0xfba,0xfba,0xfba,0xfba,0xfba,0xfba, +0xfba,0xfba,0xfba,0xfba,0xfba,0xeb5,0xfba,0xeb5,0xd8c,0xd8c,0xd8c,0xd8c,0xd8c,0xd8c,0xd8c,0xd8c, +0xd8c,0xd8c,0xd8c,0xd8c,0xd8c,0xd8c,0xd8c,0xd8c,0xd8c,0xf0c,0xd95,0xf0f,0xd95,0xd95,0xd95,0xd95, +0xd8f,0xd8f,0xd8f,0xd95,0x12e7,0x12ea,0x14d6,0x14d3,0xdb0,0xdb0,0xdb0,0xdb0,0xdb0,0xdb0,0xdb0,0xdb0, +0xdb0,0xdb0,0xdb0,0xdb0,0xdb0,0xdb0,0xdb0,0xdb0,0xdb3,0xdb0,0xdb0,0xdb0,0xdb0,0xdb0,0xdb0,0xda7, +0xda7,0xda7,0xdb0,0xdad,0x1146,0x114c,0x1152,0x1152,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9, 0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9, -0xdb9,0xdb9,0xdb9,0xdb9,0xdc5,0xdc5,0xdc5,0xdc5,0xdc5,0xdc5,0xdc5,0xdc5,0xdc5,0xdc5,0xdc5,0xdc5, -0xdc5,0xdc5,0xe91,0xe91,0xe91,0xe91,0xe91,0xe91,0xfa8,0xfa8,0xfa8,0xfa8,0xfa8,0xfa8,0xfa8,0x11f4, -0x11f4,0x10b9,0x10b9,0x10b9,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8, -0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8,0xdc8, -0xdc8,0xdc8,0xdc8,0xdc8,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce, -0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce,0xdce, -0xdce,0xdce,0xdce,0xdce,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7, -0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7,0xdd7, -0xdd7,0xdd7,0xdd7,0xdd7,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3, -0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3,0xde3, -0xde3,0xde3,0xde3,0xde3,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef, -0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef,0xdef, -0xdef,0xdef,0xdef,0xdef,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97, +0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdb9,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2, +0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2, +0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc8,0xdc8,0xdc8,0xdc5,0xdc5,0xdc5,0xdc2,0xdc2, +0xdc2,0xdc2,0xdc5,0xdc2,0xdc2,0xdc2,0xdc8,0xdc5,0xdc8,0xdc5,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2, +0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2, +0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc8,0xdc5,0xdc5,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2, +0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0xdc2,0x1782,0x15ae,0x15ae,0x15ae,0x15ae,0x15ae,0x15ae,0x15ae,0x15b1, +0x15ab,0x1773,0x1773,0x1773,0x1776,0x1770,0x1776,0x1770,0xdcb,0xdcb,0xdcb,0xddd,0xde0,0xde0,0xde0,0xde0, +0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0, +0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xde0,0xdce,0xddd,0xddd,0xdcb,0xdcb, +0xdcb,0xdcb,0xddd,0xddd,0xdcb,0xdcb,0xddd,0xddd,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6, +0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6, +0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xde6,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04, +0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04, +0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe04,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c, +0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c, +0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe1c,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31, +0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31, +0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe31,0xe34,0xe34,0xe40,0xe43,0xe43,0xe43,0xe43,0xe43, +0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43, +0xe43,0xe43,0xe46,0xe43,0xe46,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43,0xe43, +0xe43,0xe43,0xe43,0xe46,0xe43,0xe43,0xe43,0xe43,0xe40,0xe40,0xe40,0xe34,0xe34,0xe34,0xe34,0xe40, +0xe40,0xe3a,0xe37,0xe3d,0xe3d,0xe4c,0xe49,0xe49,0xe67,0xe67,0xe67,0xe67,0xe67,0xe67,0xe67,0xe67, +0xe67,0xe67,0xe67,0xe67,0xe67,0xe67,0xe67,0xe67,0xe67,0xe67,0xe67,0xe67,0xe67,0xe67,0xe5e,0xe5e, +0xe61,0xe61,0xe67,0xe5e,0xe5e,0xe5e,0xe5e,0xe5e,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79, +0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe6d,0xe79,0xe6d,0xe6d,0xe6d,0xe82,0xe82,0xe6d, +0xe6d,0xe82,0xe79,0xe82,0xe82,0xe79,0xe6d,0xe70,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79, +0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79, +0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe79,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e, +0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e, +0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe8e,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97, 0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe97, -0xe97,0xe97,0xe97,0xe97,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d, -0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9a,0xe9a,0xe9a,0xe9a,0xe9a,0xe9a,0xe9a, -0xe9a,0xe9a,0xe9a,0xe9a,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d, -0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d,0xe9d, -0xe9d,0xe9d,0xe9d,0xe9d,0xf63,0xf63,0xeaf,0xeaf,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0xfab,0x10cb, -0x10cb,0x10ce,0x10d1,0x10cb,0x10c2,0x10c5,0x10c5,0x10c8,0x10c8,0x10c8,0x10c8,0x10c8,0x10c8,0x10c8,0x10c8,0x10c8, -0x10c8,0x10c8,0x10c8,0x10c8,0xebe,0xebb,0xebe,0xebb,0xebe,0xebb,0xebe,0xebb,0xebe,0xebb,0xebe,0xebb, -0xebe,0xebb,0xebe,0xebb,0xebe,0xebb,0xebe,0xebb,0xebe,0xebb,0xebe,0xebb,0xebe,0xebb,0xebe,0xebb, -0xebe,0xebb,0xebe,0xebb,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca, -0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca,0xeca, -0xeca,0xeca,0xeca,0xeca,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0, -0xed0,0xed0,0xed0,0x1c44,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd, -0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd,0xecd, -0xecd,0xecd,0xecd,0x1c41,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0, +0xe97,0xe97,0xe97,0xe97,0xe97,0xe97,0xe94,0xe9a,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0, +0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0,0xea0, +0xea0,0xea0,0xea0,0xea0,0xea0,0xe9d,0xe9d,0xe9d,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7, +0xfb7,0xfb7,0xea3,0xea3,0xea3,0xea3,0xfbd,0xfb1,0xeaf,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd,0xfbd, +0xfbd,0xfbd,0xfbd,0x140d,0x140d,0x140d,0x140d,0x140d,0xea6,0xea6,0xea6,0xea6,0xea6,0xea6,0xea6,0xea6, +0xea6,0xea6,0xea6,0x10c8,0x10c8,0x1617,0x1617,0x1617,0xea6,0xea6,0xea6,0xea6,0xea6,0xea6,0xea6,0xea6, +0xea6,0xea6,0xea6,0xea6,0xea6,0xea6,0xea6,0xea6,0xfba,0xfba,0xeb5,0xfba,0xfba,0xfba,0xeb5,0xfba, +0xfba,0xfba,0xeaf,0xeaf,0xeaf,0xeaf,0xeaf,0xfb4,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xeb2, +0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xeb2,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7, +0xfb7,0xfb7,0xfe7,0xfe7,0x1584,0x1617,0x1617,0x1617,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7,0xfb7, +0xfb7,0xeb2,0xfb7,0xeb2,0xeb2,0xfb7,0xfb7,0xeb2,0xebb,0xebb,0xf1e,0xeb8,0xf1e,0xf1e,0xf1e,0xf1e, +0xeb8,0xeb8,0xeca,0xeb8,0xeb8,0xeb8,0xeb8,0xeb8,0xeb8,0xebb,0xeca,0xeca,0xebb,0xeca,0xeb8,0xebb, +0xebb,0xebe,0xeca,0xeb8,0xeb8,0xeca,0xebb,0xebb,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0, 0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0, -0xed0,0xed0,0xed0,0xed0,0xf5d,0xf5d,0xf5d,0xf5d,0xf5d,0xf5d,0xf5d,0xf5d,0xee8,0xee8,0xee8,0xee8, -0xee8,0xee8,0xee8,0xee8,0xee8,0xee8,0xee8,0xee8,0xee8,0xee8,0xee8,0xfae,0xfae,0xfae,0xfae,0x10d4, -0x10d4,0x10d4,0x10d4,0x10d4,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1, -0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1,0xef1, -0xef1,0xef1,0xef1,0xef1,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa, -0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa,0xefa, -0xefa,0xefa,0xefa,0xefa,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03, -0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03,0xf03, -0xf03,0xf03,0xf03,0xefd,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00, -0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf03, -0xf03,0xf03,0xf03,0xf03,0xf0f,0xf0f,0xf0f,0xf0f,0xf0f,0xf0f,0xf0f,0xf0f,0xf0f,0xf0f,0xf0f,0xf0f, -0xf0f,0xf0f,0xf0c,0xf0c,0xf0c,0xf0c,0xf0c,0xf0c,0xf0c,0xf0c,0xf09,0xf12,0x10e0,0x10da,0x10ef,0x10d7, -0xf06,0xf06,0x10d7,0x10d7,0xf21,0xf21,0xf15,0xf21,0xf21,0xf21,0xf18,0xf21,0xf21,0xf21,0xf21,0xf15, -0xf21,0xf21,0xf21,0xf21,0xf21,0xf21,0xf21,0xf21,0xf21,0xf21,0xf21,0xf21,0xf21,0xf21,0xf21,0xf21, -0xf21,0xf21,0xf21,0xf21,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24, -0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24,0xf24, -0xf24,0xf24,0xf24,0xf24,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f, -0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f,0xf3f, -0xf3f,0xf3f,0xf3f,0xf3f,0xf60,0xf60,0xf60,0xf60,0xf60,0xf60,0xf60,0xf60,0xf60,0xf60,0xf60,0xf60, -0xf60,0xf60,0xf60,0xf60,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa, -0x11fa,0x11fa,0x11fa,0x11fa,0xf93,0xf93,0xf93,0xf90,0xf90,0xf90,0xf90,0xf90,0x1236,0x148b,0x148b,0x148b, -0x148b,0x1407,0x1407,0x1407,0x148e,0x140a,0x140a,0x148e,0x15d2,0x15d2,0x15d2,0x15d2,0x15d2,0x15d2,0x15d2,0x18a8, -0x18a8,0x18a8,0x18a8,0x1971,0xfa8,0xfa8,0xfa8,0xfa8,0x10b9,0x10b9,0x10b9,0x10b9,0x10b9,0x10b9,0x10b9,0x10b9, -0x10b9,0x10b9,0x10b9,0x10b9,0x10bc,0x10bc,0x10bc,0x10bc,0x10bc,0x10bc,0x10bc,0x10bc,0x10bc,0x10bc,0x10bc,0x10bc, -0x10bc,0x10bc,0x10bc,0x10bc,0x10c8,0x10c8,0x10c8,0x10c8,0x10c8,0x10c8,0x10c8,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3, -0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f6,0x197a,0x197a,0x19fb,0x197a,0x1cec,0x18ae, -0x141f,0x123f,0xfab,0xfab,0xfcc,0xfcc,0xfcc,0xfcc,0xfe4,0xfea,0xfed,0xfea,0xfed,0xfea,0xfed,0xfea, -0xfed,0xfea,0xfed,0xfea,0xfea,0xfea,0xfed,0xfea,0xfea,0xfea,0xfea,0xfea,0xfea,0xfea,0xfea,0xfea, -0xfea,0xfea,0xfea,0xfea,0xfea,0xfea,0xfea,0xfea,0xfea,0xfea,0xfea,0xfea,0xfcf,0xfcc,0xfcc,0xfcc, -0xfcc,0xfcc,0xfcc,0xfe7,0xfcc,0xfe7,0xfe4,0xfe4,0xfd8,0xfdb,0xfdb,0xfdb,0xfdb,0xfdb,0xfdb,0xfdb, -0xfdb,0xfdb,0xfdb,0xfd2,0xfd2,0xfd2,0xfd2,0xfd2,0xfd2,0xfd2,0xfd2,0xfd2,0xfdb,0xfdb,0xfdb,0xfdb, -0xfdb,0xfdb,0xfdb,0xfdb,0xfdb,0x1c56,0x1c56,0x1d79,0xffc,0xff9,0xffc,0xffc,0xffc,0xff9,0xff9,0xffc, -0xfff,0x1002,0xfff,0x1002,0xfff,0x10fb,0x10fb,0x10fb,0x1257,0x10f8,0x10fb,0x10f8,0xff3,0xff6,0xff3,0xff9, -0x10fe,0x10fe,0x10fe,0x10fe,0x1101,0x1104,0x1257,0x1257,0x1005,0x1005,0x1119,0x1116,0x1119,0x1116,0x1119,0x1116, -0x1119,0x1116,0x1119,0x1116,0x1119,0x1116,0x1119,0x1116,0x110d,0x110d,0x1113,0x110d,0x1113,0x110d,0x1113,0x110d, -0x1113,0x110d,0x1113,0x110d,0x1113,0x110d,0x1113,0x110d,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b, -0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b, -0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x100b,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a, -0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a, -0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x101a,0x1614,0x1614,0x1614,0x1614,0x1614, -0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1020,0x1020,0x1020,0x1020, -0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020, -0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x1020,0x106e,0x1086,0x107d,0x1083, -0x1083,0x1086,0x1086,0x107d,0x107d,0x1083,0x1083,0x1083,0x1083,0x1083,0x1086,0x1086,0x1086,0x106e,0x106e,0x106e, -0x106e,0x1086,0x1086,0x1086,0x1086,0x1086,0x1086,0x1086,0x1086,0x1086,0x1086,0x1086,0x1086,0x1086,0x106e,0x107d, -0x1080,0x106e,0x106e,0x1083,0x1083,0x1083,0x1083,0x1083,0x1083,0x1071,0x1086,0x1083,0x107a,0x107a,0x107a,0x107a, -0x107a,0x107a,0x107a,0x107a,0x107a,0x107a,0x121e,0x121e,0x121b,0x1218,0x1077,0x1077,0x10a1,0x10a1,0x10a1,0x10a1, -0x1386,0x1386,0x1365,0x1365,0x1365,0x1362,0x1362,0x1362,0x1362,0x1365,0x1491,0x1365,0x1365,0x1365,0x1362,0x1365, -0x1386,0x1362,0x1362,0x1362,0x1365,0x1365,0x1362,0x1362,0x1365,0x1362,0x1362,0x1365,0x10bc,0x10bc,0x10bc,0x10bc, -0x10bc,0x10b9,0x10b9,0x10bc,0x10bc,0x10bc,0x10bc,0x10bc,0x10bc,0x15ed,0x15ed,0x15ed,0x11f4,0x10b9,0x10b9,0x10b9, -0x10b9,0x1392,0x136e,0x136e,0x136e,0x136e,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x10e6,0x10e6,0x10e3,0x10dd, -0x10e3,0x10dd,0x10e3,0x10dd,0x10e3,0x10dd,0x10e9,0x10e9,0x10e9,0x10e9,0x10f5,0x10f2,0x10ec,0x1254,0x14eb,0x14e8, -0x14e8,0x14eb,0x14e5,0x14e5,0x14e5,0x14eb,0x14ee,0x14ee,0x1608,0x15fc,0x15fc,0x15f9,0x1113,0x110d,0x1113,0x110d, -0x1113,0x110d,0x1113,0x110d,0x110a,0x1107,0x1107,0x111f,0x111c,0x1431,0x142e,0x17fd,0x142b,0x1428,0x14f7,0x14f4, -0x160b,0x160b,0x1611,0x160b,0x1611,0x160b,0x1611,0x160b,0x1611,0x160b,0x1611,0x160b,0x1113,0x110d,0x1113,0x110d, -0x1113,0x110d,0x1113,0x110d,0x1113,0x110d,0x1113,0x110d,0x1113,0x110d,0x1113,0x110d,0x1113,0x110d,0x1113,0x110d, -0x1113,0x110d,0x1113,0x110d,0x1113,0x110d,0x1113,0x110d,0x1113,0x110d,0x1113,0x110d,0x1122,0x110d,0x110d,0x110d, -0x110d,0x110d,0x110d,0x110d,0x110d,0x1113,0x110d,0x1113,0x110d,0x1113,0x1113,0x110d,0x1125,0x1125,0x112e,0x1131, -0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131, -0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x1131,0x112e,0x1125,0x1125, -0x1125,0x1125,0x112e,0x112e,0x1125,0x1125,0x1128,0x1500,0x14fd,0x14fd,0x1131,0x1131,0x112b,0x112b,0x112b,0x112b, -0x112b,0x112b,0x112b,0x112b,0x112b,0x112b,0x1503,0x1503,0x1503,0x1503,0x1503,0x1503,0x1146,0x1146,0x1146,0x1146, -0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146, -0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x1146,0x114f,0x114f,0x114f,0x114f, -0x114f,0x114f,0x114f,0x114f,0x114f,0x114f,0x114f,0x114f,0x114f,0x114f,0x114f,0x114f,0x114f,0x114f,0x114f,0x114f, -0x114f,0x114f,0x114f,0x114f,0x1152,0x1152,0x1152,0x1155,0x1152,0x1152,0x1158,0x1158,0x115b,0x115b,0x115b,0x115b, -0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b, -0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x115b,0x1164,0x1164,0x1164,0x1164, -0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x116a,0x115e,0x1170,0x116d,0x1167,0x1167,0x1167,0x1164, -0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164, -0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164,0x1164, -0x1437,0x1434,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1182,0x1206, -0x1173,0x1173,0x1173,0x117c,0x1506,0x1506,0x1506,0x1506,0x1506,0x1506,0x1506,0x1506,0x1176,0x1176,0x1179,0x1188, -0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f, -0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f,0x1185,0x117f, -0x1620,0x161d,0x1620,0x161d,0x1623,0x1623,0x1806,0x1506,0x1191,0x1191,0x1194,0x1194,0x1194,0x1194,0x1194,0x1194, -0x1194,0x1194,0x1194,0x1194,0x1194,0x1194,0x1194,0x1194,0x1194,0x1194,0x1194,0x1194,0x1194,0x1194,0x1194,0x1194, -0x1194,0x1194,0x1194,0x1194,0x1194,0x1194,0x1194,0x1194,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191,0x1191, -0x1191,0x1191,0x1191,0x1191,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x119a,0x119a,0x119a,0x119a,0x119a,0x119d, -0x119d,0x119d,0x11fd,0x11a6,0x11b5,0x11b5,0x11b5,0x11b5,0x11b5,0x11b5,0x11b5,0x11b5,0x11b5,0x11b5,0x11b5,0x11b5, -0x11b5,0x11b5,0x11b5,0x11b5,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a3,0x11a3, -0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3,0x11a3, -0x11a3,0x11a3,0x11a3,0x11a3,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7, -0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7,0x11c7, -0x11c7,0x11c7,0x11c7,0x11c7,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9, -0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9,0x11d9, -0x11d9,0x11d9,0x11d9,0x11d9,0x11e2,0x11e2,0x11e2,0x11e2,0x11f7,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2, -0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2,0x11e2, -0x11e2,0x11e2,0x11e2,0x11e2,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5, -0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5,0x11e5, -0x11e5,0x11e5,0x11e5,0x11e5,0x11f1,0x11f1,0x11f1,0x11f1,0x138c,0x138c,0x138c,0x138c,0x138c,0x138c,0x138c,0x138c, -0x1590,0x1887,0x1887,0x1887,0x1887,0x1887,0x1887,0x1887,0x1887,0x1887,0x19da,0x19da,0x19da,0x19da,0x19da,0x19da, -0x19da,0x19da,0x19da,0x19da,0x1269,0x1269,0x1269,0x1269,0x1269,0x1269,0x1269,0x1269,0x1269,0x1269,0x1269,0x1269, -0x1269,0x1269,0x1269,0x1269,0x1269,0x1269,0x1269,0x1269,0x1269,0x1269,0x1260,0x1260,0x1263,0x1263,0x1269,0x1260, -0x1260,0x1260,0x1260,0x1260,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f, -0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f,0x126f, -0x126f,0x126f,0x126f,0x126f,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a, -0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a,0x128a, -0x128a,0x128a,0x128a,0x128a,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296, -0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296,0x1296, -0x1296,0x1296,0x1293,0x1299,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5, -0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5,0x12a5, -0x12a5,0x12a5,0x12a5,0x12a5,0x12ab,0x12ab,0x12ab,0x12ab,0x12ab,0x12ab,0x12ab,0x12ab,0x12ab,0x12ab,0x12ab,0x12ab, -0x12ab,0x12ab,0x12ab,0x12ab,0x12ab,0x13d7,0x12b1,0x13da,0x12b1,0x12b1,0x12b1,0x12b1,0x12ae,0x12ae,0x12ae,0x12b1, -0x1809,0x180c,0x1a3a,0x1a37,0x12b4,0x12b4,0x12b4,0x12c6,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9, -0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9, -0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12c9,0x12b7,0x12c6,0x12c6,0x12b4,0x12b4,0x12b4,0x12b4,0x12c6,0x12c6, -0x12b4,0x12b4,0x12c6,0x12c6,0x12d5,0x12d5,0x12d5,0x12d5,0x12d5,0x12d5,0x12d5,0x12d5,0x12d5,0x12d5,0x12d5,0x12d5, -0x12d5,0x12d5,0x12d5,0x12d5,0x12d8,0x12d5,0x12d5,0x12d5,0x12d5,0x12d5,0x12d5,0x12cf,0x12cf,0x12cf,0x12d5,0x12d2, -0x1629,0x162c,0x162f,0x162f,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7, -0x12e7,0x12e7,0x12e7,0x12e7,0x12db,0x12e7,0x12db,0x12db,0x12db,0x12f0,0x12f0,0x12db,0x12db,0x12f0,0x12e7,0x12f0, -0x12f0,0x12e7,0x12db,0x12de,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7, -0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7,0x12e7, -0x12e7,0x12e7,0x12e7,0x12e7,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302, +0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xed0,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12, +0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12, +0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf12,0xf54,0xf51,0xf54,0xf51,0xf54,0xf51,0xf54,0xf51, +0xf54,0xf51,0x1029,0x113a,0x113a,0x113a,0x1395,0x14e5,0x113a,0x113a,0x12f6,0x12f6,0x12f6,0x12f0,0x12f6,0x12f0, +0x14eb,0x14e8,0x1596,0x1593,0x1596,0x1593,0x1596,0x1593,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87, +0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87, +0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf87,0xf99,0xf8a,0xf99,0xf9f,0xf9f,0xf9c,0xf9c,0xf9c, +0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c, +0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf9c,0xf8a,0xf8a,0xf8a,0xf8a,0xf8a,0xf8a,0xf8a,0xf8a, +0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae, +0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae,0xfae, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc0,0xfc0,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc0,0xfc3,0xfc3,0xfc3, +0xfc0,0xfc3,0xfc0,0xfc3,0xfc0,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc6,0xfc3,0xfc3,0xfc3,0xfc3,0xfc0, +0xfc3,0xfc0,0xfc0,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc0,0xfc0,0xfc0,0xfc0,0xfc0,0xfc0,0xfc0,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc0,0xfc0,0xfc0,0xfc0,0xfc0,0xfc0,0xfc0,0xfc0,0xfc0, +0xfc0,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc0,0xfc0, +0xfc0,0xfc0,0xfc0,0xfc0,0xfc0,0xfc0,0xfc0,0xfc0,0xfc0,0xfc0,0x10cb,0x10cb,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0x10ce,0x10ce,0x10ce, +0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x1368,0x1368,0x1368,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0x10ce,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0x10ce,0x1368,0x1368,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc6,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce, +0x10cb,0x10cb,0x10ce,0x10ce,0xfc3,0xfc3,0xfc6,0xfc6,0xfc6,0x12a8,0xfc3,0xfc6,0xfc3,0xfc3,0xfc6,0x10dd, +0x10dd,0x10ce,0x10ce,0x1368,0x1368,0x1368,0x1368,0x1368,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce, +0x10ce,0x10ce,0x10ce,0x10ce,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0x10ce,0x10ce,0x10ce,0x12a8,0x10ce,0x10ce,0x10ce,0x1368,0x1368,0x1368,0x136e, +0x136e,0x136e,0x136e,0x136e,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0x10ce,0xfc3,0x10ce,0xfc6,0xfc6,0xfc3,0xfc3,0xfc6,0xfc6,0xfc6,0xfc6,0xfc6,0xfc6, +0xfc6,0xfc6,0xfc6,0xfc6,0xfc6,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc6,0xfc6,0xfc6,0xfc6,0xfc6,0xfc6,0xfc6,0xfc6,0xfc6,0xfc6, +0xfc6,0xfc6,0xfc6,0xfc6,0xfc6,0xfc6,0xfc6,0xfc6,0xfc6,0xfc3,0xfc3,0xfc3,0xfc6,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc6,0xfc6,0xfc6,0xfc3,0xfc6,0xfc6,0xfc6,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc6, +0xfc3,0xfc6,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0x12a8,0xfc3,0xfc3,0xfc3, +0xfc3,0x10ce,0x10ce,0x1368,0xfe4,0xfe4,0xfe4,0xfe4,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10ce,0x1368, +0x1368,0x1368,0x1368,0x12cc,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce, +0x10dd,0x10dd,0x10ce,0x10ce,0x10ce,0x10ce,0x1413,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce, +0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10cb,0x10cb,0x10cb,0x10cb, +0x10cb,0x10cb,0x10ce,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0x10ad,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0x10ad,0xfc3,0xfc3,0xfc3,0x10ad,0xfc3,0x10ad, +0xfc3,0x10ad,0xfc3,0x10ad,0xfc3,0xfc3,0xfc3,0x10ad,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0x10ad,0x10ad, +0xfc3,0xfc3,0xfc3,0xfc3,0x10ad,0xfc3,0x10ad,0x10ad,0xfc3,0xfc3,0xfc3,0xfc3,0x10ad,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0x12a8,0x12a8,0x1368,0x1368,0xfc6,0xfc6,0xfc6, +0xfc3,0xfc3,0xfc3,0xfc6,0xfc6,0xfc6,0xfc6,0xfc6,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb, +0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0xfc3,0xfc3,0xfc3,0xfc6,0xfc3,0xfc3,0xfc3,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc6,0xfc6,0xfc6,0xfc3, +0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfc3,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8, +0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8, +0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfd8,0xfde,0xfdb,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9, +0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9, +0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x1383,0x1383,0x137d,0x12d5,0xffc,0xffc,0xffc,0xffc, +0xffc,0xffc,0xff9,0xff9,0xff9,0xff9,0xff9,0xff9,0xffc,0xffc,0xffc,0xffc,0xffc,0xffc,0xffc,0xffc, +0xffc,0xffc,0xffc,0xffc,0xffc,0xffc,0xffc,0x1107,0x1002,0x110d,0x1002,0x1002,0x1002,0x1002,0x1002,0x1002, +0x1002,0x1002,0x1002,0x1002,0x1002,0x110a,0x110a,0x110a,0x110a,0x110a,0x110d,0x12d8,0x12d8,0x16c5,0x1389,0x1389, +0x1389,0x1389,0x1389,0x1389,0x1389,0x1389,0x1626,0x1626,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032, +0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032, +0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1032,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038, +0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038, +0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x1038,0x15b7,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b, +0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b, +0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x103b,0x105f,0x105f,0x105f,0x1071,0x1071,0x1071,0x1071,0x1071, +0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071, +0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x1071,0x107a,0x107a,0x1089,0x108c,0x108c,0x108c,0x108c,0x108c, +0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c, +0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x108c,0x1089,0x1089,0x1089,0x107a,0x107a, +0x107a,0x107a,0x107a,0x107a,0x107a,0x107a,0x107a,0x1089,0x107d,0x108c,0x108f,0x108f,0x108c,0x1092,0x1092,0x1080, +0x1083,0x1320,0x1323,0x1323,0x1323,0x122a,0x1650,0x164d,0x1086,0x1086,0x1086,0x1086,0x1086,0x1086,0x1086,0x1086, +0x1086,0x1086,0x1227,0x1329,0x132c,0x1326,0x132f,0x132f,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa, +0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa, +0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10aa,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce, +0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10cb,0x10cb,0x10cb,0x10cb, +0x10cb,0x10cb,0x10cb,0x10cb,0x10ce,0x10ce,0x10ce,0x10ce,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb, +0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10da,0x10da, +0x10da,0x10d1,0x10d1,0x10d1,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb, +0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb,0x10cb, +0x10cb,0x10cb,0x10cb,0x10cb,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce, +0x10ce,0x10ce,0x10ce,0x10ce,0x10dd,0x10ce,0x10ce,0x10ce,0x10ce,0x12ab,0x12ab,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce, +0x10ce,0x10ce,0x10ce,0x10ce,0x1410,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce, +0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce,0x10ce, +0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134, +0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x1134,0x10e0,0x113d,0x113d,0x113d,0x113d, +0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3, +0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x14c1,0x14c1,0x14c1,0x10e3,0x10e3,0x10e3, +0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x1587,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3,0x10e3, +0x10e3,0x10e3,0x142b,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1, +0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c, +0x1170,0x1170,0x1170,0x1170,0x1170,0x1170,0x1170,0x1182,0x1182,0x1176,0x1173,0x1173,0x1173,0x1173,0x1173,0x1173, +0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c, +0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c,0x117c, +0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185, +0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185,0x1185, +0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x1197,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0, +0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0,0x11a0, +0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be, +0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be,0x11be, +0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4, +0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4,0x11c4, +0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8, +0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8,0x11e8, +0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee, +0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11ee,0x11eb,0x11eb,0x11eb, +0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa, +0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11fa,0x11f7,0x11f7,0x11f7,0x11f7,0x11f7,0x11f7,0x11f7,0x11f7,0x11f7, +0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c, +0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x120c,0x11fd, +0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215, +0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215,0x1215, +0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b, +0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b,0x121b, +0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x1242,0x123f,0x123f,0x123f,0x122d, +0x122d,0x122d,0x123f,0x123f,0x122d,0x1236,0x1230,0x1233,0x1245,0x1245,0x123c,0x1245,0x1245,0x1239,0x13a7,0x1788, +0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d, +0x1248,0x1257,0x1257,0x1248,0x1248,0x1248,0x1248,0x1248,0x1248,0x1257,0x1248,0x125a,0x125a,0x1248,0x125a,0x1248, +0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d, +0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d,0x125d, +0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263, +0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263,0x1263, +0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281, +0x127e,0x127e,0x127e,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x1272,0x127e,0x127e,0x1272,0x127e,0x1275, +0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281, +0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281,0x1281, +0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287, +0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287,0x1287, +0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2, +0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2,0x12a2, +0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x12d2,0x12d2,0x12d2,0x12d2, +0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x1587, +0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db, +0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db,0x12db, +0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302, 0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302,0x1302, -0x1302,0x1302,0x1302,0x1302,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a, -0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a,0x131a, -0x131a,0x1317,0x1317,0x1317,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323, -0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323,0x1323, -0x1323,0x1323,0x1323,0x1323,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332, +0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305, +0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305,0x1305, +0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308, +0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308,0x1308, +0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b, +0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b, +0x130b,0x130b,0x130b,0x130e,0x130e,0x130e,0x130e,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b,0x130b, +0x130b,0x130b,0x130b,0x130b,0x130b,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130b,0x130e,0x130e, +0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e, +0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e,0x130e, +0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d, +0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d,0x131d, +0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332, 0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332, -0x1332,0x1332,0x1332,0x1332,0x1338,0x1338,0x1344,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347, -0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x134a,0x1347, -0x134a,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x1347,0x134a, -0x1347,0x1347,0x1347,0x1347,0x1344,0x1344,0x1344,0x1338,0x1338,0x1338,0x1338,0x1344,0x1344,0x133e,0x133b,0x1341, -0x1341,0x1350,0x134d,0x134d,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353, -0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353, -0x1353,0x1353,0x1353,0x1353,0x1359,0x1359,0x1359,0x1356,0x1356,0x1356,0x1353,0x1353,0x1353,0x1353,0x1356,0x1353, -0x1353,0x1353,0x1359,0x1356,0x1359,0x1356,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353, -0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353, -0x1353,0x1359,0x1356,0x1356,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353,0x1353, -0x1353,0x1353,0x1353,0x1cf5,0x1b15,0x1b15,0x1b15,0x1b15,0x1b15,0x1b15,0x1b15,0x1b18,0x1b12,0x1d07,0x1d07,0x1d07, -0x1d0a,0x1d04,0x1d0a,0x1d04,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1377, -0x1377,0x1377,0x135c,0x1a40,0x1488,0x1380,0x1488,0x1488,0x1488,0x1488,0x1488,0x1488,0x1488,0x1488,0x1488,0x1488, -0x1488,0x1380,0x1488,0x1380,0x1365,0x1365,0x140d,0x1362,0x140d,0x140d,0x140d,0x140d,0x1362,0x1362,0x1386,0x1362, -0x1362,0x1362,0x1362,0x1362,0x1362,0x1365,0x1386,0x1386,0x1365,0x1386,0x1362,0x1365,0x1365,0x1368,0x1386,0x1362, -0x1362,0x1386,0x1365,0x1365,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1371,0x1371, -0x1371,0x1371,0x149d,0x147f,0x137a,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x1938, -0x1938,0x1938,0x1938,0x1938,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1632, -0x1632,0x1b9c,0x1b9c,0x1b9c,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374,0x1374, -0x1374,0x1374,0x1374,0x1374,0x1488,0x1488,0x1380,0x1488,0x1488,0x1488,0x1380,0x1488,0x1488,0x1488,0x137a,0x137a, -0x137a,0x137a,0x137a,0x1482,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x137d,0x1485,0x1485,0x1485,0x1485, -0x1485,0x1485,0x1485,0x137d,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1509,0x1509, -0x1af4,0x1b9c,0x1b9c,0x1b9c,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x1485,0x137d,0x1485,0x137d, -0x137d,0x1485,0x1485,0x137d,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1, -0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1,0x13a1, -0x13a1,0x13a1,0x13a1,0x13a1,0x142b,0x1428,0x142b,0x1428,0x142b,0x1428,0x142b,0x1428,0x142b,0x1428,0x14f7,0x1611, -0x1611,0x1611,0x18b4,0x1a2b,0x1611,0x1611,0x1800,0x1800,0x1800,0x17fa,0x1800,0x17fa,0x1a31,0x1a2e,0x1aeb,0x1ae8, -0x1aeb,0x1ae8,0x1aeb,0x1ae8,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455, -0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455,0x1455, -0x1455,0x1455,0x1455,0x1455,0x146a,0x145b,0x146a,0x1470,0x1470,0x146d,0x146d,0x146d,0x146d,0x146d,0x146d,0x146d, -0x146d,0x146d,0x146d,0x146d,0x146d,0x146d,0x146d,0x146d,0x146d,0x146d,0x146d,0x146d,0x146d,0x146d,0x146d,0x146d, -0x146d,0x146d,0x146d,0x146d,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x145b,0x1476,0x1476,0x1476,0x1476, +0x1332,0x1332,0x1338,0x1335,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332,0x1332, +0x1332,0x1332,0x1332,0x1332,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422,0x1422, +0x168c,0x15f6,0x15f6,0x15f9,0x1368,0x1368,0x1368,0x1368,0x1368,0x1368,0x1368,0x1368,0x136b,0x1413,0x1413,0x1413, +0x1413,0x1413,0x1413,0x14a0,0x1368,0x1368,0x1368,0x1368,0x1368,0x1410,0x1410,0x1410,0x1410,0x1410,0x1410,0x1410, +0x1410,0x1410,0x1410,0x1410,0x1410,0x1410,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x156f,0x156f,0x156f,0x156f, +0x156f,0x156f,0x156f,0x156f,0x1368,0x156f,0x156f,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6,0x15f6,0x1689, +0x173d,0x15f9,0x15f9,0x15f9,0x149d,0x14a0,0x14a0,0x14a0,0x14a0,0x14a0,0x14a0,0x14a0,0x14a0,0x14a0,0x14a0,0x14a0, +0x14a0,0x14a0,0x149d,0x149d,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371, +0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371,0x1371, +0x1371,0x1371,0x1371,0x1371,0x1410,0x1410,0x1410,0x1410,0x1410,0x1410,0x1413,0x1410,0x149d,0x149d,0x149d,0x149d, +0x149d,0x149d,0x149d,0x149d,0x1413,0x14a0,0x14a0,0x1413,0x1413,0x1413,0x1413,0x1413,0x1413,0x1413,0x1410,0x1374, +0x1413,0x1413,0x1413,0x15f6,0x1410,0x1410,0x1410,0x1410,0x1410,0x1410,0x1374,0x1410,0x1410,0x1410,0x1410,0x1410, +0x149d,0x156f,0x156f,0x156f,0x1410,0x1410,0x1410,0x1410,0x1410,0x1410,0x1410,0x1410,0x1410,0x1410,0x1410,0x1410, +0x1410,0x1410,0x1410,0x149d,0x1626,0x1626,0x1626,0x1626,0x1626,0x1626,0x1626,0x1626,0x16c5,0x16c8,0x16bc,0x16bc, +0x16bc,0x16bc,0x16bc,0x16bc,0x16bc,0x16bc,0x16bc,0x14ca,0x1386,0x1386,0x1386,0x1386,0x1386,0x1386,0x1386,0x1386, +0x1386,0x1386,0x1386,0x1386,0x13bc,0x13bc,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9, +0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9,0x13b9, +0x13b9,0x13b9,0x13b9,0x13b9,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc, +0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc,0x13bc, +0x13bc,0x13bc,0x13bc,0x13bc,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401, +0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x13fe,0x13fe,0x13fe,0x13e9,0x13e9,0x13e9,0x13e9, +0x13e9,0x13e9,0x13e9,0x13e9,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401, +0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401,0x1401, +0x1401,0x1401,0x1401,0x1401,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419, +0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419, +0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1419,0x1698,0x1698,0x1698,0x1698,0x1698,0x1698,0x1698,0x1698,0x1698, +0x1698,0x1698,0x1698,0x1698,0x1476,0x1476,0x1476,0x1476,0x15c6,0x15c6,0x1479,0x1479,0x1479,0x1479,0x1461,0x1461, +0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1461,0x1473,0x1464,0x1467,0x146a,0x147c, +0x147c,0x150f,0x146d,0x146d,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476, 0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476, -0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x1476,0x147c,0x147c,0x147c,0x147c, -0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c, -0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x147c,0x14a6,0x14a3,0x19e0,0x19e0, -0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0, -0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x14af,0x14af,0x14af,0x14af, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af, -0x14af,0x14ac,0x14ac,0x14af,0x14af,0x14af,0x14af,0x14af,0x14ac,0x14af,0x14af,0x14af,0x14ac,0x14af,0x14ac,0x14af, -0x14ac,0x14af,0x14af,0x14af,0x14af,0x14af,0x14b2,0x14af,0x14af,0x14af,0x14af,0x14ac,0x14af,0x14ac,0x14ac,0x14af, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14ac,0x14ac,0x14ac,0x14ac, -0x14ac,0x14ac,0x14ac,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af, -0x14af,0x14af,0x14af,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14af,0x14af,0x14af, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac, -0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x163b,0x163b,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e, -0x163e,0x163e,0x163e,0x163e,0x163e,0x188a,0x188a,0x188a,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x163e,0x14af, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x163e,0x188a,0x188a, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14b2,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af, -0x14af,0x14af,0x14af,0x14af,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163b,0x163b,0x163e,0x163e, -0x14af,0x14af,0x14b2,0x14b2,0x14b2,0x17b5,0x14af,0x14b2,0x14af,0x14af,0x14b2,0x1641,0x1641,0x163e,0x163e,0x188a, -0x188a,0x188a,0x188a,0x188a,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af, -0x14af,0x163e,0x163e,0x163e,0x17b5,0x163e,0x163e,0x163e,0x188a,0x188a,0x188a,0x188d,0x188d,0x188d,0x188d,0x188d, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x163e, -0x14af,0x163e,0x14b2,0x14b2,0x14af,0x14af,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2, -0x14b2,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af, -0x14af,0x14af,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14b2, -0x14b2,0x14b2,0x14b2,0x14b2,0x14b2,0x14af,0x14af,0x14af,0x14b2,0x14af,0x14af,0x14af,0x14af,0x14b2,0x14b2,0x14b2, -0x14af,0x14b2,0x14b2,0x14b2,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14b2,0x14af,0x14b2,0x14af,0x14af, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x17b5,0x14af,0x14af,0x14af,0x14af,0x163e,0x163e,0x188a, -0x150c,0x150c,0x150c,0x150c,0x163b,0x163b,0x163b,0x163b,0x163b,0x163b,0x163e,0x188a,0x188a,0x188a,0x188a,0x180f, -0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af,0x14af, -0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x1641,0x1641,0x163e,0x163e, -0x163e,0x163e,0x1941,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e, -0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163b,0x163b,0x163b,0x163b,0x163b,0x163b,0x163e,0x14af, -0x14af,0x14af,0x14af,0x14af,0x1596,0x14b5,0x14b5,0x14b5,0x14b5,0x14b5,0x14b5,0x14b5,0x14b5,0x14b5,0x14b5,0x14b5, -0x14b5,0x14b5,0x14b5,0x14b5,0x14b5,0x1596,0x14b5,0x14b5,0x14b5,0x1596,0x14b5,0x1596,0x14b5,0x1596,0x14b5,0x1596, -0x14b5,0x14b5,0x14b5,0x1596,0x14b5,0x14b5,0x14b5,0x14b5,0x14b5,0x14b5,0x1596,0x1596,0x14b5,0x14b5,0x14b5,0x14b5, -0x1596,0x14b5,0x1596,0x1596,0x14b5,0x14b5,0x14b5,0x14b5,0x1596,0x14b5,0x14b5,0x14b5,0x14b5,0x14b5,0x14b5,0x14b5, -0x14b5,0x14b5,0x14b5,0x14b5,0x14b5,0x17bb,0x17bb,0x1890,0x1890,0x14b8,0x14b8,0x14b8,0x14b5,0x14b5,0x14b5,0x14b8, -0x14b8,0x14b8,0x14b8,0x14b8,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a, -0x173a,0x173a,0x173a,0x173a,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb, -0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb, -0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14be,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb, -0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb,0x14be,0x14be,0x14be,0x14bb,0x14bb,0x14bb,0x14bb,0x14bb, -0x14bb,0x14bb,0x14bb,0x14bb,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1, -0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1,0x14c1, -0x14c1,0x14c1,0x14c1,0x14c1,0x18bd,0x18bd,0x18ba,0x1812,0x1512,0x1512,0x1512,0x1512,0x1512,0x1512,0x150f,0x150f, -0x150f,0x150f,0x150f,0x150f,0x1512,0x1512,0x1512,0x1512,0x1512,0x1512,0x1512,0x1512,0x1512,0x1512,0x1512,0x1512, -0x1512,0x1512,0x1512,0x1647,0x1515,0x164d,0x1515,0x1515,0x1515,0x1515,0x1515,0x1515,0x1515,0x1515,0x1515,0x1515, -0x1515,0x164a,0x164a,0x164a,0x164a,0x164a,0x164d,0x1815,0x1815,0x1c71,0x18c3,0x18c3,0x18c3,0x18c3,0x18c3,0x18c3, -0x18c3,0x18c3,0x1b9f,0x1b9f,0x151e,0x151e,0x151e,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530, -0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530,0x1530, -0x1530,0x1530,0x1530,0x1530,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b, +0x1476,0x1476,0x1476,0x1476,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494, +0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x147f,0x1485,0x1482,0x1482,0x1482,0x1482,0x1491,0x1497,0x1482, +0x1482,0x1482,0x1482,0x148e,0x1494,0x1482,0x1482,0x1482,0x1482,0x1482,0x1482,0x1482,0x1482,0x1482,0x1482,0x1494, +0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494,0x1494, +0x1494,0x1494,0x1494,0x1494,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d, +0x156f,0x156f,0x156f,0x156f,0x156f,0x15f6,0x1689,0x156f,0x156f,0x156f,0x156f,0x168c,0x1689,0x173d,0x156f,0x15f6, +0x156f,0x156f,0x156f,0x156f,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x149d,0x156f,0x156f,0x156f,0x156f,0x156f, +0x156f,0x156f,0x156f,0x156f,0x156f,0x156f,0x156f,0x156f,0x156f,0x156f,0x156f,0x156f,0x156f,0x156f,0x156f,0x156f, +0x156f,0x156f,0x156f,0x156f,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x1578, +0x1578,0x1578,0x1578,0x1578,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695, +0x1695,0x1743,0x1743,0x1743,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6, +0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6,0x14a6, +0x14a6,0x14a6,0x14a6,0x14a6,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9, +0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9, +0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x14a9,0x1746,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac, +0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac, +0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14ac,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8, +0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8, +0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x14b8,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521, +0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521, +0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1521,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548, +0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548, +0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x1548,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b, 0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b, -0x154b,0x154b,0x154b,0x154b,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551, -0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551,0x1551, -0x1551,0x1551,0x1551,0x1afa,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554, -0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554,0x1554, -0x1554,0x1554,0x1554,0x1554,0x155a,0x155a,0x1569,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c, +0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x154b,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557, +0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557, +0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x1557,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c, 0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c, -0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x156c,0x1569,0x1569,0x1569,0x155a,0x155a,0x155a,0x155a,0x155a,0x155a, -0x155a,0x155a,0x155a,0x1569,0x155d,0x156c,0x156f,0x156f,0x156c,0x1572,0x1572,0x1560,0x1563,0x181b,0x181e,0x181e, -0x181e,0x1653,0x1ba8,0x1ba5,0x1566,0x1566,0x1566,0x1566,0x1566,0x1566,0x1566,0x1566,0x1566,0x1566,0x1650,0x1824, -0x1827,0x1821,0x182a,0x182a,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d, -0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d,0x158d, -0x158d,0x158d,0x158d,0x158d,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed, -0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x1a13,0x1a13, -0x1a13,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x1ae2,0x15ed,0x15ed, -0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x15ed,0x1977,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13, -0x1a13,0x1a13,0x1a13,0x1a13,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e, -0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163b,0x163b,0x163b,0x163b,0x163b,0x163b,0x163b,0x163b, -0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e, -0x1641,0x163e,0x163e,0x163e,0x163e,0x17b8,0x17b8,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e, -0x193e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e, -0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x163e,0x1662,0x1662,0x1662,0x1662, -0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662, -0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1662,0x1674,0x1674,0x1674,0x1674, -0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674, -0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x1674,0x167a,0x167a,0x167a,0x167a, -0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a, -0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167a,0x167d,0x167d,0x167d,0x167d, -0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d, -0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x167d,0x16b0,0x16b0,0x16b0,0x16b0, -0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16b0,0x16ad,0x16ad,0x16ad,0x169b,0x169b,0x169b,0x16ad,0x16ad, -0x169b,0x16a4,0x169e,0x16a1,0x16b3,0x16b3,0x16aa,0x16b3,0x16b3,0x16a7,0x18c6,0x1d01,0x16c5,0x16c5,0x16c5,0x16c5, -0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5, -0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16c5,0x16b6,0x16ce,0x16ce,0x16ce,0x16ce, -0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce, -0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16ce,0x16c8,0x16d1,0x16d1,0x16d1,0x16d1,0x16d4,0x16d4,0x16d4,0x16d4, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4, -0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16d4,0x16ef,0x16ef,0x16ef,0x16ef, -0x16ef,0x16ef,0x16ef,0x16ef,0x16e6,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef, -0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16ef,0x16f8,0x16f8,0x16f8,0x16f8, -0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8, -0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x16f8,0x170a,0x170a,0x170a,0x170a, -0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x1707,0x1707,0x1707,0x16fb, -0x16fb,0x16fb,0x16fb,0x16fb,0x16fb,0x16fb,0x16fb,0x1707,0x1707,0x16fb,0x1707,0x16fe,0x170a,0x170a,0x170a,0x170a, -0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a, -0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x170a,0x1731,0x1731,0x1731,0x1731, -0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x1731, -0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x1731,0x172e,0x172e,0x172e,0x173a,0x173a,0x173a,0x173a, -0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a,0x173a, -0x173a,0x173a,0x1740,0x1740,0x1740,0x173d,0x173d,0x173d,0x173a,0x173a,0x173a,0x173a,0x174f,0x174f,0x174f,0x174f, -0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x1743,0x1743,0x1743,0x1743, -0x1743,0x1743,0x1743,0x1755,0x1755,0x1749,0x1746,0x1746,0x1746,0x1746,0x1746,0x1746,0x174f,0x174f,0x174f,0x174f, -0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f, -0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x174f,0x175b,0x175b,0x175b,0x175b, -0x175b,0x175b,0x175b,0x175b,0x175b,0x175b,0x175b,0x175b,0x175b,0x175b,0x175b,0x175b,0x175b,0x175b,0x175b,0x175b, -0x175b,0x175b,0x175b,0x1758,0x1758,0x1758,0x1758,0x1758,0x1758,0x1758,0x1758,0x1758,0x175e,0x175e,0x175e,0x175e, -0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e, -0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x1782,0x1782,0x1782,0x1782, -0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782, -0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x1782,0x178b,0x178b,0x178b,0x178b, -0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b, -0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x178b,0x17a3,0x17a3,0x17a3,0x17a3, -0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x178e,0x179d,0x179d,0x178e, -0x178e,0x178e,0x178e,0x178e,0x178e,0x179d,0x178e,0x17a0,0x17a0,0x178e,0x17a0,0x178e,0x17a3,0x17a3,0x17a3,0x17a3, -0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3, -0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17a3,0x17ac,0x17ac,0x17ac,0x17ac, -0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac, -0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17ac,0x17b2,0x17b2,0x17b2,0x17b2, -0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2, -0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x17b2,0x1a13,0x1a13,0x1a13,0x1a13, -0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x17f7,0x17f7,0x17f7,0x17f7,0x1a13,0x1a13,0x1a13,0x1a13, -0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1a13,0x1ae2,0x1818,0x1818,0x1818,0x1818, -0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818, -0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1818,0x1857,0x1857,0x1857,0x1857, -0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857, -0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x185d,0x185a, -0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857, -0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860, -0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860,0x1860, -0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863, -0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863,0x1863, -0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875, -0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875,0x1875, -0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878, -0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878,0x1878, -0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b, -0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b, -0x187b,0x187b,0x187b,0x187e,0x187e,0x187e,0x187e,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b,0x187b, -0x187b,0x187b,0x187b,0x187b,0x187b,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187b,0x187e,0x187e, -0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e, -0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e,0x187e, -0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896, -0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896,0x1896, -0x1983,0x1983,0x1983,0x1983,0x1983,0x1983,0x1983,0x1983,0x1983,0x1983,0x1983,0x1983,0x1c0b,0x1b5a,0x1b5a,0x1b5d, -0x1899,0x1899,0x1899,0x1899,0x1899,0x1899,0x1899,0x1899,0x189c,0x194a,0x194a,0x194a,0x194a,0x194a,0x194a,0x19e9, -0x1899,0x1899,0x1899,0x1899,0x1899,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947, -0x1947,0x1947,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd, -0x1899,0x1acd,0x1acd,0x1b5a,0x1b5a,0x1b5a,0x1b5a,0x1b5a,0x1b5a,0x1b5a,0x1b5a,0x1c08,0x1cda,0x1b5d,0x1b5d,0x1b5d, -0x19e6,0x19e9,0x19e9,0x19e9,0x19e9,0x19e9,0x19e9,0x19e9,0x19e9,0x19e9,0x19e9,0x19e9,0x19e9,0x19e9,0x19e6,0x19e6, -0x1b9f,0x1b9f,0x1b9f,0x1b9f,0x1b9f,0x1b9f,0x1b9f,0x1b9f,0x1c71,0x1c74,0x1c6e,0x1c6e,0x1c6e,0x1c6e,0x1c6e,0x1c6e, -0x1c6e,0x1c6e,0x1c6e,0x1a43,0x18c0,0x18c0,0x18c0,0x18c0,0x18c0,0x18c0,0x18c0,0x18c0,0x18c0,0x18c0,0x18c0,0x18c0, -0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x194a,0x1947,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6, -0x194a,0x19e9,0x19e9,0x194a,0x194a,0x194a,0x194a,0x194a,0x194a,0x194a,0x1947,0x18c9,0x194a,0x194a,0x194a,0x1b5a, -0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x18c9,0x1947,0x1947,0x1947,0x1947,0x1947,0x19e6,0x1acd,0x1acd,0x1acd, -0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x1947,0x19e6, -0x18de,0x18de,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db, -0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db,0x18db, -0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de, -0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de,0x18de, -0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c, -0x192c,0x192c,0x192c,0x192c,0x192c,0x1929,0x1929,0x1929,0x1914,0x1914,0x1914,0x1914,0x1914,0x1914,0x1914,0x1914, -0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c, -0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c,0x192c, -0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950, -0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950,0x1950, -0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953, -0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953,0x1953, -0x1953,0x1953,0x1953,0x1c14,0x1c14,0x1c14,0x1c14,0x1c14,0x1c14,0x1c14,0x1c14,0x1c14,0x1c14,0x1c14,0x1c14,0x1c14, -0x19ad,0x19ad,0x19ad,0x19ad,0x1b0c,0x1b0c,0x19b0,0x19b0,0x19b0,0x19b0,0x1998,0x1998,0x1998,0x1998,0x1998,0x1998, -0x1998,0x1998,0x1998,0x1998,0x1998,0x1998,0x1998,0x19aa,0x199b,0x199e,0x19a1,0x19b3,0x19b3,0x1a55,0x19a4,0x19a4, -0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad, -0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad,0x19ad, -0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce, -0x19ce,0x19ce,0x19ce,0x19b9,0x19bf,0x19bc,0x19bc,0x19bc,0x19bc,0x19cb,0x19d1,0x19bc,0x19bc,0x19bc,0x19bc,0x19c8, -0x19ce,0x19bc,0x19bc,0x19bc,0x19bc,0x19bc,0x19bc,0x19bc,0x19bc,0x19bc,0x19bc,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce, -0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce,0x19ce, -0x19da,0x19da,0x19da,0x19da,0x19da,0x19da,0x19da,0x19da,0x19da,0x19da,0x19da,0x1ac7,0x1ac7,0x1ac7,0x1ac7,0x1ac7, -0x1bff,0x1bff,0x1bff,0x1bff,0x1bff,0x1bff,0x1bff,0x1bff,0x1bff,0x1bff,0x1bff,0x1bff,0x1bff,0x1ccb,0x1ccb,0x1ccb, -0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0, -0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0,0x19e0, -0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x1acd,0x1acd,0x1acd,0x1acd, -0x1acd,0x1b5a,0x1c08,0x1acd,0x1acd,0x1acd,0x1acd,0x1c0b,0x1c08,0x1cda,0x1acd,0x1b5a,0x1acd,0x1acd,0x1acd,0x1acd, -0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x19e6,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd, -0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1acd, -0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef, -0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef,0x19ef, -0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2, -0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x19f2,0x1cdd, -0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5, -0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5,0x19f5, -0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a, -0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a,0x1a6a, -0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85, -0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85,0x1a85, -0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b, -0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b,0x1a8b, -0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9, -0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9,0x1aa9, -0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac, -0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac,0x1aac, -0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5, -0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab5,0x1ab2,0x1ab2,0x1ab2, -0x1acd,0x1acd,0x1acd,0x1c08,0x1c08,0x1b5a,0x1b5a,0x1b5a,0x1b5a,0x1b5a,0x1b5a,0x1c08,0x1c08,0x1c08,0x1b5a,0x1b5a, -0x1acd,0x1acd,0x1acd,0x1acd,0x1acd,0x1ad0,0x1ad0,0x1acd,0x1ad0,0x1ad0,0x1b5a,0x1b5d,0x1b5a,0x1b5a,0x1b5a,0x1b5a, -0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f, -0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f,0x1b0f, -0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36, -0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36,0x1b36, -0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f, -0x1b75,0x1b75,0x1b3f,0x1b75,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b3f,0x1b45,0x1b45,0x1b45, -0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51, -0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51,0x1b51, -0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea, -0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea,0x1bea, -0x1bea,0x1bea,0x1bea,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b, -0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1d8b,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6, -0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6, -0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1bf6,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17, -0x1c17,0x1ce3,0x1ce3,0x1ce3,0x1ce3,0x1d5b,0x1d5b,0x1d5b,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1c17,0x1ce3, -0x1ce3,0x1ce3,0x1ce3,0x1d5b,0x1d5b,0x1d5b,0x1e3c,0x1d5b,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a, -0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a, -0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1a,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d, -0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d, -0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c1d,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92, -0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92, -0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1c92,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3, -0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3, -0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cb3,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5, -0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5, -0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc5,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8, -0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8, -0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1cc8,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22, -0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d22,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f, -0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d1f,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61, -0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61, -0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d61,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d, -0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d, -0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d6d,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a, -0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a, -0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1d9a,0x1dac,0x1dac,0x1dac,0x1dac,0x1dac,0x1dac,0x1dac,0x1dac, -0x1dac,0x1dac,0x1db2,0x1db2,0x1db2,0x1db2,0x1dbb,0x1db2,0x1db5,0x1db5,0x1db5,0x1db5,0x1db5,0x1db5,0x1db5,0x1db5, -0x1db5,0x1db5,0x1db5,0x1db5,0x1db5,0x1db5,0x1db5,0x1db5,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd, -0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd, -0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dcd,0x1dbe,0x1dbe,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9, -0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9, -0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dd9,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd, -0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd, -0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1dfd,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00, -0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00, -0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e03,0x1e03,0x1e03,0x1e03,0x1e03,0x1e03, -0x1e03,0x1e03,0x1e03,0x1e03,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e0c,0x1e09,0x1e09, -0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09,0x1e09, -0x1e09,0x1e09,0x1e09,0x1e09,0,0,0,0 +0x156c,0x156c,0x156c,0x156c,0x156c,0x1569,0x1569,0x1569,0x156f,0x156f,0x156f,0x1689,0x1689,0x15f6,0x15f6,0x15f6, +0x15f6,0x15f6,0x15f6,0x1689,0x1689,0x1689,0x15f6,0x15f6,0x156f,0x156f,0x156f,0x156f,0x156f,0x1572,0x1572,0x156f, +0x1572,0x1572,0x15f6,0x15f9,0x15f6,0x15f6,0x15f6,0x15f6,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581, +0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581, +0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x1581,0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0x159f, +0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0x159f,0x160e,0x160e,0x159f,0x160e,0x159f,0x159f,0x159f,0x159f, +0x159f,0x159f,0x159f,0x159f,0x159f,0x15a5,0x15a5,0x15a5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5, +0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5, +0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15d5,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3, +0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3, +0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x15f3,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614, +0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614, +0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x1614,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7, +0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7, +0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686, +0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686,0x1686, +0x1689,0x1689,0x1689,0x1689,0x1689,0x1689,0x1689,0x1689,0x1689,0x173d,0x173d,0x173d,0x173d,0x17af,0x17af,0x17af, +0x1689,0x1689,0x1689,0x1689,0x1689,0x1689,0x1689,0x173d,0x173d,0x173d,0x173d,0x17af,0x17af,0x17af,0x1887,0x17af, +0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695, +0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695,0x1695, +0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e, +0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e,0x169e, +0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4, +0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4,0x16a4, +0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6, +0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6,0x16b6, +0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f, +0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f,0x171f, +0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e, +0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e,0x172e, +0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761,0x1761, +0x1761,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e,0x175e, +0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5, +0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5,0x17b5, +0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4, +0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4,0x17c4, +0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7, +0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7,0x17c7, +0x17c7,0x17c7,0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17ca,0x17f1,0x17f1,0x17f1,0x17f1, +0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1, +0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x17f1,0x1806,0x1806,0x1806,0x1806, +0x1806,0x1806,0x1806,0x1806,0x1806,0x1806,0x180c,0x180c,0x180c,0x180c,0x1815,0x180c,0x180f,0x180f,0x180f,0x180f, +0x180f,0x180f,0x180f,0x180f,0x180f,0x180f,0x180f,0x180f,0x180f,0x180f,0x180f,0x180f,0x1827,0x1827,0x1827,0x1827, +0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827, +0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1827,0x1818,0x1818,0x1833,0x1833,0x1833,0x1833, +0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833, +0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1833,0x1854,0x1854,0x1854,0x1854, +0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854, +0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1854,0x1857,0x1857,0x1857,0x1857, +0x1857,0x1857,0x1857,0x1857,0x1857,0x185a,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857, +0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0x1857,0,0,0,0 }; static const UTrie2 propsVectorsTrie={ propsVectorsTrie_index, - propsVectorsTrie_index+5488, + propsVectorsTrie_index+5236, nullptr, - 5488, - 28200, + 5236, + 27068, 0xa40, - 0x15f0, + 0x14f4, 0x0, 0x0, 0x110000, - 0x8394, + 0x7e2c, nullptr, 0, false, false, 0, nullptr }; -static const uint32_t propsVectors[7746]={ -0x67,0,0,0x67,0,0xe00000,0x67,0x80000,0x20,0x867,0,0,0xa67,0,0,0xb67, -0,0,0xd67,0,0,0xe67,0,0,0x1067,0,0,0x1167,0,0,0x1267,0, -0,0x1367,0,0,0x1467,0,0,0x1567,0,0,0x1667,0,0,0x1767,0,0, -0x1867,0,0,0x1967,0,0,0x1a67,0,0,0x1b67,0,0,0x1d67,0,0,0x1f67, -0,0,0x2067,0,0,0x2267,0,0,0x2367,0,0,0x2467,0,0,0x2567,0, -0,0x2767,0,0,0x2867,0x80000,0x20,0x2967,0,0,0x2a67,0,0x1600000,0x2b67,0,0, -0x2d67,0,0,0x3167,0x20000000,0,0x3267,0x20000000,0,0x3a67,0,0,0x3b67,0,0,0x3e67, -0,0,0x4067,0,0,0x4167,0,0,0x4467,0,0,0x4867,0,0,0x4967,0, -0,0x4a67,0,0,0x5067,0,0,0x5167,0,0,0x5467,0,0,0x5567,0,0, -0x5667,0x80000,0x20,0x5767,0,0,0x5867,0,0,0x5967,0,0,0x5b67,0,0,0x5c67, -0,0,0x5d67,0,0,0x6067,0x80000,0x20,0x6267,0,0,0x6367,0,0,0x6467,0, -0,0x6567,0,0,0x6f67,0,0,0x7067,0,0,0x7367,0x20000000,0,0x7567,0,0, -0x7667,0,0,0x7767,0,0,0x7867,0,0,0x7a67,0,0,0x7b67,0,0,0x7c67, -0,0,0x7e67,0,0,0x7f67,0,0,0x8167,0,0,0x8267,0,0,0x8467,0, -0,0x8567,0,0,0x8667,0,0,0x8767,0,0,0x8967,0,0,0x8b67,0,0, -0x8c67,0,0,0x8e67,0x20000000,0,0x8f67,0,0,0x9067,0,0,0x9167,0,0,0x9267, -0,0,0x9367,0,0,0x9567,0,0,0x9667,0,0,0x9767,0,0,0x9867,0, -0,0x9967,0,0,0x9a67,0,0,0x9c67,0,0,0x9f67,0,0,0xa167,0,0, -0xa367,0,0,0xa467,0,0,0xa567,0,0,0xa667,0,0,0xa767,0,0,0xa867, -0,0,0xa967,0,0,0xaa67,0,0xe00000,0xab67,0,0xe00000,0xac67,0,0,0xad67,0, -0,0xae67,0,0,0xaf67,0,0,0xb167,0,0,0xb267,0,0,0xb467,0,0, -0xb567,0,0,0xb767,0,0,0xb867,0,0,0xb967,0,0,0xba67,0,0,0xbc67, -0,0,0xbd67,0,0,0xbe67,0,0,0xbf67,0,0,0xc067,0,0,0xc167,0, -0,0xc367,0,0xe00000,0xc467,0,0xe00000,0xc667,0,0,0xc767,0,0,0xc867,0,0, -0xc967,0,0,0xca67,0,0,0xcc67,0,0xe00000,0xcf67,0,0xe00000,0xd067,0,0xe00000,0xd367, -0,0,0xd467,0,0,0xd567,0,0,0xd667,0,0,0xd867,0,0,0xda67,0, -0,0xdb67,0,0,0xdc67,0,0,0xdd67,0,0,0xde67,0,0,0xdf67,0,0, -0xe067,0,0,0xe167,0,0,0xe267,0,0,0xe367,0,0xe00000,0xe467,0,0,0xe567, -0,0,0xe667,0,0,0xe767,0,0,0xe867,0,0,0xe967,0,0,0xea67,0, -0,0xeb67,0,0,0xec67,0,0,0xed67,0,0,0xee67,0,0,0xef67,0,0, -0xf167,0,0,0xf367,0,0,0xf567,0,0,0xf667,0,0,0xf767,0,0,0xf867, -0,0,0xf967,0,0,0xfa67,0,0,0xfb67,0,0,0xfc67,0,0,0xfd67,0, -0,0xfe67,0,0,0x10167,0,0,0x10267,0,0,0x10367,0,0,0x10467,0,0, -0x10667,0,0,0x10767,0,0,0x10867,0,0,0x10967,0,0,0x10a67,0,0,0x10b67, -0,0,0x10c67,0,0,0x10d67,0,0,0x10e67,0,0,0x10f67,0,0,0x11067,0, -0,0x11367,0,0,0x11467,0,0,0x11567,0,0,0x11667,0,0,0x11767,0,0, -0x11867,0,0,0x11967,0,0xe00000,0x11a67,0,0,0x11b67,0,0,0x11c67,0,0,0x11d67, -0,0,0x11e67,0,0,0x11f67,0,0,0x12067,0,0,0x12167,0,0,0x12267,0, -0,0x12367,0,0,0x12467,0,0,0x12567,0,0,0x12667,0,0,0x12767,0,0, -0x12867,0,0,0x12967,0,0,0x12a67,0,0xe00000,0x12b67,0,0,0x12c67,0,0,0x12d67, -0,0,0x12f67,0,0,0x13067,0,0,0x13167,0,0,0x13267,0,0,0x13367,0, -0,0x13467,0,0,0x13567,0,0,0x13667,0,0,0x13767,0,0,0x13867,0,0, -0x13967,0,0,0x13a67,0,0,0x13b67,0,0,0x13c67,0,0,0x13d67,0,0,0x13f67, -0,0,0x14067,0,0,0x14167,0,0,0x14367,0,0,0x14467,0,0,0x14567,0, -0,0x14667,0,0,0x14767,0,0,0x14967,0,0,0x14a67,0,0,0x14b67,0,0, -0x14c67,0,0,0x14d67,0,0,0x14e67,0,0,0x14f67,0,0,0x15067,0,0,0x15167, -0,0,0x15267,0,0,0xa0067,0,0xe00000,0xa4f67,0,0xe00000,0xa5f67,0,0xe00000,0xac567,0, -0xe00000,0xad167,0,0xe00000,0xb0067,0,0xe00000,0xb1267,0,0xe00000,0xb2e67,0,0xe00000,0xb4867,0,0xe00000, -0x5000100,0,0x900020,0x5000100,0x40000001,0x4440020,0x5000100,0x40000001,0x4643020,0x5000100,0x40000001,0x4a5a040,0x5000100,0x40000001,0x516a8a0,0x5000200, -0,0x900020,0x5000200,0x4000001,0xc8c4000b,0x5000200,0x7c00100,0xc8220402,0x5000200,0x24000000,0x4200000,0x5000200,0x24000008,0x5710000,0x5000200,0x40000001, -0x5d3b020,0x5000219,0x7c00100,0xfc220401,0x5000219,0x7c00100,0xfc250401,0x5000319,0x7c00100,0xc8220402,0x5000319,0x7c00100,0xfc220401,0x5000319,0x7c00100,0xfc250400, -0x5000319,0x7c00100,0xfc250401,0x5000419,0x7c00100,0x8220400,0x5000419,0x7c00100,0x10220400,0x5000419,0x7c00100,0x10230400,0x5000419,0x7c00100,0x18220400,0x5000419, -0x7c00100,0x18230400,0x5000419,0x7c00100,0x20220400,0x5000419,0x7c00100,0x20250400,0x5000419,0x7c00100,0xc8220402,0x5000419,0x7c00100,0xc8250402,0x5000419,0x7c00100, -0xfc220401,0x5000419,0x7c00100,0xfc250400,0x5000419,0x7c00100,0xfc250401,0x5000519,0x7c00100,0x10220400,0x5000519,0x7c00100,0x10230400,0x5000519,0x7c00100,0x18220400, -0x5000519,0x7c00100,0x30220400,0x5000519,0x7c00100,0xfc220400,0x5000600,0x4000400,0x4200400,0x5000600,0x4000400,0xc8200002,0x5000600,0x7c00500,0x10220400,0x5000600, -0x7c00500,0x10230400,0x5000600,0x7c00500,0x10530400,0x5000600,0x7c00500,0xfc230400,0x5000600,0x7c00d00,0x10230400,0x5000619,0x7c00500,0xc822040f,0x5000800,0x4000010, -0xc9001401,0x5000800,0x4000400,0xc8200001,0x5000800,0x6800010,0xc8201001,0x5000800,0x7c00500,0xc8230401,0x5000807,0x7c00100,0x80220400,0x5000807,0x7c00100,0x80250400, -0x500080e,0x4000400,0xc8200002,0x500080e,0x4000400,0xf8200000,0x500080e,0x7000500,0xc8220402,0x500080e,0x7c00100,0x8250400,0x500080e,0x7c00100,0x18220400,0x500080e, -0x7c00100,0xc8220402,0x500080e,0x7c00100,0xc8250401,0x500080e,0x7c00100,0xfc220400,0x500080e,0x7c00100,0xfc220401,0x500080e,0x7c00100,0xfc250401,0x500080e,0x7c00120, -0xc8220402,0x500080e,0x7c00120,0xc8250402,0x5000908,0x4000000,0xc200000,0x5000908,0x7c00100,0x8220400,0x5000908,0x7c00100,0x8220401,0x5000908,0x7c00100,0x8250400, -0x5000908,0x7c00100,0x8250401,0x5000908,0x7c00100,0xfc220400,0x5000908,0x7c00100,0xfc220401,0x5000908,0x7c00100,0xfc250400,0x5000908,0x7c00100,0xfc250401,0x5000a03, -0x4000000,0x4200400,0x5000a03,0x4000000,0x4201000,0x5000a03,0x4000000,0x4270000,0x5000a03,0x7c00100,0xc8220402,0x5000a03,0x7c00100,0xfc220400,0x5000a03,0x7c00100, -0xfc250400,0x5000a03,0x7c00500,0xfc230400,0x5000a03,0xc000010,0x5049400,0x5000b13,0x2802500,0x20962460,0x5000b13,0x2802500,0xfc962460,0x5000b13,0x4000000,0x4200000, -0x5000b13,0x4000000,0xf8201000,0x5000b13,0x4000000,0xf8230400,0x5000b13,0x4000002,0x4400000,0x5000b13,0x4000010,0x4200000,0x5000b13,0x7c00100,0xfe633800,0x5000c00, -0x80000000,0x5329960,0x5000c02,0x2802100,0x20962460,0x5000c02,0x2802400,0x20962460,0x5000c02,0x4000000,0x4200000,0x5000c02,0x4000000,0x5329400,0x5000c02,0x4000000, -0x5329800,0x5000c02,0x4000000,0x5500000,0x5000c02,0x6800000,0xfd329800,0x5000c02,0x7c00100,0x8230400,0x5000c02,0x7c00100,0xc8230402,0x5000c02,0x7c00100,0xfc230400, -0x5000c02,0x7c00100,0xfc230401,0x5000c02,0x7c00500,0xfc230400,0x5000c02,0x7d00100,0xc0230400,0x5000f01,0x2802400,0x10962460,0x5000f0a,0x2802100,0xfc962460,0x5000f0a, -0x2802400,0xfc962460,0x5000f0a,0x2806400,0xfc962460,0x5000f0a,0x4000000,0x4200000,0x5000f0a,0x6800100,0xfc962540,0x5000f0a,0x7c00100,0xc8230401,0x5000f0a,0x7c00100, -0xfc230400,0x5000f0a,0x7c00100,0xfc230401,0x5001004,0x2802100,0xfc962460,0x5001004,0x2802400,0xfc962460,0x5001004,0x2806400,0xfc962460,0x5001004,0x4000000,0x4200000, -0x5001004,0x4000000,0x5500000,0x5001004,0x6800100,0xfc962540,0x5001004,0x6800100,0xfc962541,0x5001004,0x7c00100,0xc8230401,0x5001004,0x7c00100,0xfc230400,0x5001110, -0x2802100,0xfc962460,0x5001110,0x2802400,0xfc962460,0x5001110,0x2802900,0xfc962460,0x5001110,0x2806400,0xfc962460,0x5001110,0x6800100,0xfc962540,0x5001110,0x7c00100, -0xc8230401,0x5001110,0x7c00100,0xfc230400,0x500120f,0x2802100,0xfc962460,0x500120f,0x2802400,0xfc962460,0x500120f,0x2806400,0xfc962460,0x500120f,0x6800100,0xfc962540, -0x500120f,0x7c00100,0xfc230400,0x500131f,0x2802100,0xfc962460,0x500131f,0x2802400,0xfc962460,0x500131f,0x2806400,0xfc962460,0x500131f,0x4000000,0x4200000,0x500131f, -0x6800000,0xfd329800,0x500131f,0x6800100,0xfc962540,0x500131f,0x6800100,0xfc962541,0x500131f,0x7c00100,0xc8230401,0x500131f,0x7c00100,0xfc230400,0x5001423,0x2802100, -0xfc962460,0x5001423,0x2806400,0xfc962460,0x5001423,0x6800100,0xfc962540,0x5001423,0x6800100,0xfc962541,0x5001423,0x7c00100,0xfc230400,0x5001423,0x7c00100,0xfc230401, -0x5001524,0x2802100,0xfc962460,0x5001524,0x2802100,0xfc962461,0x5001524,0x2806400,0xfc962460,0x5001524,0x6800000,0xfd329800,0x5001524,0x6800100,0xfc962540,0x5001524, -0x7c00100,0xfc230400,0x5001615,0x2802100,0xfc962460,0x5001615,0x2806400,0xfc962460,0x5001615,0x6800100,0xfc962540,0x5001615,0x6800100,0xfc962541,0x5001615,0x7c00100, -0x8230400,0x5001615,0x7c00100,0xfc230400,0x500171a,0x2802100,0xfc962460,0x500171a,0x2806400,0xfc962460,0x500171a,0x6800000,0xfd329800,0x500171a,0x6800100,0xfc962540, -0x500171a,0x6800100,0xfc962541,0x500171a,0x7c00100,0xfc230400,0x5001900,0x4000000,0x5600000,0x5001926,0x2802100,0xfd862460,0x5001926,0x2802400,0xfd862460,0x5001926, -0x2806500,0xfd862460,0x5001926,0x4000000,0x4200000,0x5001926,0x4000010,0x4400000,0x5001926,0x6800000,0xfd329800,0x5001926,0x7800100,0xc9830142,0x5001926,0x7c00100, -0xfd830000,0x5001926,0x7c00900,0xfd830000,0x5001926,0x7e00100,0xfd830000,0x5001a18,0x2802100,0xfd862460,0x5001a18,0x2802400,0xfd862460,0x5001a18,0x6800000,0xfd329800, -0x5001a18,0x7800100,0xc9830142,0x5001a18,0x7c00100,0xc9830002,0x5001a18,0x7c00100,0xfd830000,0x5001a18,0x7c00900,0xfd830000,0x5001a18,0x7e00100,0xfd830000,0x5001d0c, -0x7c00100,0x8230400,0x5001d0c,0x7c00100,0x8250400,0x5001d0c,0x7c00100,0xfc230400,0x5001e12,0x7c00100,0xa230500,0x5001e12,0x7c00100,0xa330520,0x5001e12,0x7c80100, -0xc6330520,0x5002619,0x7c00100,0xc8220402,0x5002619,0x7c00100,0xfc220401,0x5002619,0x7c00100,0xfc250401,0x500270e,0x4000400,0xc8200001,0x500270e,0x4000400,0xc8200002, -0x500270e,0x4000400,0xc8500001,0x500270e,0x7c00100,0xc8220401,0x500270e,0x7c00100,0xc8250401,0x500270e,0x7c00100,0xfc220401,0x500270e,0x7c00100,0xfc250401,0x5002800, -0x80000,0xc4918820,0x5002800,0x80000,0xc5c18020,0x5002800,0x180000,0xc0918820,0x5002800,0x4000001,0xc8445801,0x5002800,0x4000001,0xc8445802,0x5002800,0x4000001, -0xc8c4000b,0x5002800,0x6800000,0x10201c00,0x5002800,0x6800020,0x10201c00,0x5002800,0x24000000,0x4200000,0x5002800,0x24000000,0x4810000,0x5002800,0x24000000,0x5410000, -0x5002800,0x24000000,0x5500000,0x5002800,0x24000000,0xc8200002,0x5002800,0x24000000,0xc9500002,0x5002800,0x24000002,0x4400000,0x5002800,0x24000006,0xc8c0000b,0x5002800, -0x24000008,0x5410000,0x5002800,0x24000008,0x5710000,0x5002800,0x24000020,0x5001400,0x5002800,0x24000020,0xc9500002,0x5002800,0x2c000010,0x5248000,0x5002800,0x2c000010, -0xc9248002,0x5002800,0x40000001,0x463b020,0x5002800,0x40080000,0xc4918820,0x5002801,0x2880000,0xc6a65620,0x5002801,0x2882000,0xc4962460,0x5002900,0x4000000,0xc820000e, -0x5002900,0x4000000,0xc820000f,0x5002900,0x4000020,0xc820000e,0x5002900,0x4000020,0xc820000f,0x5002900,0x4000020,0xc881000e,0x5002900,0x4000020,0xc881000f,0x5002900, -0x4000020,0xc941000e,0x5002900,0x4000020,0xc941000f,0x5002900,0x4000022,0xc820000e,0x5002900,0x4000022,0xc820000f,0x5002a00,0x4000000,0x5500000,0x5002a00,0x4000000, -0x5600000,0x5002a00,0x4000000,0xc9600002,0x5002b01,0x2000,0x14962460,0x5002b01,0x2802020,0x10962460,0x5002c00,0x4000000,0x4200000,0x5002c00,0x4000000,0xc200000, -0x5002c00,0x4000000,0xc8200002,0x5002c00,0x4000000,0xc820000f,0x5002c00,0x4000020,0x4200000,0x5002c00,0x7c00000,0x10200000,0x5002c00,0x7c00020,0x10200000,0x5002c00, -0x7c00120,0xc8220405,0x5002c00,0x7c00120,0xc8230402,0x5002c00,0x7c00120,0xc8250402,0x5002c00,0x7c00120,0xc8250405,0x5002c19,0x7c00100,0x8250400,0x5002c19,0x7c00100, -0xc8250401,0x5002d00,0x4000000,0xc8100006,0x5002d00,0x4000000,0xc8200006,0x5002d19,0x7c00100,0x18230400,0x5002d19,0x7c00100,0xc8220402,0x5002d19,0x7c00100,0xc8250402, -0x5002e00,0x24000000,0x4200000,0x5002e00,0x24000020,0x4200000,0x5002e00,0x24000020,0x4200001,0x5002f00,0x24000020,0x4200000,0x5002f00,0x24000020,0x4200001,0x5002f00, -0x24000020,0x4f00000,0x5002f00,0x24000020,0x5600000,0x5002f00,0x24000020,0xc8200002,0x5002f00,0x24000022,0x5600000,0x5003000,0x24000000,0x4200000,0x5003000,0x24000020, -0x4200000,0x5003000,0x24000020,0x4810000,0x5003000,0x24000020,0x5410000,0x5003100,0x24000000,0x4200000,0x5003200,0x24000000,0x4200000,0x5003300,0x4000000,0xc8100003, -0x5003400,0x24000000,0x4100000,0x5003400,0x24000000,0x4200000,0x5003500,0x24000000,0x4200000,0x5003600,0x24000000,0x4200000,0x5003600,0x24000020,0x4200000,0x5003700, -0x24000000,0x4200000,0x5003700,0x24000000,0x4e00000,0x5003700,0x24000000,0x6800000,0x5003700,0x24000020,0x4200000,0x5003800,0x4000000,0x4100000,0x5003800,0x24000000, -0x4200000,0x5003800,0x24000000,0x4b00000,0x5003800,0x24000000,0x4e00000,0x5003800,0x24000000,0x5710000,0x5003800,0x24000000,0x6800000,0x5005003,0x7c00100,0xc8220402, -0x5005013,0x2802500,0x30962460,0x5005013,0x4000020,0xc8200005,0x5005013,0x7c00100,0xca633801,0x5005013,0x7c00100,0xca633802,0x5005013,0x7c00100,0xca633805,0x5005019, -0x7c00100,0xc8220402,0x5005102,0x7000100,0xc8230408,0x5005102,0x7c00100,0xc8230404,0x5005102,0x7c00100,0xc8230407,0x5005102,0x7c00100,0xc8230408,0x5005102,0x7c00100, -0xc8230409,0x5005201,0x2802400,0x10962460,0x5005500,0x80000,0xc5e18820,0x5005502,0x7000100,0xc8230408,0x5005502,0x7c00100,0xc8230404,0x5005502,0x7c00100,0xc8230407, -0x5005502,0x7c00100,0xc8230408,0x5005502,0x7c00100,0xc8230409,0x5005667,0x1000,0,0x5020200,0x80004,0xc4418820,0x5020200,0x4000000,0xc8100006,0x5020200, -0x4000000,0xc810000f,0x5020200,0x4000400,0xc8100002,0x5020200,0x4000400,0xc8500002,0x5020200,0x6800c00,0xf8101000,0x5020200,0x24000000,0x4100000,0x5020200,0x24000000, -0x4200000,0x5020200,0x24000000,0x5400000,0x5020200,0x24000000,0x5500000,0x5020200,0x24000000,0x5600000,0x5020200,0x24000020,0x4100000,0x5020200,0x24000020,0x5600000, -0x5020219,0x7c00100,0xc812040f,0x5020219,0x7c00100,0xfc220400,0x5020219,0x7c00100,0xfc220401,0x5020219,0x7c00100,0xfc250400,0x5020319,0x7c00100,0xc8220402,0x5020319, -0x7c00100,0xc8250402,0x5020319,0x7c00100,0xfc220400,0x5020319,0x7c00100,0xfc220401,0x5020319,0x7c00100,0xfc250400,0x5020319,0x7d00100,0xc0220402,0x5020419,0x7c00100, -0xfc220401,0x5020519,0x7c00100,0x10220400,0x5020600,0x4000400,0x4200400,0x5020600,0x4000400,0xc8100002,0x5020600,0x7c00500,0x10130400,0x5020600,0x7c00d00,0x10130400, -0x5020701,0x2802400,0x10962460,0x5020701,0x2802400,0x10c62460,0x5020701,0x2802400,0x20962460,0x5020701,0x2802400,0xc8962461,0x5020701,0x2802400,0xfc962460,0x502080e, -0x7c00100,0xfc220400,0x502080e,0x7c00100,0xfc250400,0x5020908,0x7c00100,0xfc220400,0x5020908,0x7c00100,0xfc220401,0x5020908,0x7c00100,0xfc250400,0x5020908,0x7c00100, -0xfc250401,0x5022800,0x24000000,0x4100000,0x5022800,0x24000000,0x4200000,0x5022800,0x24000000,0x5500000,0x5022800,0x24000000,0xc8200002,0x5022800,0x24000000,0xc8f00002, -0x5022800,0x24000000,0xc8f0ac02,0x5022800,0x24000000,0xf8401000,0x5022800,0x24000002,0x4100000,0x5022800,0x24000002,0x4370000,0x5022800,0x24000002,0x4470000,0x5022800, -0x24000006,0xf8400000,0x5022800,0x24000008,0x5710000,0x5022800,0x24000008,0x5712c00,0x5022800,0x24000008,0xf9712c00,0x5022800,0x24000020,0x4100000,0x5022800,0x24000020, -0x5500000,0x5022800,0x24000020,0xc9500002,0x5022900,0x4000000,0xc810000e,0x5022900,0x4000000,0xc810000f,0x5022919,0x7c00100,0xc812040f,0x5022c00,0x4000000,0xc8100002, -0x5022c00,0x4000000,0xc810000f,0x5022c00,0x4000000,0xc9500002,0x5022c00,0x4000000,0xc9600002,0x5022c00,0x7c00120,0xc8120405,0x5022c0e,0x7c00100,0xc8250401,0x5022c19, -0x7c00100,0xc8150401,0x5022d00,0x4000000,0xc8100006,0x5022d00,0x4000000,0xc8200006,0x5022d19,0x7c00100,0xc8120402,0x5022d19,0x7c00100,0xc8150402,0x5022e00,0x24000000, -0x4200000,0x5022e00,0x24000020,0x4100000,0x5022f00,0x24000020,0x4100000,0x5022f00,0x24000020,0x4100001,0x5022f00,0x24000020,0xc8100002,0x5023000,0x24000000,0x4100000, -0x5023300,0x4000000,0xc8100002,0x5023300,0x4000000,0xc8100003,0x5023300,0x4000100,0xc8120403,0x5023300,0x4000100,0xc8150403,0x5023400,0x24000000,0x4100000,0x5023500, -0x24000000,0x4100000,0x5023600,0x24000000,0x4100000,0x5023600,0x24000020,0x4100000,0x5023700,0x24000000,0x4100000,0x5023700,0x24000000,0x4e00000,0x5023700,0x24000020, -0x4100000,0x5023800,0x4000000,0x4100000,0x5023800,0x24000000,0x4200000,0x5024e67,0,0,0x5025600,0x4000000,0x4100000,0x5042a00,0x4000000,0x5600000, -0x5045700,0x4000000,0xc820000a,0x5045700,0x4000020,0xc820000a,0x5045712,0x7c00100,0xc8e3040a,0x5045712,0x7c80100,0xc4e3040a,0x5045716,0x7c00100,0xc8e30c0a,0x5045716, -0x7c00100,0xca530c0a,0x5063d00,0x4000001,0xc8445811,0x5065700,0x4000000,0xc8810011,0x5065700,0x4000000,0xc8e00011,0x5065700,0x4000000,0xc9410011,0x5065700,0x4000000, -0xc9500011,0x5065700,0x4000000,0xc9600011,0x5065700,0x4000006,0xc8e70011,0x5065700,0x4000008,0xc8e00011,0x5065700,0x4000008,0xc8e02c11,0x5065700,0x4000010,0xc8871411, -0x5065700,0x4000010,0xc9201411,0x5065700,0x4000010,0xc9271011,0x5065700,0x4000020,0xc8e00011,0x5065700,0x4000400,0xc8e00011,0x5065700,0x4000420,0xc8e00011,0x5065700, -0x6800000,0xc8e01c11,0x5065700,0x6800040,0xc8e29811,0x5065700,0xc000010,0xc880ac11,0x5065700,0xc000010,0xc8b48011,0x5065719,0x7c00100,0xc8e20411,0x5065719,0x7c00100, -0xc8e50411,0x5065719,0x7c00140,0xc8e20411,0x5065719,0x7c00140,0xc8e50411,0x5080100,0x6800000,0xfc201c00,0x5080100,0x68000c0,0xfd329800,0x5080100,0x24000000,0x4200000, -0x5080100,0x24000000,0x4810000,0x5080100,0x24000000,0x5410000,0x5080100,0x24000000,0x5500000,0x5080100,0x24000000,0x5600000,0x5080100,0x24000000,0x5b00000,0x5080100, -0x24000000,0x6410000,0x5080100,0x24000006,0xf8d70000,0x5080100,0x24000008,0x5714000,0x5080100,0x24000008,0xf9713c00,0x5080100,0x24000010,0x5001400,0x5080100,0x24000010, -0x5071400,0x5080100,0x24000010,0xf9071000,0x5080100,0x24000020,0x4200000,0x5080100,0x24000020,0x4400000,0x5080100,0x24000020,0x5600000,0x5080100,0x24000400,0x4200000, -0x5080100,0x24000420,0x4200000,0x5080100,0x2c000010,0x4b48000,0x5080100,0x2c000010,0xf900ac00,0x5080100,0x44000001,0x5a45800,0x5080119,0x7c00100,0xfc220400,0x5080119, -0x7c00100,0xfc250400,0x5080119,0x7c001c0,0xfc220400,0x5080119,0x7c001c0,0xfc250400,0x5080200,0x4000400,0xc8200002,0x5080200,0x24000000,0x4200000,0x5080200,0x24000000, -0x5500000,0x5080200,0x24000000,0x5600000,0x5080200,0x24000020,0x4200000,0x50a1e12,0x7c00100,0xa130480,0x50a1e12,0x7c80100,0xc6130480,0x50a3000,0x24000000,0x4e00000, -0x50a3000,0x24100000,0xc0810001,0x50a3000,0x24100000,0xc1410001,0x50a3700,0x24000000,0x4200000,0x50a3d00,0x4000000,0x4e00000,0x50a3d00,0x4000000,0xc8e00002,0x50a3d00, -0x24000000,0x4e00000,0x50a3d11,0x7c00300,0x10e30000,0x50a3d11,0x7c00300,0xfce30000,0x50a3d11,0x7c00900,0xfd230400,0x50a3d12,0x2802400,0x18962460,0x50a3e14,0x7c00100, -0xfce30000,0x50a3e14,0x7c00100,0xfce30001,0x50a3e14,0x7c00100,0xfe530000,0x50a3e14,0x7c00900,0xfd230000,0x50a3e14,0x7c00900,0xfd230001,0x50a3f16,0x7c00100,0xfce30c00, -0x50a3f16,0x7c00100,0xfce30c01,0x50a3f16,0x7c00100,0xfe530c00,0x50a3f16,0x7c00900,0xfd230c00,0x50a3f16,0x7c00900,0xfd230c01,0x50a4005,0x7c00100,0xfce30400,0x50a4112, -0x7c00100,0xc8e30402,0x50a4112,0x7c80100,0xc4e30402,0x50a4400,0x4000000,0x14e00000,0x50a4412,0x4000000,0xc8e00002,0x50a4412,0x4000000,0xc8e00003,0x50a4416,0x4000000, -0xc8e00c03,0x50a4500,0x4000000,0xc8e0000d,0x50a4516,0x4000000,0xc8e00c0d,0x50a4711,0x7c40300,0xfce30000,0x50a4f11,0x7c00300,0xc8e30001,0x50a4f11,0x7c40300,0xfce30000, -0x50a5300,0x4000000,0xc8810010,0x50a5300,0x4000000,0xc8e00002,0x50a5300,0x4000000,0xc8e00010,0x50a5300,0x4000000,0xc9410010,0x50a5300,0x4000002,0xc8e70010,0x50a5300, -0x4000008,0xc8810010,0x50a5300,0x4000008,0xc9410010,0x50a5300,0x6800000,0xc8e01c02,0x50a5300,0x6800000,0xc8e01c10,0x50a5400,0x4000000,0xc881000c,0x50a5400,0x4000000, -0xc8e0000c,0x50a5400,0x4000000,0xc941000c,0x50a5400,0x4000000,0xc950000c,0x50a5400,0x4000000,0xc960000c,0x50a5400,0x4000002,0xc8e7000c,0x50a5400,0x4000010,0xc887140c, -0x50a5400,0x4000010,0xc8e7000c,0x50a5400,0x4000010,0xc920140c,0x50a5400,0x4000010,0xc927100c,0x50a5400,0x4000020,0xc8e0000c,0x50a5400,0x4000026,0xc8e7000c,0x50a5400, -0xc000010,0xc880ac0c,0x50a5400,0xc000010,0xc8b4800c,0x5400c0c,0x4000010,0x4b00000,0x5400c0c,0x4000010,0x5071400,0x5400c18,0xc000010,0x4b48000,0x5400c20,0x7c00900, -0x8230400,0x5400f4d,0xc000010,0x4448000,0x5400f62,0xc000010,0x4448000,0x5401d9a,0x4000000,0x4200000,0x5403dd7,0x4000000,0x4e00000,0x54457cc,0x4000008,0xc881000a, -0x54457cc,0x4000008,0xc941000a,0x54457cc,0x4000010,0xc887000a,0x54457cc,0x6800004,0xc920000a,0x54457cc,0xc000010,0xc884800a,0x54457d5,0x3802500,0xc926246a,0x54457d5, -0x7c00d00,0xca530c0a,0x54a3dcc,0x24000000,0x4810000,0x54a3dcc,0x24000000,0x5410000,0x54a3dcc,0x24000008,0x4810000,0x54a3dcc,0x24000008,0x5410000,0x54a3dcc,0x24000010, -0x4870000,0x54a3dcc,0x2c000010,0x4848000,0x54a3dd2,0x4000000,0x4e00000,0x54a3dd2,0x24000000,0x4e00000,0x54a3dd2,0x24000002,0x4e00000,0x54a3dd2,0x24000002,0x5200000, -0x54a3dd2,0x24000008,0x4810000,0x54a3dd2,0x24000008,0x5410000,0x54a3dd2,0x24000008,0xc810000,0x54a3dd5,0x7c00900,0x10930c00,0x54a3dd5,0x7c00900,0x10e30c00,0x54a3dd7, -0x7c00300,0xfce30000,0x54a3ed5,0x7000400,0xc9200c02,0x54a3fcc,0x6800004,0xf9200000,0x54a3fd5,0x7c00d00,0xfe530c00,0x54a42d7,0x4000000,0x4e00000,0x54a42d7,0x4000000, -0xc8e0000f,0x54a44d7,0x4000000,0xc8e00002,0x54a44d7,0x4000000,0xc8e00003,0x54a45d7,0x4000000,0xc8e00002,0x54a45d7,0x4000000,0xc8e0000d,0x5505123,0x24000000,0x14810000, -0x5505123,0x24000000,0x15410000,0x580090a,0x2802400,0x18962460,0x5800c29,0x2802100,0xfc962460,0x5800c29,0x2802500,0xfc962460,0x5800f34,0x2802400,0x8962460,0x5800f41, -0x2802400,0x8962460,0x5820700,0x2802400,0xfc962460,0x5820700,0x2802500,0xfc962460,0x58a3dd8,0x2802400,0x10962460,0x58a3ed5,0x2802400,0xfc962460,0x5c00904,0x2802400, -0x8962460,0x5c00908,0x2802400,0x18962460,0x5c00c2e,0x6800000,0xfd329800,0x5c00c32,0xc000010,0x4b48000,0x5c00f7d,0x6800000,0xfd329800,0x5c01082,0x6800000,0xfd329800, -0x5c01186,0x6800000,0xfd329800,0x5c0128a,0x6800000,0xfd329800,0x5c0148e,0x4000000,0x4200000,0x5c0148e,0x6800000,0xfd329800,0x5c01693,0x6800000,0xfd329800,0x5d05127, -0x7c00100,0xc8230408,0x8000067,0x1000,0,0x8000b13,0x2802400,0x20962460,0x8000b13,0x2802500,0x20962460,0x8001b27,0x2802100,0xc8962461,0x8001b27,0x2802100, -0xfc962460,0x8001b27,0x2802400,0x10962460,0x8001b27,0x2802400,0x20962460,0x8001b27,0x2802400,0xfc962460,0x8001b27,0x2802500,0xfc962460,0x8001b27,0x2806400,0xfc962460, -0x8001b27,0x2902100,0xc0962462,0x8001b27,0x4000000,0x4200000,0x8001b27,0x4000000,0x4400000,0x8001b27,0x4000000,0x4500000,0x8001b27,0x4000000,0x4810000,0x8001b27, -0x4000000,0x4b00000,0x8001b27,0x4000000,0x5410000,0x8001b27,0x4000000,0xc8c0000b,0x8001b27,0x4000000,0xf8400000,0x8001b27,0x4000010,0x4b00000,0x8001b27,0x4000010, -0x4c00000,0x8001b27,0x6800000,0xfd329800,0x8001b27,0x6800100,0xfc462540,0x8001b27,0x6800400,0xfc962540,0x8001b27,0x7c00100,0xc8230401,0x8001b27,0x7c00100,0xfc230400, -0x8002619,0x7c00100,0xc8220401,0x8002a00,0x4000000,0x5600000,0x8004b67,0,0x1900000,0x8004c67,0,0x1900000,0x8004d67,0,0x1900000,0x8006d67, -0x1000,0,0x8006e67,0x1000,0,0x8026d67,0,0,0x8026e67,0,0,0x80a4a12,0x7c00100,0xfdf304c1,0x80a4a12,0x7c00100, -0xfe0304e1,0x9005600,0x4000000,0x4700000,0x9022a00,0x4000000,0x5600000,0xc000419,0x7c00100,0x8220400,0xc000419,0x7c00100,0x8250400,0xc000419,0x7c00100,0x20220400, -0xc000419,0x7c00100,0x20250400,0xc000419,0x7c00100,0xfc220401,0xc000419,0x7c00100,0xfc250401,0xc000519,0x7c00100,0x10220400,0xc000600,0x4000400,0x4200400,0xc000600, -0x7c00500,0x10230400,0xc000600,0x7c00500,0xfc230400,0xc000605,0x4000400,0x4200400,0xc00080e,0x7c00100,0x8220400,0xc00080e,0x7c00100,0x10220400,0xc000908,0x2000, -0xc962460,0xc000908,0x7c00100,0xfc220400,0xc000908,0x7c00100,0xfc220401,0xc000908,0x7c00100,0xfc250400,0xc000908,0x7c00100,0xfc250401,0xc000a03,0x4000006,0xf8400400, -0xc000c02,0x4000000,0xf8200000,0xc000c02,0x7c00100,0xfc230400,0xc000d22,0x2802100,0x40962460,0xc000d22,0x2802400,0x50962460,0xc000d22,0x2802500,0x40962460,0xc000d22, -0x4000000,0x44200000,0xc000d22,0x4000010,0x44200000,0xc000d22,0x7c00100,0x40230400,0xc000d22,0xc000010,0x44248000,0xc000d22,0x80000000,0x44218560,0xc000e25,0x2802500, -0xfc962460,0xc000e25,0x7c00100,0xfc230400,0xc001821,0x2802100,0x30962460,0xc001821,0x2802100,0xfc962460,0xc001821,0x2806400,0xfc962460,0xc001821,0x4000000,0x4200000, -0xc001821,0x6800100,0x30962540,0xc001821,0x6800100,0xfc962540,0xc001821,0x6800100,0xfc962541,0xc001821,0x7c00100,0x30230400,0xc001821,0x7c00100,0xfc230400,0xc001b27, -0x2802100,0xfc962460,0xc001b27,0x2802400,0xfc962460,0xc001b27,0x4000000,0x4200000,0xc001b27,0x4000000,0x4400000,0xc001b27,0x7c00100,0xfc230400,0xc001c1c,0x2802100, -0xfd862460,0xc001c1c,0x2802400,0xfd862460,0xc001c1c,0x2806400,0xfd862460,0xc001c1c,0x4000000,0x4200000,0xc001c1c,0x6800100,0xfd862400,0xc001c1c,0x6800100,0xfd862540, -0xc001c1c,0x7c00100,0xfd830000,0xc001c1c,0x7c00100,0xfd830001,0xc001c1c,0xc000010,0x4448000,0xc001f0b,0x4000000,0x4200000,0xc001f0b,0x4000010,0x4200000,0xc001f0b, -0x4000010,0x4400000,0xc001f0b,0x6800000,0x8200000,0xc001f0b,0x7c00100,0xfc230400,0xc001f0b,0xc000010,0x4248000,0xc002006,0x7c00100,0x40250400,0xc002128,0x4000000, -0x44200000,0xc002128,0x7c00100,0x40230400,0xc002128,0xc000010,0x44248000,0xc00221d,0x4000000,0x84810000,0xc00221d,0x4000000,0x85410000,0xc00221d,0x4000001,0x84445800, -0xc00221d,0x7c00100,0x80230400,0xc002300,0x4000010,0x4400000,0xc002320,0x7c00100,0x80230400,0xc002417,0x2802100,0xfd862460,0xc002417,0x2802400,0x9862460,0xc002417, -0x2802400,0x11862460,0xc002417,0x2802400,0x19862460,0xc002417,0x2802400,0xfd862460,0xc002417,0x2806400,0xfd862460,0xc002417,0x2882000,0xc5862460,0xc002417,0x4000000, -0x4200000,0xc002417,0x4000000,0x5600000,0xc002417,0x4000000,0xc400000,0xc002417,0x4000010,0x4400000,0xc002417,0x4000010,0x5200000,0xc002417,0x6800000,0xfd329800, -0xc002417,0x6800100,0xfd862540,0xc002417,0x7c00100,0x9830000,0xc002417,0x7c00100,0xfd830000,0xc002417,0x7d00100,0xc1830000,0xc002417,0xc000010,0x4448000,0xc00251b, -0x80000,0xc4c18820,0xc00251b,0x2802100,0xa0962460,0xc00251b,0x3c02100,0x80962460,0xc00251b,0x4000000,0x84200000,0xc00251b,0x4000006,0x84500000,0xc00251b,0x4000010, -0x84400000,0xc00251b,0x4000010,0x84b70000,0xc00251b,0x4000800,0x84200000,0xc00251b,0x6800000,0x81329800,0xc00251b,0x7c00100,0x80230400,0xc00251b,0x7c00900,0x80230400, -0xc00251b,0xc000010,0x84b48000,0xc00251b,0x12882000,0xc4962460,0xc002800,0x24000000,0x4200000,0xc002800,0x2c000010,0xc9248002,0xc002a00,0x4000000,0x5600000,0xc002b01, -0x2000,0x14962460,0xc002c00,0x4000000,0x4200000,0xc002c00,0x7c00100,0xc8220405,0xc002d19,0x7c00100,0x18250400,0xc002e00,0x24000000,0x4200000,0xc003000,0x24000000, -0x4200000,0xc003100,0x24000000,0x4200000,0xc003600,0x24000000,0x4200000,0xc003700,0x24000000,0x4200000,0xc00392e,0x24000000,0x14200000,0xc005013,0x7c00100,0xca633801, -0xc005600,0,0x4918820,0xc020600,0x4000400,0x4500400,0xc020701,0x2802400,0x10962460,0xc020701,0x2802400,0x10c62460,0xc0a3a11,0x4020000,0x4e00000,0xc0a3a11, -0x4020000,0xc8e00002,0xc0a3b11,0x4020000,0xc8e00002,0xc0a3c00,0x4008000,0x4e00000,0xc0a3c00,0x4010000,0x4e00000,0xc0a3d11,0x7c00300,0xc8e30002,0xc0a4305,0x7c00100, -0xfce30400,0xc0a4611,0x7c40300,0xfce30000,0xc0a4829,0x7c00100,0x40e30400,0xc0a4829,0x7c00900,0x41230400,0xc0a4929,0x4000000,0x44e00000,0xc4025a0,0x4000010,0x84400000, -0xc4025a0,0x4000010,0x84b70000,0xc4025a0,0xc000010,0x84b48000,0xc4028c7,0x4000001,0xc8c41c0b,0xc4a3dd7,0x4000000,0x4e00000,0xc800c29,0x2802100,0xfc962460,0xcc01c98, -0x6800000,0xfd329800,0xd00080e,0x7c00120,0xc8220402,0xd00080e,0x7c00120,0xc8250402,0xd005167,0x1000,0,0xd00581e,0x4000000,0x84200000,0xd00581e,0x7c00100, -0x80230400,0xd00590d,0x7c00100,0x80230400,0xd005a09,0x7c00100,0x80220400,0xd005a09,0x7c00100,0x80250400,0xd005b00,0x4000000,0x14200000,0xd005c00,0x80000,0xc4918820, -0xd005c00,0x2802000,0x10962460,0xd005c00,0x2802400,0x10962460,0xd005c00,0x4000000,0x14200000,0xd005c00,0x4000000,0xc8200001,0xd005c01,0x2802400,0x10962460,0xd005d00, -0x4000020,0xc8200005,0xd005d00,0x6800020,0xc9329805,0xd005d00,0x7c00120,0xc8220405,0xd005d00,0x7c00120,0xc8250405,0xd006000,0x82000,0xc4962460,0xd006000,0x180000, -0xc0918820,0xd0a5e11,0x7c40300,0xfce30000,0xd0a5f11,0x7c00300,0xc8e30001,0xe000419,0x7c00100,0x20250400,0xe00080e,0x4000020,0x4200000,0xe00080e,0x7c00100,0x8220400, -0xe00080e,0x7c00100,0x8250400,0xe000908,0x7c00100,0xfc220400,0xe000908,0x7c00100,0xfc250400,0xe000c02,0x7c00100,0x8230400,0xe000e25,0x7c00100,0xfc230400,0xe001d0c, -0x7c00100,0xfc230400,0xe002800,0x80000,0xc5e18820,0xe002800,0x80020,0xc4218820,0xe002800,0x4000001,0xc8445802,0xe002800,0x24000000,0x4200000,0xe002800,0x24000000, -0xc9500002,0xe002800,0x24000020,0x4200000,0xe002800,0x2c000010,0xc9248002,0xe002919,0x7c00100,0xc822040f,0xe002a00,0x4000000,0x5600000,0xe002b01,0x2000,0x14962460, -0xe002b01,0x2802000,0x10962460,0xe002b01,0x2802020,0x10962460,0xe002c00,0x4000000,0x4200000,0xe002c00,0x4000020,0x4200000,0xe002c00,0x4000020,0xc8200005,0xe002c00, -0x7c00120,0xc8220405,0xe002c00,0x7c00120,0xc8250405,0xe002e00,0x24000020,0x4200000,0xe002f00,0x24000020,0x4200000,0xe003000,0x24000000,0x4200000,0xe003000,0x24000020, -0x4200000,0xe003500,0x24000000,0x4200000,0xe003600,0x24000020,0x4200000,0xe003700,0x24000000,0x4100000,0xe003700,0x24000000,0x4200000,0xe003800,0x24000000,0x4810000, -0xe003800,0x24000000,0x5410000,0xe005102,0x4000000,0xc9500008,0xe005502,0x7c00100,0x10230400,0xe006108,0x7c00100,0x8220400,0xe006108,0x7c00100,0x8250400,0xe00622a, -0x2802100,0x80962460,0xe00622a,0x2806400,0x80962460,0xe00622a,0x7c00100,0x80230400,0xe00632b,0x2802100,0x80962460,0xe00632b,0x2806400,0x80962460,0xe00632b,0x7c00100, -0x80230400,0xe00642c,0x2802100,0x80962460,0xe00642c,0x7c00100,0x80230400,0xe00652d,0x2802100,0x80962460,0xe00652d,0x7c00100,0x80230400,0xe006600,0x24000020,0x4200000, -0xe006700,0x24000020,0x4200000,0xe006800,0x24000020,0x4200000,0xe006900,0x24000020,0x4200000,0xe006900,0x24000020,0x4810000,0xe006900,0x24000020,0x5410000,0xe006a00, -0x24000020,0x4200000,0xe006a00,0x24000020,0xc8200001,0xe006a00,0x24000020,0xc8200002,0xe020701,0x2882000,0xc4c62460,0xe023300,0x4000000,0x14100000,0xe026c01,0x12882000, -0xc4962460,0xe065700,0x4000000,0xc8810011,0xe065700,0x4000000,0xc9410011,0xe086600,0x24000020,0x4810000,0xe086600,0x24000020,0x5410000,0xe086900,0x24000020,0x4810000, -0xe086900,0x24000020,0x5410000,0xe0a3600,0x24000020,0x4200000,0xe0a3d11,0x7c00100,0x11230400,0xe0a3e14,0x7c00100,0xc8e30010,0xe0a3e14,0x7c00100,0xfe530000,0xe0a3f16, -0x7c00100,0xc8e30c10,0xe0a4400,0x4000000,0xc8e00003,0xe0a4929,0x4000000,0x44e00000,0xe0a4f11,0x7c00300,0xc8e30001,0xe0a6b16,0x7c00100,0xa530c00,0xe40639c,0xc000010, -0x84448000,0xe4a3dda,0x4000000,0x4e00000,0xe4a3dda,0x7c00100,0x11230400,0xe4a3fd5,0x4000002,0xf9200c00,0xe4a53d2,0x24000000,0x14e00000,0xe820701,0x2802100,0x8962460, -0x10000419,0x7c00100,0x10220400,0x10000419,0x7c00100,0x20220400,0x10000519,0x7c00100,0x10220400,0x10000600,0x4000400,0x4200400,0x1000080e,0x7c00100,0x8220400,0x1000080e, -0x7c00100,0x8250400,0x1000080e,0x7c00100,0xc8250402,0x10000c02,0x2802100,0x20962460,0x10000c02,0x2802400,0x20962460,0x10000c02,0x2802500,0x20962460,0x10000c02,0x4000000, -0x4200000,0x10000c02,0x4000000,0x5071400,0x10000c02,0x7c00100,0xfc230400,0x10000c02,0x80000000,0x5329960,0x10000d22,0x7c00100,0x40230400,0x10000f0a,0x7c00100,0xfc230400, -0x10001004,0x7c00100,0xfc230400,0x10001110,0x2802100,0xfc962460,0x10001110,0x6800100,0xfc962540,0x1000120f,0x2802100,0xfc962460,0x1000120f,0x4000000,0x5600000,0x1000120f, -0x7c00100,0xfc230400,0x1000131f,0x7c00100,0xfc230400,0x10001423,0x4000000,0x4200000,0x10001423,0x4000000,0x5600000,0x10001615,0x2802400,0xfc962460,0x10001615,0x7c00100, -0xfc230400,0x10002417,0x2802400,0x19862460,0x10002417,0x4000000,0x4200000,0x10002800,0x6800000,0x20201c00,0x10002800,0x24000002,0x4200000,0x10002c00,0x4000000,0xc8200002, -0x10003000,0x24000000,0x4200000,0x10003000,0x24000020,0x4200000,0x10003700,0x24000000,0x4200000,0x10005a09,0x7c00100,0x80220400,0x10005a09,0x7c00100,0x80250400,0x10005d00, -0x7c00120,0xc8220405,0x10006f30,0x2802100,0x40962460,0x10006f30,0x2802400,0x40962460,0x10006f30,0x4000000,0x44200000,0x10006f30,0x6800000,0x41329800,0x10006f30,0x6800100, -0x40962540,0x10006f30,0x7c00100,0x40230400,0x10006f30,0xc000010,0x44b48000,0x10007034,0x7c00100,0x41830000,0x10007117,0x4000000,0x4200000,0x10007208,0x7c00100,0x10220400, -0x1000720e,0x7c00100,0x10220400,0x1000720e,0x7c00500,0xc822040e,0x1000720e,0x7c00500,0xc822040f,0x10007219,0x7c00100,0x10220400,0x10007219,0x7c00500,0x10220400,0x10007219, -0x7c00500,0xc822040e,0x10007219,0x7c00500,0xc822040f,0x10007300,0x24000000,0x4200000,0x10007400,0x4000000,0x14200000,0x10007531,0x7c00100,0x80230400,0x10007631,0x7c00100, -0x80230400,0x10007835,0x4000010,0x84400000,0x10007835,0x7c00100,0x80230400,0x10007933,0x7c00100,0x80230400,0x10007a32,0x6800000,0x81329800,0x10007a32,0x7c00100,0x80230400, -0x10007b2f,0x7c00100,0x80230400,0x10007c00,0x4000000,0x14200000,0x10020701,0x2802400,0x10962460,0x10020701,0x2802400,0x10c62460,0x10023300,0x4000000,0x14200000,0x10027d01, -0x12882000,0xc4962460,0x100a3700,0x24000000,0x4200000,0x100a3700,0x24000000,0x4e00000,0x100a4400,0x4000000,0xc8e0000d,0x100a4412,0x4000000,0xc8e00002,0x100a4412,0x4000000, -0xc8e00003,0x100a4500,0x4000000,0xc8e0000d,0x100a5300,0x4000000,0xc8810010,0x100a5300,0x4000000,0xc9410010,0x10507729,0x4000000,0x84200000,0x1050772c,0x4000000,0x84400000, -0x1050772f,0x4000000,0x84200000,0x1050772f,0x4000000,0x84400000,0x10c0148e,0x4000000,0x4200000,0x10d05127,0x4000000,0x14200000,0x11000419,0x7c00100,0x20220400,0x11000419, -0x7c00100,0x20250400,0x1100080e,0x7c00100,0xfc220400,0x1100080e,0x7c00100,0xfc250400,0x11000908,0x7c00100,0xfc220400,0x11000908,0x7c00100,0xfc250400,0x11000b13,0x2802000, -0x28962460,0x11000b13,0x2802100,0x28962460,0x11000b13,0x2802100,0x30962460,0x11000b13,0x4000000,0xcb00000,0x11000c02,0x2802100,0x20962460,0x11000c02,0x4000000,0x5500000, -0x11000c02,0xc000010,0x4b48000,0x11000f0a,0x7c00100,0xfc230400,0x11001004,0x7c00100,0xfc230400,0x11001423,0x7c00100,0xfc230400,0x11001b27,0x4000000,0x4500000,0x11001d0c, -0x7c00100,0xc822040f,0x11001d0c,0x7c00100,0xfc230400,0x11001f0b,0x2802400,0xfc962460,0x11001f0b,0x4000000,0x4200000,0x11001f0b,0x7c00100,0xfc230400,0x11002800,0x24000000, -0x4200000,0x11002800,0x24000000,0xc200000,0x11002800,0x24000000,0xc400000,0x11002919,0x7c00100,0xc822040e,0x11002a00,0x4000000,0x5600000,0x11002b01,0x2802020,0x10962460, -0x11002c00,0x4000000,0x4200000,0x11002c00,0x7c00120,0xc8220405,0x11003000,0x24000000,0x4200000,0x11003700,0x24000000,0x4200000,0x11003700,0x24000000,0x4e00000,0x11005d00, -0x7c00120,0xc8220405,0x11006600,0x24000020,0x4200000,0x11006600,0x24000020,0x4810000,0x11006600,0x24000020,0x5410000,0x11007208,0x7c00100,0xc822040f,0x11007219,0x7c00100, -0x10220400,0x11007300,0x24000000,0x4200000,0x11007e0e,0x2802000,0x18962460,0x11007e0e,0x4000000,0xc200000,0x11007f0e,0x4000000,0x4200000,0x11007f0e,0x7c00100,0x8230400, -0x11008002,0x7c00100,0xfc230400,0x11008137,0x2802100,0x80962460,0x11008137,0x4000000,0x84200000,0x11008137,0x6800100,0x80962540,0x11008137,0x7c00100,0x80230400,0x11008301, -0x2802000,0x18962460,0x11008407,0x4000000,0x84200000,0x11008407,0x4000000,0x84400000,0x11008407,0x4000000,0x84b00000,0x11008407,0x7c00100,0x80220400,0x11008407,0x7c00100, -0x80250400,0x1100850b,0x7c00100,0xfc230400,0x1100860b,0x4000000,0x4200000,0x1100860b,0x7c00100,0xfc230400,0x1100870c,0x7c00100,0x8220400,0x11008838,0x7c00100,0x80220400, -0x11008838,0x7c00100,0x80250400,0x11008939,0x2802100,0x80962460,0x11008939,0x2802400,0x80962460,0x11008939,0x2806400,0x80962460,0x11008939,0x4000000,0x84200000,0x11008939, -0x4000000,0x84400000,0x11008939,0x7c00100,0x80230400,0x11008939,0xc000010,0x84448000,0x11008a00,0x4000400,0x14200400,0x11008b3b,0x4000000,0x45800000,0x11008b3b,0x6800000, -0x41329800,0x11008b3b,0x7c00100,0x41830000,0x11008b3b,0x7e00100,0x41830000,0x11008c3d,0x4000010,0x84400000,0x11008c3d,0x7c00100,0x80230400,0x11008d0e,0x7c00100,0xc822040f, -0x11008d19,0x7c00100,0x10220400,0x11008d19,0x7c00100,0xc822040f,0x11008e00,0x24000000,0x5710000,0x11008e00,0x24000000,0xc200000,0x11008e00,0x24000000,0xc400000,0x11008e00, -0x24000000,0x1d710000,0x11008e00,0x24000006,0x4400000,0x11008f3a,0x2802100,0x40962460,0x11008f3a,0x2806400,0x40962460,0x11008f3a,0x4000000,0x44200000,0x11008f3a,0x6800100, -0x40962540,0x11008f3a,0x7c00100,0x40230400,0x1100903c,0x7c00100,0x40230400,0x1100903c,0x7c00100,0xc823040f,0x11020701,0x2802000,0x10962460,0x11020701,0x2802000,0x10c62460, -0x11020701,0x2802000,0x20962460,0x110a3700,0x24000000,0x4200000,0x110a3700,0x24000000,0x4e00000,0x110a4412,0x4000000,0xc8e00003,0x110a4711,0x7c40300,0xfce30000,0x110a4f11, -0x7c00300,0xc8e30001,0x110a9100,0x4000000,0xc8800010,0x110a9100,0x4000000,0xc8810010,0x110a9100,0x4000000,0xc8870010,0x110a9100,0x4000000,0xc8b00010,0x110a9100,0x4000000, -0xc8f00010,0x110a9100,0x4000000,0xc9001410,0x110a9100,0x4000000,0xc9071010,0x110a9100,0x4000000,0xc9071410,0x110a9100,0x4000000,0xc9410010,0x11408add,0x4000400,0xc200000, -0x114a82d7,0x4000000,0x4e00000,0x11808300,0x2802000,0x18962460,0x11c0148e,0x6800000,0xfd329800,0x14000419,0x7c00100,0x20220400,0x14000419,0x7c00100,0x20250400,0x1400080e, -0x7c00100,0xfc220400,0x14000908,0x7c00100,0xfc220400,0x14000908,0x7c00100,0xfc250400,0x14000b13,0x2802500,0x20962460,0x14000f0a,0x7c00100,0xfc230400,0x14001615,0x2802100, -0xfc962460,0x14001615,0x7c00100,0xfc230400,0x14002b01,0x2802020,0x10962460,0x14002c00,0x4000000,0x4200000,0x14002c19,0x7c00100,0x8220400,0x14002d19,0x7c00100,0x8220400, -0x14003000,0x24000000,0x4200000,0x14003000,0x24000020,0x4200000,0x14003700,0x24000000,0x4200000,0x14005d00,0x7c00120,0xc8220405,0x14005d00,0x7c00120,0xc8250405,0x14006108, -0x7c00100,0xfc220400,0x14006108,0x7c00100,0xfc250400,0x14006600,0x24000020,0x4200000,0x14007300,0x24000000,0x4200000,0x14008301,0x2802400,0x10962460,0x14008a00,0x7c00500, -0xfc230400,0x14009257,0x2802400,0x40962460,0x14009257,0x4000000,0x44200000,0x14009257,0x4000010,0x45071400,0x14009257,0x6800000,0x41329800,0x14009257,0x7c00100,0x40230400, -0x14009257,0x7c00100,0x48230400,0x14009257,0x7c00500,0x40230400,0x14009257,0x7c00900,0x48230400,0x14009257,0xc000010,0x44b48000,0x1400933e,0x2802100,0x40962460,0x1400933e, -0x2802400,0x40962460,0x1400933e,0x2802400,0x50962460,0x1400933e,0x2806400,0x42f62460,0x1400933e,0x4000000,0x44400000,0x1400933e,0x4000000,0x44e00000,0x1400933e,0x4000010, -0x44400000,0x1400933e,0x6800000,0x42d29800,0x1400933e,0x6800100,0x40962540,0x1400933e,0x6800100,0x40962541,0x1400933e,0x7c00100,0x42b30400,0x1400933e,0x7c00100,0x42b30401, -0x1400933e,0xc000010,0x44448000,0x14009419,0x7c00100,0x8220400,0x14009419,0x7c00100,0x8250400,0x14009419,0x7c00100,0x10220400,0x14009419,0x7c00100,0x10250400,0x14009419, -0x7c00100,0x20220400,0x14009419,0x7c00100,0x20250400,0x14009500,0x4000400,0x4200400,0x1400965a,0x4000000,0x84500000,0x1400965a,0x7c00100,0x80230400,0x1400965a,0xc000010, -0x84b48000,0x1400975b,0x4000000,0x84200000,0x1400975b,0x4000010,0x84400000,0x1400975b,0x7c00100,0x80230400,0x14009865,0x7c00100,0x80230400,0x14009965,0x4000010,0x84400000, -0x14009965,0x7c00100,0x80230400,0x14409ad7,0x4000000,0x4200000,0x1500080e,0x7c00100,0x8220400,0x1500080e,0x7c00100,0x8250400,0x1500080e,0x7c00100,0x10250400,0x15000c02, -0x2802100,0x20962460,0x15000c02,0x4000000,0x5500000,0x15000c02,0x4000020,0x4200000,0x15000c02,0x7c00100,0xfc230400,0x15000f0a,0x7c00100,0xfc230400,0x15000f0a,0x7c00500, -0xfc230400,0x15001110,0x2802100,0x20962460,0x1500131f,0x2802100,0x20962460,0x15001423,0x7c00100,0xfc230400,0x15001524,0x2802100,0x20962460,0x15001524,0x4000000,0x4200000, -0x15001524,0x7c00100,0x8230400,0x15001524,0x7c00100,0xfc230400,0x1500171a,0x2802100,0x20962460,0x1500171a,0x4000000,0x4200000,0x1500171a,0x4000000,0x5500000,0x1500171a, -0x7c00100,0xfc230400,0x15001b27,0x4000000,0x4200000,0x15001b27,0x4000000,0x4400000,0x15001b27,0x4000000,0x4500000,0x15001b27,0x7c00100,0xfc230400,0x15001c1c,0x2802100, -0xfd862460,0x15001c1c,0x2802500,0xfd862460,0x15001c1c,0x2806400,0xfd862460,0x15001c1c,0x4000000,0x5800000,0x15001c1c,0x6800000,0xfd329800,0x15001c1c,0x6800100,0xfd862400, -0x15001c1c,0x6800100,0xfd862540,0x15001c1c,0x6800500,0xfd862400,0x15001c1c,0x7c00100,0xfd830000,0x1500251b,0x7c00100,0x80230400,0x15002619,0x7c00100,0x10220400,0x15002619, -0x7c00100,0x10250400,0x15002619,0x7c00100,0xfc250400,0x15002800,0x80020,0xc4218820,0x15002c00,0x4000000,0xc200000,0x15002d19,0x7c00100,0x8230400,0x15003700,0x24000000, -0x4200000,0x15003700,0x24000000,0x4e00000,0x15005201,0x2802400,0x10962460,0x15005c00,0x4000000,0x14200000,0x15006108,0x7c00100,0xfc220400,0x15006108,0x7c00100,0xfc250400, -0x15006600,0x24000020,0x4200000,0x15006600,0x24000020,0x4810000,0x15006600,0x24000020,0x5410000,0x15007300,0x24000000,0x4200000,0x15007300,0x24000020,0x4200000,0x15008002, -0x7c00100,0xfc230400,0x15008301,0x2802000,0x10962460,0x15008301,0x2802000,0x18962460,0x15008301,0x2802100,0x18962460,0x15008301,0x2802400,0x10962460,0x15008301,0x2802400, -0x10c62460,0x15008301,0x2802400,0x18962460,0x15008a00,0x7c00500,0xfc230400,0x15008e00,0x24000000,0x4200000,0x15008e00,0x24000000,0x4400000,0x15008e00,0x24000000,0x4810000, -0x15008e00,0x24000000,0x5400000,0x15008e00,0x24000000,0x5410000,0x15008e00,0x24000000,0x5710000,0x15008e00,0x24000000,0xc400000,0x15008e00,0x24000000,0x84400000,0x15008e00, -0x24000002,0x4200000,0x15008e00,0x24000500,0xc230400,0x15008e00,0x2c000010,0xcb48000,0x15009419,0x7c00100,0x8220400,0x15009419,0x7c00100,0x8250400,0x15009419,0x7c00100, -0x10220400,0x15009419,0x7c00100,0xc822040e,0x15009419,0x7c00100,0xc822040f,0x15009500,0x4000400,0x4200400,0x15009500,0x7c00500,0xfc230400,0x15009519,0x7c00100,0x8220400, -0x15009519,0x7c00100,0x8230400,0x15009519,0x7c00100,0x8250400,0x15009519,0x7c00100,0x18220400,0x15009519,0x7c00100,0x18250400,0x15009519,0x7c00100,0x20220400,0x15009519, -0x7c00100,0x20250400,0x15009519,0x7c00100,0xc822040f,0x15009b71,0x2802100,0x40962460,0x15009b71,0x2806400,0x40962460,0x15009b71,0x6800000,0x41329800,0x15009b71,0x6800100, -0x40962540,0x15009b71,0x7c00100,0x40230400,0x15009c52,0x2802100,0x40962460,0x15009c52,0x2802400,0x40962460,0x15009c52,0x2802d00,0x40962460,0x15009c52,0x4000010,0x44400000, -0x15009c52,0x6800000,0x41329800,0x15009c52,0x6800100,0x40962540,0x15009c52,0x7c00100,0x40230400,0x15009c52,0xc000010,0x44448000,0x15009d6d,0x6800000,0x41329800,0x15009d6d, -0x7c00100,0x40230400,0x15009d6d,0x7c00500,0x40230400,0x15009d6d,0x7c00d00,0x40230400,0x15009d6d,0xc000010,0x44448000,0x15009e08,0x2802100,0x8962460,0x15009f63,0x4000010, -0x44400000,0x15009f63,0x6800000,0x41329800,0x15009f63,0x7c00100,0x40230400,0x15009f63,0x7c00100,0x48230400,0x15009f63,0x7c00900,0x40230400,0x15009f63,0xc000010,0x44448000, -0x15009f63,0xc000010,0x44b48000,0x1500a008,0x2000,0xc962460,0x1500a008,0x2802400,0x20962460,0x1500a008,0x4000000,0x4200000,0x1500a008,0x4000000,0xc200000,0x1500a008, -0x7c00100,0x8220400,0x1500a008,0x7c00100,0x8230400,0x1500a008,0x7c00100,0x8250400,0x1500a008,0x7c00500,0xfc230400,0x1500a16f,0x2806400,0x40962460,0x1500a16f,0x6800000, -0x41329800,0x1500a16f,0x6800100,0x40962540,0x1500a16f,0x7c00100,0x40230400,0x1500a16f,0xc000010,0x44448000,0x1500a24f,0x2802100,0x40962460,0x1500a24f,0x2802400,0x40962460, -0x1500a24f,0x6800000,0x41329800,0x1500a24f,0x7c00100,0x40230400,0x1500a24f,0xc000010,0x44448000,0x1500a36e,0x2802100,0x80962460,0x1500a36e,0x2806400,0x80962460,0x1500a36e, -0x4000000,0x84200000,0x1500a36e,0x6800100,0x80962540,0x1500a36e,0x7c00100,0x80230400,0x1500a442,0x2802100,0x40962460,0x1500a442,0x4000000,0x44e00000,0x1500a442,0x6800000, -0x42d29800,0x1500a442,0x6800100,0x40962540,0x1500a442,0x7c00100,0x40430400,0x1500a442,0x7c00100,0x42d30400,0x1500a442,0xc000010,0x44448000,0x1500a500,0x4000000,0x4200000, -0x1500a600,0x4000000,0xc200000,0x1500a601,0x2802000,0x8962460,0x1500a76b,0x7c00100,0x80230400,0x1500a868,0x7c00100,0x80230400,0x1500a96c,0x4000000,0x84200000,0x1500a96c, -0x7c00100,0x80230400,0x1500aa00,0x4000000,0x4e00000,0x1500ab00,0x4000000,0x4e00000,0x15086600,0x24000020,0x4810000,0x15086600,0x24000020,0x5410000,0x150a4005,0x7c00100, -0xfce30400,0x150a4711,0x7c40300,0xfce30000,0x150a7300,0x24000000,0x4200000,0x150aaa00,0x4000000,0x4e00000,0x154a82d7,0x4000000,0x4e00000,0x1550a21e,0x4000400,0x4400000, -0x15802bc9,0x2802000,0x10962460,0x15c00908,0x2802400,0x18962460,0x15c0a008,0x2802400,0x20962460,0x16000f0a,0x2802100,0x20962460,0x16000f0a,0x6800100,0x8962540,0x16000f0a, -0x7c00100,0xfc230400,0x16001004,0x4000000,0x5600000,0x16001b00,0x4000000,0x4200000,0x16001c1c,0x2802100,0xfd862460,0x16001c1c,0x6800100,0xfd862400,0x16001c1c,0x6800500, -0xfd862400,0x16001e12,0x7c00100,0xa230500,0x16001e12,0x7c00100,0xa330520,0x16002128,0x4000002,0x44400000,0x16002128,0x7c00100,0x40230400,0x16002a00,0x4000000,0x5500000, -0x16002a00,0x4000000,0x5600000,0x16002d00,0x4000000,0xc8200006,0x16003000,0x24000000,0x4200000,0x16006108,0x7c00100,0xfc220400,0x16006108,0x7c00100,0xfc250400,0x16008301, -0x2802400,0x10962460,0x16008407,0x2802400,0x80962460,0x16008407,0x2802400,0x90962460,0x16008407,0x7c00100,0x80220400,0x16008407,0x7c00100,0x80250400,0x16008b3b,0x6800000, -0x41800000,0x16008b3b,0x7c00100,0x41830000,0x16008e00,0x24000000,0xc400000,0x16009419,0x7c00100,0x8250400,0x1600975b,0x4000000,0x84200000,0x1600ac7e,0x2802000,0x80962460, -0x1600ac7e,0x2802100,0x80962460,0x1600ac7e,0x2802400,0x80962460,0x1600ac7e,0x4000010,0x84200000,0x1600ac7e,0x7c00100,0x80230400,0x1600ac7e,0xc000010,0x84248000,0x1600ad28, -0x7c00100,0x40230400,0x1600ae6a,0x2802100,0x41862460,0x1600ae6a,0x2802400,0x40962460,0x1600ae6a,0x2802400,0x41862460,0x1600ae6a,0x2806400,0x41862460,0x1600ae6a,0x4000000, -0x45800000,0x1600ae6a,0x6800000,0x41329800,0x1600ae6a,0x6800100,0x41862400,0x1600ae6a,0x6800100,0x41862540,0x1600ae6a,0x7c00100,0x41830000,0x1600ae6a,0x7c00900,0x41830000, -0x1600ae6a,0xc000010,0x45848000,0x1600b083,0x4000010,0x44400000,0x1600b083,0x7c00100,0x40230400,0x1600b083,0xc000010,0x44448000,0x1600b182,0x2802400,0x40962460,0x1600b182, -0x4000000,0x44200000,0x1600b182,0x4000010,0x44400000,0x1600b182,0x7c00100,0x40230400,0x1600b182,0xc000010,0x44448000,0x1600b30a,0x2802400,0x8962460,0x1600b30a,0x4000000, -0xc200000,0x1600b30a,0x7c00100,0x8230400,0x1600b54e,0x2802100,0x40962460,0x1600b54e,0x2802400,0x40962460,0x1600b54e,0x2806400,0x42f62460,0x1600b54e,0x4000000,0x44e00000, -0x1600b54e,0x4000010,0x44400000,0x1600b54e,0x6800000,0x42d29800,0x1600b54e,0x6800100,0x40962540,0x1600b54e,0x7c00100,0x42b30400,0x1600b54e,0xc000010,0x44448000,0x1600b61c, -0x4000000,0x5800000,0x1600b61c,0x6800500,0xfd862400,0x1600b61c,0x7c00100,0xfd830000,0x1600b61c,0x7c00900,0xfd830000,0x1600b77f,0x2802100,0x41862460,0x1600b77f,0x2802400, -0x41862460,0x1600b77f,0x4000000,0x45800000,0x1600b77f,0x4000010,0x45800000,0x1600b77f,0x7c00100,0x41830000,0x1600b77f,0x7c00500,0x41830000,0x1600b77f,0x7c00900,0x41830000, -0x1600b77f,0x7e00100,0x41830000,0x1600b873,0x2802100,0x40962460,0x1600b873,0x2806400,0x40962460,0x1600b873,0x6800000,0x41329800,0x1600b873,0x6800100,0x40962540,0x1600b873, -0x6800400,0x40962540,0x1600b873,0x7c00100,0x40230400,0x1600b873,0xc000010,0x44448000,0x1600b912,0x7c00100,0xa230500,0x1600b912,0x7c00100,0xa330520,0x1600ba74,0x4000000, -0x84200000,0x1600ba74,0x4000010,0x84400000,0x1600ba74,0x7c00100,0x80230400,0x1600bb85,0x4000000,0x84200000,0x1600bb85,0x7c00100,0x80230400,0x1600bc75,0x4000000,0x84400000, -0x1600bc75,0x4000010,0x84400000,0x1600bc75,0x7c00100,0x80230400,0x1600bd7d,0x4000000,0x84200000,0x1600bd7d,0x7c00100,0x80230400,0x1600be7a,0x4000000,0x84200000,0x1600be7a, -0x7c00100,0x80230400,0x1600bf58,0x7c00100,0x80230400,0x1600c002,0x4000000,0x4200000,0x1600c178,0x2802100,0x80962460,0x1600c178,0x2802400,0x80962460,0x1600c178,0x2806400, -0x80962460,0x1600c178,0x4000000,0x84200000,0x1600c178,0x6800100,0x80962540,0x1600c178,0x7c00100,0x80230400,0x1600c178,0x7c00100,0x80230401,0x1600c178,0xc000010,0x84448000, -0x1600c178,0x80000000,0x85329960,0x1600c247,0x7c00100,0x80230400,0x1600c247,0x7c00100,0x80830400,0x1600c247,0x7c00100,0x81430400,0x1600c300,0x4000000,0xc8200003,0x16022d00, -0x4000000,0xc8100006,0x16023700,0x24000000,0x4100000,0x16023700,0x24000000,0x4e00000,0x16023700,0x24000000,0x6800000,0x16024400,0x4000000,0x4100000,0x16027300,0x24000000, -0x4100000,0x1602c300,0x4000000,0x4100000,0x1602c300,0x4000000,0xc8100002,0x1602c300,0x4000000,0xc8100003,0x1602c300,0x4000000,0xc810000d,0x1602c300,0x4000100,0x4150400, -0x1602c300,0x4000100,0xc815040d,0x160a1e12,0x7c00100,0xa130480,0x160a3700,0x24000000,0x4e00000,0x160a3800,0x24000000,0x4100000,0x160a4711,0x7c40300,0xfce30000,0x160a4f11, -0x7c00300,0xc8e30001,0x160a7300,0x24000000,0x4100000,0x160ab412,0x7c00100,0xa130480,0x160ac400,0x4000000,0xc8e00002,0x160ac400,0x4000000,0xc8e0000d,0x160ac414,0x4000000, -0xc8e0000d,0x160ac511,0x7c40300,0xfce30000,0x1640afa2,0x7c00100,0x8230400,0x1640afa7,0x4000400,0xc200000,0x1640afa9,0x6800400,0x8962540,0x1640afa9,0x7c00100,0x8230400, -0x1640afb3,0x7c00100,0x8230400,0x1640afb5,0x7c00100,0x8230400,0x1640b2df,0x4000000,0x4200000,0x1640b2ef,0x4000000,0x4200000,0x1640b2fe,0x4000000,0x4200000,0x164a44d7, -0x4000000,0xc8e00003,0x1650b209,0x4000000,0x5500000,0x1650b521,0x7c00900,0x60430400,0x1680afa2,0x2802400,0x8962460,0x1680afa3,0x2802400,0x8962460,0x1680afa9,0x2802400, -0x8962460,0x1680afab,0x2802400,0x8962460,0x1680afad,0x2802400,0x8962460,0x16d0b318,0x2802400,0x8962460,0x16d0b31c,0x7c00100,0x8230400,0x18000c02,0x2802100,0x20962460, -0x18000c02,0x7c00100,0xfc230400,0x18000f0a,0x2802100,0xfc962460,0x18000f0a,0x6800100,0xfc962540,0x18000f0a,0x7c00100,0xfc230400,0x1800131f,0x4000000,0x4200000,0x1800171a, -0x7c00100,0xfc230400,0x1800171a,0x7c00100,0xfc230560,0x18001b27,0x2802100,0xfc962460,0x18001b27,0x4000000,0x4c00000,0x18001b27,0x7c00100,0xfc230400,0x18001f0b,0x2802400, -0xfc962460,0x18002919,0x7c00100,0xc822040e,0x18002a00,0x4000000,0x5600000,0x18003000,0x24000000,0x4200000,0x18003000,0x24000000,0x4e00000,0x18003700,0x24000000,0x4200000, -0x18003800,0x24000000,0x5710000,0x18005102,0x4000000,0x14200000,0x18006108,0x7c00100,0xfc220400,0x18006108,0x7c00100,0xfc250400,0x18006600,0x24000020,0x4200000,0x18008301, -0x2802400,0x10c62460,0x1800903c,0x2806000,0x40962460,0x1800903c,0x4000000,0x44400000,0x18009519,0x7c00100,0x8220400,0x18009519,0x7c00100,0x8250400,0x18009519,0x7c00100, -0x10220400,0x18009519,0x7c00100,0xfc250400,0x1800a008,0x7c00100,0x8220400,0x1800a008,0x7c00100,0x8250400,0x1800c300,0x4000000,0x6703580,0x1800c654,0x2802000,0x40962460, -0x1800c654,0x4000010,0x44200000,0x1800c654,0x7c00100,0x40230400,0x1800c73f,0x2802100,0x40962460,0x1800c73f,0x2802400,0x40962460,0x1800c73f,0x2806400,0x42e62460,0x1800c73f, -0x4000000,0x44200000,0x1800c73f,0x6800100,0x40962540,0x1800c73f,0x7c00100,0x42d30400,0x1800c80b,0x7c00100,0xfc230400,0x1800c941,0x2802100,0x80962460,0x1800c941,0x2806400, -0x82f62460,0x1800c941,0x4000000,0x84e00000,0x1800c941,0x4000010,0x84e00000,0x1800c941,0x6800000,0x82d29800,0x1800c941,0x6800100,0x80962540,0x1800c941,0x7c00100,0x82b30400, -0x1800c941,0x7c00100,0x82c30400,0x1800c941,0xc000010,0x84448000,0x1800ca82,0x7c00100,0x40230400,0x1800cc00,0x4000000,0x4e00000,0x1800d000,0x4000000,0x4200000,0x1802c300, -0x4000000,0x4100000,0x1802c300,0x4000000,0xc810000d,0x1802c300,0x4000100,0x4150400,0x1802c300,0x4000100,0xc815040d,0x180a3000,0x24000000,0x4200000,0x180a3000,0x24000000, -0x4e00000,0x180a3700,0x24000000,0x4200000,0x180a3800,0x24000000,0x4200000,0x180a3800,0x24000000,0x6800000,0x180a4305,0x7c00100,0xfce30400,0x180ac300,0x4000000,0x4100000, -0x180ac400,0x4000000,0xc8e0000d,0x180acb14,0x7c00100,0x8e30000,0x180acb16,0x7c00100,0x8e30c00,0x180acc00,0x4000000,0x4e00000,0x180acd00,0x4000000,0x4200000,0x180acd00, -0x4000000,0x4e00000,0x180acd00,0x4000000,0x6800000,0x180ace00,0x4000000,0x4e00000,0x180ace00,0x4000000,0x6800000,0x180acf00,0x4000000,0x4e00000,0x180acf00,0x4000000, -0x6800000,0x180ad111,0x7c40300,0xfce30000,0x184ac4d7,0x4000000,0xc8e00003,0x19000a03,0x4000000,0x5600000,0x19000c02,0x80000000,0x5329960,0x1900120f,0x4000000,0x4200000, -0x19001a18,0x7c00100,0xfd830000,0x19001d0c,0x7c00100,0xfc230400,0x19001d0c,0x7c00100,0xfc250400,0x19006600,0x24000020,0x4200000,0x19008407,0x7c00100,0x80220400,0x19008407, -0x7c00100,0x80250400,0x1900870c,0x7c00100,0xfc220400,0x19008e00,0x24000000,0x4200000,0x19008e00,0x24000000,0x4400000,0x19008e00,0x24000000,0xc200000,0x19008e00,0x24000002, -0x4300000,0x1900903c,0x7c00100,0x40230400,0x19009519,0x7c00100,0xfc220400,0x19009519,0x7c00100,0xfc250400,0x19009519,0x7c00500,0xc822040f,0x19009b71,0x2802100,0x40962460, -0x19009b71,0x2806400,0x40962460,0x19009b71,0x7c00100,0x40230400,0x1900a008,0x2802100,0x8962460,0x1900c300,0x4000000,0xc820000f,0x1900cd00,0x4000000,0x4200000,0x1900d202, -0x2802400,0x20962460,0x1900d202,0x2802500,0x20962460,0x1900d202,0x7c00100,0xfc230400,0x1900d302,0x4000020,0x4200000,0x1900d302,0x7c00120,0xc8230405,0x1900d476,0x2802100, -0x40962460,0x1900d476,0x2802100,0x40962461,0x1900d476,0x2806400,0x40962460,0x1900d476,0x4000000,0x44400000,0x1900d476,0x6800000,0x41329800,0x1900d476,0x6800100,0x40962540, -0x1900d476,0x7c00100,0x40230400,0x1900d476,0xc000010,0x44448000,0x1900d573,0x2802100,0x40962460,0x1900d573,0x2806400,0x40962460,0x1900d573,0x6800100,0x40962540,0x1900d573, -0x7c00100,0x40230400,0x1900d573,0x7c00900,0x40230400,0x1900d573,0xc000010,0x44448000,0x1900d68d,0x7c00100,0x80230400,0x1900d756,0x7c00100,0x80230400,0x1900d85c,0x2802500, -0x40962460,0x1900d85c,0x6800100,0x40962540,0x1900d85c,0x7c00100,0x40230400,0x1900d85c,0x7c00500,0x40230400,0x1900d997,0x2802100,0x80962460,0x1900d997,0x2806400,0x80962460, -0x1900d997,0x4000000,0x84200000,0x1900d997,0x4000000,0x84400000,0x1900d997,0x6800000,0x81329800,0x1900d997,0x6800100,0x80962540,0x1900d997,0x7c00100,0x80230400,0x1900d997, -0x7c00100,0x80230560,0x1900d997,0xc000010,0x84448000,0x1900da98,0x6800000,0x81329800,0x1900da98,0x7c00100,0x80230400,0x1900db71,0x4000000,0x44200000,0x1900dc99,0x2802100, -0x80962460,0x1900dc99,0x2802400,0x80962460,0x1900dc99,0x2806400,0x80962460,0x1900dc99,0x6800000,0x81329800,0x1900dc99,0x6800100,0x80962540,0x1900dc99,0x7c00100,0x80230400, -0x190a4711,0x7c40300,0xfce30000,0x190a4f11,0x7c00300,0xc8e30001,0x190ace00,0x4000000,0x4e00000,0x1940afa7,0x7c00100,0x8230400,0x1940afa9,0x7c00100,0x8230400,0x1980afc0, -0x2802400,0x8962460,0x1a002a00,0x4000000,0x5600000,0x1b002800,0x80000,0xc4918820,0x1bc00c16,0x80000,0xc4918820,0x1c00080e,0x7c00100,0x8250400,0x1c000a03,0x4000000, -0x4200000,0x1c000c00,0x80000000,0x5329960,0x1c000f0a,0x7c00100,0x8230400,0x1c001004,0x7c00100,0x8230400,0x1c001524,0x2802100,0x8962460,0x1c001524,0x7c00100,0x8230400, -0x1c001615,0x2802100,0x8962460,0x1c00171a,0x2802100,0x8962460,0x1c001821,0x6800000,0x9329800,0x1c002320,0x7c00100,0x80230400,0x1c002a00,0x4000000,0x5500000,0x1c002a00, -0x4000000,0x5600000,0x1c003000,0x24000000,0x4200000,0x1c003800,0x24000000,0x4e00000,0x1c005201,0x2802400,0x10962460,0x1c00581e,0x7c00100,0x80230400,0x1c006108,0x7c00100, -0x8220400,0x1c006108,0x7c00100,0x8250400,0x1c006108,0x7c00100,0xfc220400,0x1c006108,0x7c00100,0xfc250400,0x1c006f30,0x7c00100,0x40230400,0x1c007300,0x24000000,0x4200000, -0x1c007f0e,0x4000000,0x4200000,0x1c008301,0x2802100,0x10962460,0x1c008301,0x2802400,0x10962460,0x1c008e00,0x24000000,0x4200000,0x1c008e00,0x24000000,0x4400000,0x1c008e00, -0x24000002,0x4400000,0x1c008e00,0x24000008,0x5410000,0x1c008e00,0x24000010,0x4400000,0x1c008e00,0x2c000010,0x4448000,0x1c009519,0x7c00100,0x8220400,0x1c009519,0x7c00100, -0x8230400,0x1c009519,0x7c00100,0x8250400,0x1c009865,0x7c00100,0x80230400,0x1c009965,0x4000010,0x84400000,0x1c009965,0x7c00100,0x80230400,0x1c00a008,0x7c00100,0x8220400, -0x1c00a008,0x7c00100,0x8250400,0x1c00a008,0x7c00500,0xc822040f,0x1c00a50e,0x4000000,0x4200000,0x1c00b61c,0x2802500,0xfd862460,0x1c00b61c,0x6800500,0xfd862400,0x1c00b61c, -0x7c00100,0xfd830000,0x1c00c300,0x4000000,0x4100000,0x1c00c941,0x2806000,0x80c62460,0x1c00cc00,0x4000000,0x4e00000,0x1c00cd00,0x4000000,0x4200000,0x1c00cd00,0x4000000, -0x4e00000,0x1c00cd00,0x4000000,0x6800000,0x1c00cf00,0x4000000,0x4e00000,0x1c00d202,0x2802100,0x20962460,0x1c00d202,0x7c00100,0x8230400,0x1c00d202,0x7c00100,0xfc230400, -0x1c00d997,0x7c00100,0x80230400,0x1c00d997,0xc000010,0x84248000,0x1c00dd86,0x2802400,0x80962460,0x1c00dd86,0x7c00100,0x80230400,0x1c00dd86,0xc000010,0x84448000,0x1c00de9f, -0x4000000,0x84200000,0x1c00de9f,0x7c00100,0x80230400,0x1c00e001,0x2400,0x4962460,0x1c00e001,0x2802400,0x8962460,0x1c00e187,0x2802000,0x80962460,0x1c00e187,0x2802100, -0x80962460,0x1c00e187,0x4000000,0x84200000,0x1c00e187,0x7c00100,0x80230400,0x1c00e187,0xc000010,0x84448000,0x1c00e288,0x7c00100,0x80230400,0x1c00e300,0x4000000,0x4200000, -0x1c00e489,0x2802100,0x80962460,0x1c00e489,0x2802400,0x80962460,0x1c00e489,0x2806400,0x82f62460,0x1c00e489,0x6800100,0x80962540,0x1c00e489,0x6800100,0x80962541,0x1c00e489, -0x7c00100,0x80430400,0x1c00e489,0x7c00100,0x82b30400,0x1c00e489,0x7c00100,0x82d30400,0x1c00e489,0x7c00900,0x80430400,0x1c00e59d,0x2802100,0x80962460,0x1c00e59d,0x2802400, -0x80962460,0x1c00e59d,0x2802900,0x80962460,0x1c00e59d,0x2806400,0x80962460,0x1c00e59d,0x4000000,0x84200000,0x1c00e59d,0x4000010,0x84200000,0x1c00e59d,0x6800100,0x80962540, -0x1c00e59d,0x7c00100,0x80230400,0x1c00e59d,0xc000010,0x84448000,0x1c00e691,0x2802100,0x80962460,0x1c00e691,0x2802400,0x80962460,0x1c00e691,0x2806400,0x80962460,0x1c00e691, -0x6800000,0x81329800,0x1c00e691,0x6800100,0x80962540,0x1c00e691,0x7c00100,0x80230400,0x1c00e700,0x4000400,0x4200400,0x1c00e70e,0x7c00100,0x8220400,0x1c00e719,0x7c00100, -0x8220400,0x1c00e719,0x7c00500,0xc822040f,0x1c00e853,0x7c00100,0x80230400,0x1c00e9a0,0x2802400,0x80962460,0x1c00e9a0,0x4000000,0x84200000,0x1c00e9a0,0x4000000,0x84500000, -0x1c00e9a0,0x7c00100,0x80230400,0x1c00ea79,0x2802400,0x80962460,0x1c00ea79,0x4000000,0x84200000,0x1c00ea79,0x4000000,0x84f00000,0x1c00ea79,0x4000010,0x84400000,0x1c00ea79, -0x7c00100,0x80230400,0x1c00eb8c,0x2802400,0x80962460,0x1c00eb8c,0x4000000,0x84200000,0x1c00eb8c,0x7c00100,0x80230400,0x1c00eca3,0x2802100,0x80962460,0x1c00eca3,0x2806400, -0x80962460,0x1c00eca3,0x4000000,0x84200000,0x1c00eca3,0x6800000,0x81329800,0x1c00eca3,0x6800100,0x80962540,0x1c00eca3,0x7c00100,0x80230400,0x1c00eca3,0xc000010,0x84448000, -0x1c00ed95,0x6800000,0xa1329800,0x1c00ed95,0x7c00100,0xa0230400,0x1c00ed95,0xc000010,0x84448000,0x1c00ee1c,0x2802500,0x9862460,0x1c00ee1c,0x6800000,0xfd329800,0x1c00ee1c, -0x7c00100,0x9830000,0x1c00ee1c,0x7c00100,0xfd830000,0x1c00ee1c,0x7c00900,0x9830000,0x1c00ef8f,0x4000000,0x84200000,0x1c00ef8f,0x7c00100,0x80230400,0x1c00f08e,0x4000000, -0x84200000,0x1c00f08e,0x7c00100,0x80230400,0x1c00f159,0x2802100,0x80962460,0x1c00f159,0x7c00100,0x80230400,0x1c00f200,0x4000000,0x4200000,0x1c00f200,0x4000000,0x5200000, -0x1c00f200,0x4000000,0x5710000,0x1c00f34b,0x2802400,0x80962460,0x1c00f34b,0x4000000,0x84200000,0x1c00f34b,0x4000010,0x84400000,0x1c00f34b,0x6800000,0x81329800,0x1c00f34b, -0x7c00100,0x80230400,0x1c00f34b,0x7c00900,0x80230400,0x1c00f34b,0xc000010,0x84448000,0x1c00f490,0x4000000,0x84200000,0x1c00f490,0x7c00100,0x80230400,0x1c00f5a5,0x7c00100, -0x80230400,0x1c00f67b,0x4000000,0x84200000,0x1c00f67b,0x4000010,0x84200000,0x1c00f67b,0x7c00100,0x80230400,0x1c00f8a6,0x2802100,0x80962460,0x1c00f8a6,0x2802400,0x80962460, -0x1c00f8a6,0x2806400,0x80962460,0x1c00f8a6,0x4000000,0x84500000,0x1c00f8a6,0x4000010,0x84b00000,0x1c00f8a6,0x4000800,0x84200000,0x1c00f8a6,0x6800100,0x80962540,0x1c00f8a6, -0x6800100,0x80962541,0x1c00f8a6,0x7c00100,0x80230400,0x1c00f8a6,0xc000010,0x84448000,0x1c00f921,0x4000000,0x4200000,0x1c00fa00,0x4000000,0x4200000,0x1c00fb9e,0x2802100, -0x80962460,0x1c00fb9e,0x2802400,0x80962460,0x1c00fb9e,0x2806400,0x80962460,0x1c00fb9e,0x4000000,0x84200000,0x1c00fb9e,0x6800000,0x81329800,0x1c00fb9e,0x6800100,0x80962540, -0x1c00fb9e,0x6800100,0x80962541,0x1c00fb9e,0x7c00100,0x80230400,0x1c00fc92,0x4000000,0x84200000,0x1c00fc92,0x6800000,0x81329800,0x1c00fc92,0x7c00100,0x80220400,0x1c00fc92, -0x7c00100,0x80230400,0x1c00fc92,0x7c00100,0x80250400,0x1c0acd00,0x4000000,0x4e00000,0x1c0acd00,0x4000000,0x6800000,0x1c0ace00,0x4000000,0x4e00000,0x1c0acf00,0x4000000, -0x4e00000,0x1c0acf00,0x4000000,0x6800000,0x1c50df31,0x4000000,0xc200000,0x1c50f739,0x80000,0xc4918820,0x1c80afa7,0x2802400,0x8962460,0x1c90df31,0x2802400,0x8962460, -0x1cd0e437,0x2802100,0xfc962460,0x1cd0e437,0x2802400,0xfc962460,0x1cd0e437,0x6800100,0xfc962540,0x1cd0ea35,0x4000010,0x84400000,0x2000120f,0x7c00100,0x20230400,0x20001524, -0x7c00100,0x20230400,0x2000171a,0x7c00100,0x8230400,0x20002006,0x7c00100,0x40220400,0x20002006,0x7c00100,0x40250400,0x20002a00,0x4000000,0x5500000,0x20002d00,0x4000000, -0x24200000,0x20005208,0x2802400,0x30962460,0x20005c00,0x4000000,0x34200000,0x20007300,0x24000000,0x24200000,0x20009519,0x7c00100,0x20220400,0x20009519,0x7c00100,0x20230400, -0x20009519,0x7c00100,0x20250400,0x20009865,0x7c00100,0x80230400,0x2000a008,0x2802100,0x28962460,0x2000b30a,0x4000000,0x2c500000,0x2000b30a,0x7c00100,0x28230400,0x2000cd00, -0x4000000,0x24e00000,0x2000d202,0x2802500,0x20962460,0x2000d202,0x7c00100,0x20230400,0x2000d68d,0x4000000,0x84200000,0x2000d997,0x2802000,0x80962460,0x2000d997,0x2802400, -0x80962460,0x2000d997,0x4000000,0x84400000,0x2000d997,0x4000000,0x84500000,0x2000d997,0x7c00100,0x80230400,0x2000d997,0xc000010,0x84448000,0x2000e489,0x2802100,0x80962460, -0x2000e489,0x7c00100,0x82d30400,0x2000e719,0x7c00100,0x20220400,0x2000f8a6,0x2802100,0x80962460,0x2000f8a6,0x7c00100,0x80230400,0x2000f8a6,0xc000010,0x84448000,0x2000fda1, -0x2802100,0x81862460,0x2000fda1,0x2806400,0x81862460,0x2000fda1,0x4000000,0x85800000,0x2000fda1,0x6800000,0x81329800,0x2000fda1,0x6800100,0x81862400,0x2000fda1,0x6800100, -0x81862540,0x2000fda1,0x7c00100,0x81830000,0x2000fda1,0xc000010,0x84448000,0x2000fe9c,0x7c00100,0x80230400,0x2000fe9c,0x7c00100,0x80830400,0x2000fe9c,0x7c00100,0x81430400, -0x2000ff06,0x7c00100,0x40220400,0x20010165,0x7c00100,0x80230400,0x200102a2,0x4000000,0x84200000,0x200102a2,0x7c00100,0x80230400,0x200103a4,0x7c00100,0x80230400,0x200103a4, -0xc000010,0x84448000,0x2001044c,0x4000000,0x84200000,0x2001044c,0x7c00100,0x80220400,0x2001044c,0x7c00100,0x80250400,0x20010670,0x2802000,0x80962460,0x20010670,0x4000000, -0x84200000,0x20010670,0x4000010,0x84400000,0x20010670,0xc000010,0x84448000,0x200a4711,0x7c40300,0xfce30000,0x200acd00,0x4000000,0x4e00000,0x200acd00,0x4000000,0x6902460, -0x200ace00,0x4000000,0x4e00000,0x200acf00,0x4000000,0x4e00000,0x200b0011,0x7c40300,0xfce30000,0x200b0500,0x4000000,0x4e00000,0x200b0500,0x4000000,0x6800000,0x24001615, -0x7c00100,0xfc230400,0x2400171a,0x4000000,0x4200000,0x2400171a,0x7c00100,0xfc230400,0x24003000,0x24000000,0x4200000,0x24007f0e,0x4000000,0x4200000,0x24008301,0x2802400, -0x10962460,0x24008e00,0x24000000,0x4400000,0x24009519,0x7c00100,0x10250400,0x2400a16f,0x2802100,0x40962460,0x2400d200,0x80000000,0x5329960,0x2400d202,0x2802000,0x20962460, -0x2400d202,0x2802100,0x20962460,0x2400d202,0x7c00100,0xfc230400,0x2400e59d,0x2802100,0x80962460,0x24010500,0x4000000,0x4e00000,0x240107a7,0x2802100,0x40962460,0x240107a7, -0x2802400,0x40962460,0x240107a7,0x2802c00,0x40962460,0x240107a7,0x4000000,0x45400000,0x240107a7,0x6800000,0x41329800,0x240107a7,0x7c00100,0x40220400,0x240107a7,0x7c00100, -0x40250400,0x240108a8,0x2802100,0x80962460,0x240108a8,0x2806400,0x80962460,0x240108a8,0x4000000,0x84200000,0x240108a8,0x4000000,0x84400000,0x240108a8,0x4000010,0x84400000, -0x240108a8,0x6800000,0x81329800,0x240108a8,0x6800100,0x80962540,0x240108a8,0x7c00100,0x80230400,0x240108a8,0xc000010,0x84448000,0x24010908,0x7c00100,0x8220400,0x24010a38, -0x2802100,0x80962460,0x24010ca9,0x2802100,0x80962460,0x24010ca9,0x4000000,0x84500000,0x24010ca9,0x4000010,0x84b00000,0x24010ca9,0x6800100,0x80962540,0x24010ca9,0x7c00100, -0x80230400,0x24010d1b,0x4000000,0x84500000,0x24010eaa,0x2802100,0x40962460,0x24010eaa,0x2802400,0x40962460,0x24010eaa,0x2806400,0x40962460,0x24010eaa,0x4000000,0x44200000, -0x24010eaa,0x4000000,0x44400000,0x24010eaa,0x4000010,0x44400000,0x24010eaa,0x6800000,0x41329800,0x24010eaa,0x6800100,0x40962540,0x24010eaa,0x7c00100,0x40230400,0x24010eaa, -0xc000010,0x44448000,0x24010fab,0x7c00100,0x40220400,0x24010fab,0x7c00100,0x40250400,0x2402c300,0x4000000,0x4100000,0x240ac400,0x4000000,0xc8e0000d,0x240acd00,0x4000000, -0x4e00000,0x240acd00,0x4000000,0x6800000,0x240acf00,0x4000000,0x4e00000,0x240b0500,0x4000000,0x4e00000,0x240b0500,0x4000000,0x6800000,0x240b0b9a,0x7c00900,0x81230400, -0x240b109a,0x7c00300,0x80e30000,0x240b119a,0x7c00300,0x80e30000,0x24408e06,0x24000000,0x4400000,0x28001004,0x4000000,0x4200000,0x28001004,0x7c00100,0x8230400,0x2800120f, -0x2802100,0xfc962460,0x2800120f,0x2802400,0xfc962460,0x2800120f,0x2802900,0xfc962460,0x2800171a,0x2802100,0xfc962460,0x2800171a,0x2806400,0x8962460,0x28002a00,0x4000000, -0x5600000,0x28003000,0x24000000,0x4200000,0x2800581e,0x7c00100,0x80230400,0x28007300,0x24000000,0x4200000,0x28008301,0x2802400,0x10962460,0x28008e00,0x24000000,0x4400000, -0x2800cf00,0x4000000,0x4e00000,0x28010500,0x4000000,0x4200000,0x280114af,0x2802100,0x80962460,0x280114af,0x2802400,0x80962460,0x280114af,0x2806400,0x80962460,0x280114af, -0x6800000,0x81329800,0x280114af,0x7c00100,0x80230400,0x280114af,0x7c00100,0x80230560,0x280116b0,0x2802100,0x80962460,0x280116b0,0x2802800,0x80962460,0x280116b0,0x2806400, -0x80962460,0x280116b0,0x4000000,0x84400000,0x280116b0,0x4000000,0x84500000,0x280116b0,0x4000010,0x84400000,0x280116b0,0x6800100,0x80962540,0x280116b0,0x7c00100,0x80230400, -0x280116b0,0x7c00100,0x80230560,0x280116b0,0xc000010,0x84448000,0x28011722,0x7c00100,0x40230400,0x280118b1,0x2802000,0x80962460,0x280118b1,0x2802100,0x80962460,0x280118b1, -0x2806400,0x80962460,0x280118b1,0x4000000,0x84200000,0x280118b1,0x4000000,0x84400000,0x280118b1,0x4000000,0x84500000,0x280118b1,0x6800100,0x80962540,0x280118b1,0x7c00100, -0x80230400,0x280118b1,0x7c00100,0x80230560,0x280118b1,0xc000010,0x84448000,0x280a4005,0x7c00100,0x8e30400,0x280a4711,0x7c40300,0xfce30000,0x280ac400,0x4000000,0x4e00000, -0x280acb14,0x7c00100,0x8e30000,0x280acf00,0x4000000,0x4e00000,0x280b0500,0x4000000,0x4e00000,0x280b0500,0x4000000,0x6800000,0x280b0b96,0x7c00900,0x81230400,0x280b1211, -0x7c40300,0xfce30000,0x280b1314,0x7c00100,0x8e30000,0x280b1596,0x7c00300,0x80e30000,0x2840afc4,0x6800400,0x8962540,0x288083c5,0x2802400,0x10962460,0x2c000a03,0x7c00100, -0x10220400,0x2c000b13,0x7c00100,0xfe633800,0x2c001004,0x2802000,0xfc962460,0x2c001110,0x4000000,0x4200000,0x2c001524,0x2802100,0xfc962460,0x2c001615,0x4000000,0x4500000, -0x2c00251b,0x7c00100,0x80230400,0x2c007300,0x24000000,0x4200000,0x2c008939,0x4000000,0x84200000,0x2c008939,0x7c00100,0x80230400,0x2c008e00,0x24000000,0x4200000,0x2c008e00, -0x24000000,0x4400000,0x2c008e00,0x24000010,0x4400000,0x2c009257,0x2802000,0x40962460,0x2c009257,0x4000000,0x45600000,0x2c009519,0x7c00100,0x10220400,0x2c009519,0x7c00100, -0x20220400,0x2c009519,0x7c00100,0x20250400,0x2c009a00,0x4000000,0x4200000,0x2c00b30a,0x2802100,0x8962460,0x2c00b30a,0x7c00100,0x8230400,0x2c00c178,0x80000000,0x85329960, -0x2c00c300,0x4000000,0x4200000,0x2c00d202,0x2802000,0x20962460,0x2c00d476,0x6800100,0x40962540,0x2c00d476,0x7c00100,0x40230400,0x2c00e300,0x4000000,0x4e00000,0x2c00fda1, -0x7c00100,0x81830000,0x2c010eaa,0x2802000,0x40962460,0x2c0116b0,0x7c00100,0x80230400,0x2c011900,0x4000000,0x4e00000,0x2c011ab2,0x2802100,0x80962460,0x2c011ab2,0x2802400, -0x80962460,0x2c011ab2,0x2806400,0x80962460,0x2c011ab2,0x4000000,0x84200000,0x2c011ab2,0x6800100,0x80962540,0x2c011ab2,0x7c00100,0x80230400,0x2c011b0c,0x7c00100,0xfc230400, -0x2c011cb3,0x2802100,0x40962460,0x2c011cb3,0x2806400,0x40962460,0x2c011cb3,0x6800000,0x41329800,0x2c011cb3,0x6800100,0x40962540,0x2c011cb3,0x7c00100,0x40230400,0x2c011db6, -0x2802500,0x40962460,0x2c011db6,0x6800000,0x41329800,0x2c011db6,0x7c00100,0x40230400,0x2c011db6,0x7c00500,0x40230400,0x2c011e00,0x4000000,0x4200000,0x2c011e00,0x4000000, -0x5500000,0x2c011fb4,0x2802100,0x80962460,0x2c011fb4,0x6800100,0x80962540,0x2c011fb4,0x7c00100,0x80430400,0x2c011fb4,0x7c00100,0x82d30400,0x2c011fb4,0xc000010,0x84448000, -0x2c012000,0x4000000,0x4200000,0x2c0121b5,0x4000000,0x84200000,0x2c0121b5,0x4000010,0x84400000,0x2c0121b5,0x7c00100,0x80220400,0x2c0121b5,0x7c00100,0x80250400,0x2c0121b5, -0xc000010,0x84448000,0x2c0122b8,0x4000000,0x84200000,0x2c0122b8,0x7c00100,0x80230400,0x2c0123b7,0x2802400,0x80962460,0x2c0123b7,0x4000000,0x84200000,0x2c0123b7,0x7c00100, -0x80230400,0x2c0123b7,0xc000010,0x84248000,0x2c0a4005,0x7c00100,0xfce30400,0x2c0a4711,0x7c40300,0xfce30000,0x2c0acf00,0x4000000,0x4e00000,0x2c0b0500,0x4000000,0x4e00000, -0x2c0b0500,0x4000000,0x6800000,0x2c0b109a,0x7c00300,0x80e30000,0x2c80e48c,0x2802400,0xfc962460,0x30001524,0x4000000,0x4500000,0x30001a18,0x2806400,0xfd862460,0x30001a18, -0x7c00100,0xfd830000,0x30007300,0x24000000,0x4200000,0x30008e00,0x24000010,0x4400000,0x30009519,0x7c00100,0x10220400,0x30009519,0x7c00100,0x10250400,0x30009519,0x7c00100, -0xfc220400,0x30009519,0x7c00100,0xfc250400,0x3000c300,0x4000000,0xc820000f,0x3000d85c,0x2802100,0x40962460,0x3000d85c,0x6800100,0x40962540,0x3000d85c,0x7c00100,0x40230400, -0x3000dc99,0x7c00100,0x80230400,0x3000e719,0x7c00100,0xfc220400,0x300107a7,0x7c00100,0x40230400,0x30010eaa,0x7c00100,0x40230400,0x300116b0,0x7c00100,0x80230560,0x30011900, -0x4000000,0x4200000,0x30012447,0,0x84818820,0x30012447,0,0x84c18820,0x30012447,0,0x85418820,0x300125b9,0x7c00100,0x80230400,0x300126bb,0x2802100, -0x80962460,0x300126bb,0x2806400,0x80962460,0x300126bb,0x4000000,0x84500000,0x300126bb,0x6800100,0x80962540,0x300126bb,0x7c00100,0x80230400,0x300127ba,0x2802400,0x40962460, -0x300127ba,0x4000000,0x44200000,0x300127ba,0x6800000,0x41329800,0x300127ba,0x7c00100,0x40230400,0x300127ba,0x7c00900,0x40230400,0x30012800,0x4000000,0x4200000,0x30012b23, -0x4000000,0x4200000,0x30012b23,0x4000000,0x4400000,0x30012b23,0x4000000,0x5500000,0x30012cbc,0x2802400,0x40962460,0x30012cbc,0x4000000,0x45600000,0x30012cbc,0x6800000, -0x41329800,0x30012cbc,0x7c00100,0x40230400,0x300acf00,0x4000000,0x4e00000,0x300ae300,0x4000000,0x4e00000,0x300b0500,0x4000000,0x4e00000,0x300b0500,0x4000000,0x6800000, -0x300b0b11,0x4000000,0x5200000,0x300b0b11,0x7c00900,0x9230400,0x300b109a,0x7c00300,0x80e30000,0x300b2914,0x7c00100,0xfe530000,0x300b2916,0x7c00100,0xfe530c00,0x300b2a00, -0x4000000,0x4e00000,0x3040afb4,0x7c00100,0x80230400,0x30c12b8e,0x4000000,0x4200000,0x314a44d7,0x4000000,0xc8e0000d,0x3400131f,0x2802c00,0xfc962460,0x3400171a,0x7c00100, -0x18230400,0x34001821,0x2802100,0x10962460,0x34007300,0x24000000,0x4200000,0x34008e00,0x24000000,0x4200000,0x34008f3a,0x2806400,0x40962460,0x34009519,0x7c00100,0x8220400, -0x34009519,0x7c00100,0x8250400,0x34009519,0x7c00100,0xfc220400,0x34009519,0x7c00100,0xfc250400,0x3400a500,0x4000000,0x4200000,0x3400c300,0x4000000,0x4e00000,0x3400d202, -0x7c00100,0xfc230400,0x3400d476,0x7c00100,0x40230400,0x3400d997,0x2802100,0x80962460,0x3400d997,0x6800100,0x80962540,0x3400e001,0x2802100,0x10962460,0x3400e700,0x4000400, -0x4200000,0x3400e719,0x7c00100,0x10220400,0x3400e719,0x7c00500,0xc822040f,0x3400fa00,0x4000000,0x4200000,0x34010eaa,0x4000010,0x44400000,0x34010eaa,0x7c00100,0x40230400, -0x34012dbd,0x4000000,0x84200000,0x34012dbd,0x7c00100,0x80230400,0x34012fbe,0x2802100,0x80962460,0x34012fbe,0x2802400,0x80962460,0x34012fbe,0x2806400,0x80962460,0x34012fbe, -0x2806400,0x82f62460,0x34012fbe,0x4000000,0x84400000,0x34012fbe,0x6800000,0x82d29800,0x34012fbe,0x6800100,0x80962540,0x34012fbe,0x6800100,0x80962541,0x34012fbe,0x7c00100, -0x82b30400,0x34012fbe,0x7c00100,0x82c30560,0x34012fbe,0xc000010,0x84448000,0x34013183,0x7c00100,0x40230400,0x34013200,0x4000000,0x4200000,0x34013200,0x6800000,0xc9329805, -0x340134c0,0x2802100,0x80962460,0x340134c0,0x4000002,0x84400000,0x340134c0,0x7c00100,0x80230400,0x340a4305,0x7c00100,0xfce30400,0x340a4611,0x7c40300,0xfce30000,0x340a4711, -0x7c40300,0xfce30000,0x340a5e11,0x7c40300,0xfce30000,0x340acf00,0x4000000,0x4e00000,0x340b0500,0x4000000,0x4e00000,0x340b0500,0x4000000,0x6800000,0x340b0b11,0x2802500, -0xfc962460,0x340b0bbf,0x2802200,0x80c62460,0x340b119a,0x7c00300,0x80e30000,0x340b2a00,0x4000000,0x4e00000,0x340b2e11,0x7c40300,0xfce30000,0x340b30bf,0x7c00300,0x80230000, -0x340b339a,0x7c00300,0x80e30000,0x38000c02,0xc000010,0x4b48000,0x38001524,0x2802400,0xfc962460,0x38001524,0x7c00100,0xfc230400,0x38001615,0x7c00100,0xfc230400,0x3800251b, -0x12882000,0xc4962460,0x38002a00,0x4000000,0x5500000,0x38005102,0x4000000,0x14200000,0x38005c00,0x4000000,0x14200000,0x3800622a,0x2806400,0x80962460,0x3800622a,0x7c00100, -0x80230400,0x38008838,0x7c00100,0x80220400,0x38008838,0x7c00100,0x80250400,0x38008e00,0x24000000,0x4810000,0x38008e00,0x24000000,0x5410000,0x38008e00,0x24000002,0x4400000, -0x38008e00,0x2c000010,0x4b48000,0x3800933e,0x7c00100,0x42b30400,0x3800933e,0xc000010,0x44448000,0x38009519,0x7c00100,0xc822040f,0x38009519,0x7c00100,0xfc220400,0x38009519, -0x7c00100,0xfc250400,0x3800c178,0x2802100,0x80962460,0x3800c941,0x2802100,0x80962460,0x3800c941,0x2806400,0x80962460,0x3800c941,0x7c00100,0x82b30400,0x3800d202,0x2802400, -0x20962460,0x3800d202,0x7c00100,0xfc230400,0x3800d202,0x7c00500,0xfc230400,0x3800dc99,0x4000000,0x84200000,0x3800e001,0x2802100,0x20962460,0x3800e001,0x2802400,0x20962460, -0x3800fda1,0x7c00100,0x81830000,0x38013502,0x2802400,0x20962460,0x38013502,0x4000000,0x4200000,0x38013502,0x7c00100,0xfc230400,0x38013502,0x80000000,0x5329960,0x380136c1, -0x4000000,0x84200000,0x380136c1,0x7c00100,0x80230400,0x3801370b,0x7c00100,0xfc230400,0x38013919,0x7c00500,0x20220400,0x38013919,0x7c00500,0xc822040f,0x38013919,0x7c00d00, -0xc823040f,0x38013a19,0x7c00100,0xfc220400,0x38013a19,0x7c00100,0xfc230400,0x38013bc2,0x2802400,0x80962460,0x38013bc2,0x7c00100,0x80230400,0x38013bc2,0xc000010,0x84248000, -0x38013cc3,0x6800000,0x81329800,0x38013cc3,0x7c00100,0x80230400,0x38013dc4,0x2802400,0x80962460,0x38013dc4,0x7c00100,0x80230400,0x38013e28,0x7c00100,0x40230400,0x38013fc5, -0x7c00100,0x80220400,0x38013fc5,0x7c00100,0x80250400,0x38014000,0x4000000,0x14200000,0x38014001,0x2802400,0x10962460,0x380a4711,0x7c40300,0xfce30000,0x380a5e11,0x7c40300, -0xfce30000,0x380ac511,0x7c40300,0xfce30000,0x380acf00,0x4000000,0x4e00000,0x380ae300,0x4000000,0x4e00000,0x380b0500,0x4000000,0x4e00000,0x380b1314,0x7c00100,0xfce30000, -0x380b1316,0x7c00100,0xfce30c00,0x380b2a00,0x4000000,0x4e00000,0x380b2a00,0x4000000,0x6800000,0x380b3816,0x7c00500,0x20230c00,0x3880832a,0x2802400,0x50962460,0x3c001615, -0x6800100,0xfc962540,0x3c001a18,0x2802000,0xfd862460,0x3c00c247,0x7c00100,0x81430400,0x3c00d000,0x4000000,0x4e00000,0x3c00e300,0x4000000,0x4e00000,0x3c00e59d,0x2802100, -0x80962460,0x3c00e59d,0x7c00100,0x80230400,0x3c012447,0,0x84818820,0x3c012447,0,0x84c18820,0x3c012447,0,0x85418820,0x3c012447,0x2802000,0x80962460, -0x3c012447,0x2802400,0x80962460,0x3c012447,0x7c00100,0x80230400,0x3c013a19,0x7c00100,0xfc220400,0x3c014102,0x2802400,0x20962460,0x3c014308,0x2802100,0xfc962460,0x3c014308, -0x7c00500,0xc822040e,0x3c014308,0x7c00500,0xc822040f,0x3c01440a,0x4000000,0x4500000,0x3c014500,0x4000000,0x4200000,0x3c0146c6,0x2802100,0x80962460,0x3c0146c6,0x2806400, -0x80962460,0x3c0146c6,0x2806400,0x82f62460,0x3c0146c6,0x4000000,0x84e00000,0x3c0146c6,0x6800000,0x82d29800,0x3c0146c6,0x6800100,0x80962540,0x3c0146c6,0x7c00100,0x82b30400, -0x3c0146c6,0x7c00100,0x82c30560,0x3c0146c6,0xc000010,0x84448000,0x3c0147c7,0x2802000,0x80962460,0x3c0147c7,0x6800000,0x81329800,0x3c0147c7,0x7c00100,0x80230400,0x3c0ac511, -0x7c40300,0xfce30000,0x3c0acf00,0x4000000,0x4e00000,0x3c0b2914,0x7c00100,0xfe530000,0x3c0b2916,0x7c00100,0xfe530c00,0x3c0b2a00,0x4000000,0x4e00000,0x3c0b2a00,0x4000000, -0x6800000,0x3c0b4211,0x7c40300,0xfce30000,0x3d0a3c00,0x4000000,0x4e00000,0x3d0a3c00,0x4008000,0x4e00000,0x3d0a8200,0x4008000,0x4e00000,0x3d0b4811,0x7c40300,0xfce30000, -0x40001524,0x7c00100,0xfc230400,0x40001615,0x7c00100,0xfc230400,0x40003100,0x24000000,0x4200000,0x4000933e,0x4000000,0x44400000,0x40009519,0x7c00100,0xfc220400,0x40009519, -0x7c00100,0xfc250400,0x4000fa00,0x4000000,0x4200000,0x40010908,0x7c00100,0xfc220400,0x40010908,0x7c00100,0xfc250400,0x40013200,0x4000000,0x4200000,0x40013502,0x2802100, -0x20962460,0x40014102,0x2802100,0x20962460,0x40014102,0x7c00100,0xfc230400,0x400146c6,0x2802400,0x80962460,0x40014947,0x7c00100,0x80230400,0x40014ac9,0x2802400,0x80962460, -0x40014ac9,0x2802500,0x80962460,0x40014ac9,0x2802c00,0x80962460,0x40014ac9,0x4000002,0x84400000,0x40014ac9,0x4000020,0x84200000,0x40014ac9,0x6800000,0x81329800,0x40014ac9, -0x7c00100,0x80220400,0x40014ac9,0x7c00100,0x80230400,0x40014ac9,0x7c00100,0x80250400,0x40014ac9,0x7c00900,0x80230400,0x40014ac9,0x7c00d00,0x80230400,0x40014bca,0x2802100, -0x80962460,0x40014bca,0x2802100,0x80962461,0x40014bca,0x2806400,0x80962460,0x40014bca,0x6800000,0x82d29800,0x40014bca,0x6800100,0x80962540,0x40014bca,0x7c00100,0x82d30400, -0x40014ccb,0x4000000,0x84200000,0x40014ccb,0x4000000,0x84400000,0x40014ccb,0x6800000,0x81329800,0x40014ccb,0x7c00100,0x80230400,0x40014ccb,0x7c00100,0x80230520,0x40014ccb, -0x7c00100,0x80230521,0x40014ccb,0x7c00500,0x80230400,0x40014d1c,0x6800000,0xfd329800,0x40014ecc,0x2802400,0x80962460,0x40014ecc,0x2802c00,0x80962460,0x40014ecc,0x4000000, -0x84200000,0x40014ecc,0x6800000,0x81329800,0x40014ecc,0x7c00100,0x80230400,0x40014fcd,0x4000000,0x84200000,0x40014fcd,0x6800000,0x81329800,0x40014fcd,0x7c00100,0x80230400, -0x40015000,0x4000000,0x4200000,0x40015000,0x4000000,0xc8200005,0x40015000,0x6800000,0xc9329805,0x400151ce,0x7c00100,0x80230400,0x400151ce,0x7c00100,0x80230401,0x400152cf, -0x2802100,0x80962460,0x400152cf,0x2802100,0x80962461,0x400152cf,0x2802400,0x80962460,0x400152cf,0x2802c00,0x80962460,0x400152cf,0x2806400,0x80962460,0x400152cf,0x2806400, -0x82f62460,0x400152cf,0x4000000,0x84e00000,0x400152cf,0x6800100,0x80962540,0x400152cf,0x7c00100,0x80e30400,0x400152cf,0x7c00100,0x82b30400,0x400152cf,0x7c00100,0x82c30560, -0x400152cf,0x7c00100,0x82d30400,0x400152cf,0x7c00100,0x82d30401,0x400152cf,0x7c00d00,0x80e30400,0x400a8200,0x4000000,0x4e00000,0x400b2a00,0x4000000,0x4e00000,0x400b30bf, -0x7c00100,0x80230400}; +static const uint32_t propsVectors[6285]={ +0x67,0,0,0x67,0,0xe00000,0x67,0,0x1600000,0x67,0x80000,0x20,0x67,0x20000000,0,0xa0067, +0,0xe00000,0x5000000,0,0x900020,0x5000000,0x80000,0xc4918820,0x5000000,0x80000,0xc5c18020,0x5000000,0x80000,0xc5e18820,0x5000000,0x180000, +0xc0918820,0x5000000,0x4000000,0x4100000,0x5000000,0x4000000,0x4200000,0x5000000,0x4000000,0x5500000,0x5000000,0x4000000,0x5600000,0x5000000,0x4000000,0xc200000, +0x5000000,0x4000000,0xc8100003,0x5000000,0x4000000,0xc8100006,0x5000000,0x4000000,0xc8200002,0x5000000,0x4000000,0xc8200006,0x5000000,0x4000000,0xc820000e,0x5000000, +0x4000000,0xc820000f,0x5000000,0x4000000,0xc9600002,0x5000000,0x4000001,0xc8445801,0x5000000,0x4000001,0xc8445802,0x5000000,0x4000001,0xc8c4000b,0x5000000,0x4000010, +0xc9001401,0x5000000,0x4000020,0x4200000,0x5000000,0x4000020,0xc820000e,0x5000000,0x4000020,0xc820000f,0x5000000,0x4000020,0xc881000e,0x5000000,0x4000020,0xc881000f, +0x5000000,0x4000020,0xc941000e,0x5000000,0x4000020,0xc941000f,0x5000000,0x4000022,0xc820000e,0x5000000,0x4000022,0xc820000f,0x5000000,0x4000400,0x4200400,0x5000000, +0x4000400,0xc8200001,0x5000000,0x4000400,0xc8200002,0x5000000,0x6800000,0x10201c00,0x5000000,0x6800010,0xc8201001,0x5000000,0x6800020,0x10201c00,0x5000000,0x7c00000, +0x10200000,0x5000000,0x7c00020,0x10200000,0x5000000,0x7c00100,0xc8220402,0x5000000,0x7c00120,0xc8220405,0x5000000,0x7c00120,0xc8230402,0x5000000,0x7c00120,0xc8250402, +0x5000000,0x7c00120,0xc8250405,0x5000000,0x7c00500,0x10220400,0x5000000,0x7c00500,0x10230400,0x5000000,0x7c00500,0x10530400,0x5000000,0x7c00500,0xc8230401,0x5000000, +0x7c00500,0xfc230400,0x5000000,0x7c00d00,0x10230400,0x5000000,0x24000000,0x4100000,0x5000000,0x24000000,0x4200000,0x5000000,0x24000000,0x4810000,0x5000000,0x24000000, +0x4b00000,0x5000000,0x24000000,0x4e00000,0x5000000,0x24000000,0x5410000,0x5000000,0x24000000,0x5500000,0x5000000,0x24000000,0x5710000,0x5000000,0x24000000,0x6800000, +0x5000000,0x24000000,0xc8200002,0x5000000,0x24000000,0xc9500002,0x5000000,0x24000002,0x4400000,0x5000000,0x24000006,0xc8c0000b,0x5000000,0x24000008,0x5410000,0x5000000, +0x24000008,0x5710000,0x5000000,0x24000020,0x4200000,0x5000000,0x24000020,0x4200001,0x5000000,0x24000020,0x4810000,0x5000000,0x24000020,0x4f00000,0x5000000,0x24000020, +0x5001400,0x5000000,0x24000020,0x5410000,0x5000000,0x24000020,0x5600000,0x5000000,0x24000020,0xc8200002,0x5000000,0x24000020,0xc9500002,0x5000000,0x24000022,0x5600000, +0x5000000,0x2c000010,0x5248000,0x5000000,0x2c000010,0xc9248002,0x5000000,0x40000001,0x4440020,0x5000000,0x40000001,0x463b020,0x5000000,0x40000001,0x4643020,0x5000000, +0x40000001,0x4a5a040,0x5000000,0x40000001,0x516a8a0,0x5000000,0x40000001,0x5d3b020,0x5000000,0x40080000,0xc4918820,0x5000000,0x80000000,0x5329960,0x5000001,0x2000, +0x14962460,0x5000001,0x2802020,0x10962460,0x5000001,0x2802400,0x10962460,0x5000001,0x2880000,0xc6a65620,0x5000001,0x2882000,0xc4962460,0x5000002,0x2802100,0x20962460, +0x5000002,0x2802400,0x20962460,0x5000002,0x4000000,0x4200000,0x5000002,0x4000000,0x5329400,0x5000002,0x4000000,0x5329800,0x5000002,0x4000000,0x5500000,0x5000002, +0x6800000,0xfd329800,0x5000002,0x7000100,0xc8230408,0x5000002,0x7c00100,0x8230400,0x5000002,0x7c00100,0xc8230402,0x5000002,0x7c00100,0xc8230404,0x5000002,0x7c00100, +0xc8230407,0x5000002,0x7c00100,0xc8230408,0x5000002,0x7c00100,0xc8230409,0x5000002,0x7c00100,0xfc230400,0x5000002,0x7c00100,0xfc230401,0x5000002,0x7c00500,0xfc230400, +0x5000002,0x7d00100,0xc0230400,0x5000003,0x4000000,0x4200400,0x5000003,0x4000000,0x4201000,0x5000003,0x4000000,0x4270000,0x5000003,0x7c00100,0xc8220402,0x5000003, +0x7c00100,0xfc220400,0x5000003,0x7c00100,0xfc250400,0x5000003,0x7c00500,0xfc230400,0x5000003,0xc000010,0x5049400,0x5000004,0x2802100,0xfc962460,0x5000004,0x2802400, +0xfc962460,0x5000004,0x2806400,0xfc962460,0x5000004,0x4000000,0x4200000,0x5000004,0x4000000,0x5500000,0x5000004,0x6800100,0xfc962540,0x5000004,0x6800100,0xfc962541, +0x5000004,0x7c00100,0xc8230401,0x5000004,0x7c00100,0xfc230400,0x5000007,0x7c00100,0x80220400,0x5000007,0x7c00100,0x80250400,0x5000008,0x4000000,0xc200000,0x5000008, +0x7c00100,0x8220400,0x5000008,0x7c00100,0x8220401,0x5000008,0x7c00100,0x8250400,0x5000008,0x7c00100,0x8250401,0x5000008,0x7c00100,0xfc220400,0x5000008,0x7c00100, +0xfc220401,0x5000008,0x7c00100,0xfc250400,0x5000008,0x7c00100,0xfc250401,0x500000a,0x2802100,0xfc962460,0x500000a,0x2802400,0xfc962460,0x500000a,0x2806400,0xfc962460, +0x500000a,0x4000000,0x4200000,0x500000a,0x6800100,0xfc962540,0x500000a,0x7c00100,0xc8230401,0x500000a,0x7c00100,0xfc230400,0x500000a,0x7c00100,0xfc230401,0x500000c, +0x7c00100,0x8230400,0x500000c,0x7c00100,0x8250400,0x500000c,0x7c00100,0xfc230400,0x500000e,0x4000400,0xc8200001,0x500000e,0x4000400,0xc8200002,0x500000e,0x4000400, +0xc8500001,0x500000e,0x4000400,0xf8200000,0x500000e,0x7000500,0xc8220402,0x500000e,0x7c00100,0x8250400,0x500000e,0x7c00100,0x18220400,0x500000e,0x7c00100,0xc8220401, +0x500000e,0x7c00100,0xc8220402,0x500000e,0x7c00100,0xc8250401,0x500000e,0x7c00100,0xfc220400,0x500000e,0x7c00100,0xfc220401,0x500000e,0x7c00100,0xfc250401,0x500000e, +0x7c00120,0xc8220402,0x500000e,0x7c00120,0xc8250402,0x500000f,0x2802100,0xfc962460,0x500000f,0x2802400,0xfc962460,0x500000f,0x2806400,0xfc962460,0x500000f,0x6800100, +0xfc962540,0x500000f,0x7c00100,0xfc230400,0x5000010,0x2802100,0xfc962460,0x5000010,0x2802400,0xfc962460,0x5000010,0x2802900,0xfc962460,0x5000010,0x2806400,0xfc962460, +0x5000010,0x6800100,0xfc962540,0x5000010,0x7c00100,0xc8230401,0x5000010,0x7c00100,0xfc230400,0x5000012,0x7c00100,0xa230500,0x5000012,0x7c00100,0xa330520,0x5000012, +0x7c80100,0xc6330520,0x5000013,0x2802500,0x20962460,0x5000013,0x2802500,0x30962460,0x5000013,0x2802500,0xfc962460,0x5000013,0x4000000,0x4200000,0x5000013,0x4000000, +0xf8201000,0x5000013,0x4000000,0xf8230400,0x5000013,0x4000002,0x4400000,0x5000013,0x4000010,0x4200000,0x5000013,0x4000020,0xc8200005,0x5000013,0x7c00100,0xca633801, +0x5000013,0x7c00100,0xca633802,0x5000013,0x7c00100,0xca633805,0x5000013,0x7c00100,0xfe633800,0x5000015,0x2802100,0xfc962460,0x5000015,0x2806400,0xfc962460,0x5000015, +0x6800100,0xfc962540,0x5000015,0x6800100,0xfc962541,0x5000015,0x7c00100,0x8230400,0x5000015,0x7c00100,0xfc230400,0x5000018,0x2802100,0xfd862460,0x5000018,0x2802400, +0xfd862460,0x5000018,0x6800000,0xfd329800,0x5000018,0x7800100,0xc9830142,0x5000018,0x7c00100,0xc9830002,0x5000018,0x7c00100,0xfd830000,0x5000018,0x7c00900,0xfd830000, +0x5000018,0x7e00100,0xfd830000,0x5000019,0x7c00100,0x8220400,0x5000019,0x7c00100,0x8250400,0x5000019,0x7c00100,0x10220400,0x5000019,0x7c00100,0x10230400,0x5000019, +0x7c00100,0x18220400,0x5000019,0x7c00100,0x18230400,0x5000019,0x7c00100,0x20220400,0x5000019,0x7c00100,0x20250400,0x5000019,0x7c00100,0x30220400,0x5000019,0x7c00100, +0xc8220402,0x5000019,0x7c00100,0xc8250401,0x5000019,0x7c00100,0xc8250402,0x5000019,0x7c00100,0xfc220400,0x5000019,0x7c00100,0xfc220401,0x5000019,0x7c00100,0xfc250400, +0x5000019,0x7c00100,0xfc250401,0x5000019,0x7c00500,0xc822040f,0x500001a,0x2802100,0xfc962460,0x500001a,0x2806400,0xfc962460,0x500001a,0x6800000,0xfd329800,0x500001a, +0x6800100,0xfc962540,0x500001a,0x6800100,0xfc962541,0x500001a,0x7c00100,0xfc230400,0x500001f,0x2802100,0xfc962460,0x500001f,0x2802400,0xfc962460,0x500001f,0x2806400, +0xfc962460,0x500001f,0x4000000,0x4200000,0x500001f,0x6800000,0xfd329800,0x500001f,0x6800100,0xfc962540,0x500001f,0x6800100,0xfc962541,0x500001f,0x7c00100,0xc8230401, +0x500001f,0x7c00100,0xfc230400,0x5000023,0x2802100,0xfc962460,0x5000023,0x2806400,0xfc962460,0x5000023,0x6800100,0xfc962540,0x5000023,0x6800100,0xfc962541,0x5000023, +0x7c00100,0xfc230400,0x5000023,0x7c00100,0xfc230401,0x5000024,0x2802100,0xfc962460,0x5000024,0x2802100,0xfc962461,0x5000024,0x2806400,0xfc962460,0x5000024,0x6800000, +0xfd329800,0x5000024,0x6800100,0xfc962540,0x5000024,0x7c00100,0xfc230400,0x5000026,0x2802100,0xfd862460,0x5000026,0x2802400,0xfd862460,0x5000026,0x2806500,0xfd862460, +0x5000026,0x4000000,0x4200000,0x5000026,0x4000010,0x4400000,0x5000026,0x6800000,0xfd329800,0x5000026,0x7800100,0xc9830142,0x5000026,0x7c00100,0xfd830000,0x5000026, +0x7c00900,0xfd830000,0x5000026,0x7e00100,0xfd830000,0x5000067,0x1000,0,0x5020000,0x80004,0xc4418820,0x5020000,0x4000000,0x4100000,0x5020000,0x4000000, +0xc8100002,0x5020000,0x4000000,0xc8100003,0x5020000,0x4000000,0xc8100006,0x5020000,0x4000000,0xc810000e,0x5020000,0x4000000,0xc810000f,0x5020000,0x4000000,0xc8200006, +0x5020000,0x4000000,0xc9500002,0x5020000,0x4000000,0xc9600002,0x5020000,0x4000100,0xc8120403,0x5020000,0x4000100,0xc8150403,0x5020000,0x4000400,0x4200400,0x5020000, +0x4000400,0xc8100002,0x5020000,0x4000400,0xc8500002,0x5020000,0x6800c00,0xf8101000,0x5020000,0x7c00120,0xc8120405,0x5020000,0x7c00500,0x10130400,0x5020000,0x7c00d00, +0x10130400,0x5020000,0x24000000,0x4100000,0x5020000,0x24000000,0x4200000,0x5020000,0x24000000,0x4e00000,0x5020000,0x24000000,0x5400000,0x5020000,0x24000000,0x5500000, +0x5020000,0x24000000,0x5600000,0x5020000,0x24000000,0xc8200002,0x5020000,0x24000000,0xc8f00002,0x5020000,0x24000000,0xc8f0ac02,0x5020000,0x24000000,0xf8401000,0x5020000, +0x24000002,0x4100000,0x5020000,0x24000002,0x4370000,0x5020000,0x24000002,0x4470000,0x5020000,0x24000006,0xf8400000,0x5020000,0x24000008,0x5710000,0x5020000,0x24000008, +0x5712c00,0x5020000,0x24000008,0xf9712c00,0x5020000,0x24000020,0x4100000,0x5020000,0x24000020,0x4100001,0x5020000,0x24000020,0x5500000,0x5020000,0x24000020,0x5600000, +0x5020000,0x24000020,0xc8100002,0x5020000,0x24000020,0xc9500002,0x5020001,0x2802400,0x10962460,0x5020001,0x2802400,0x10c62460,0x5020001,0x2802400,0x20962460,0x5020001, +0x2802400,0xc8962461,0x5020001,0x2802400,0xfc962460,0x5020008,0x7c00100,0xfc220400,0x5020008,0x7c00100,0xfc220401,0x5020008,0x7c00100,0xfc250400,0x5020008,0x7c00100, +0xfc250401,0x502000e,0x7c00100,0xc8250401,0x502000e,0x7c00100,0xfc220400,0x502000e,0x7c00100,0xfc250400,0x5020019,0x7c00100,0x10220400,0x5020019,0x7c00100,0xc8120402, +0x5020019,0x7c00100,0xc812040f,0x5020019,0x7c00100,0xc8150401,0x5020019,0x7c00100,0xc8150402,0x5020019,0x7c00100,0xc8220402,0x5020019,0x7c00100,0xc8250402,0x5020019, +0x7c00100,0xfc220400,0x5020019,0x7c00100,0xfc220401,0x5020019,0x7c00100,0xfc250400,0x5020019,0x7d00100,0xc0220402,0x5020067,0,0,0x5040000,0x4000000, +0x5600000,0x5040000,0x4000000,0xc820000a,0x5040000,0x4000020,0xc820000a,0x5040012,0x7c00100,0xc8e3040a,0x5040012,0x7c80100,0xc4e3040a,0x5040016,0x7c00100,0xc8e30c0a, +0x5040016,0x7c00100,0xca530c0a,0x5060000,0x4000000,0xc8810011,0x5060000,0x4000000,0xc8e00011,0x5060000,0x4000000,0xc9410011,0x5060000,0x4000000,0xc9500011,0x5060000, +0x4000000,0xc9600011,0x5060000,0x4000001,0xc8445811,0x5060000,0x4000006,0xc8e70011,0x5060000,0x4000008,0xc8e00011,0x5060000,0x4000008,0xc8e02c11,0x5060000,0x4000010, +0xc8871411,0x5060000,0x4000010,0xc9201411,0x5060000,0x4000010,0xc9271011,0x5060000,0x4000020,0xc8e00011,0x5060000,0x4000400,0xc8e00011,0x5060000,0x4000420,0xc8e00011, +0x5060000,0x6800000,0xc8e01c11,0x5060000,0x6800040,0xc8e29811,0x5060000,0xc000010,0xc880ac11,0x5060000,0xc000010,0xc8b48011,0x5060019,0x7c00100,0xc8e20411,0x5060019, +0x7c00100,0xc8e50411,0x5060019,0x7c00140,0xc8e20411,0x5060019,0x7c00140,0xc8e50411,0x5080000,0x4000400,0xc8200002,0x5080000,0x6800000,0xfc201c00,0x5080000,0x68000c0, +0xfd329800,0x5080000,0x24000000,0x4200000,0x5080000,0x24000000,0x4810000,0x5080000,0x24000000,0x5410000,0x5080000,0x24000000,0x5500000,0x5080000,0x24000000,0x5600000, +0x5080000,0x24000000,0x5b00000,0x5080000,0x24000000,0x6410000,0x5080000,0x24000006,0xf8d70000,0x5080000,0x24000008,0x5714000,0x5080000,0x24000008,0xf9713c00,0x5080000, +0x24000010,0x5001400,0x5080000,0x24000010,0x5071400,0x5080000,0x24000010,0xf9071000,0x5080000,0x24000020,0x4200000,0x5080000,0x24000020,0x4400000,0x5080000,0x24000020, +0x5600000,0x5080000,0x24000400,0x4200000,0x5080000,0x24000420,0x4200000,0x5080000,0x2c000010,0x4b48000,0x5080000,0x2c000010,0xf900ac00,0x5080000,0x44000001,0x5a45800, +0x5080019,0x7c00100,0xfc220400,0x5080019,0x7c00100,0xfc250400,0x5080019,0x7c001c0,0xfc220400,0x5080019,0x7c001c0,0xfc250400,0x50a0000,0x4000000,0x4e00000,0x50a0000, +0x4000000,0x14e00000,0x50a0000,0x4000000,0xc881000c,0x50a0000,0x4000000,0xc8810010,0x50a0000,0x4000000,0xc8e00002,0x50a0000,0x4000000,0xc8e0000c,0x50a0000,0x4000000, +0xc8e0000d,0x50a0000,0x4000000,0xc8e00010,0x50a0000,0x4000000,0xc941000c,0x50a0000,0x4000000,0xc9410010,0x50a0000,0x4000000,0xc950000c,0x50a0000,0x4000000,0xc960000c, +0x50a0000,0x4000002,0xc8e7000c,0x50a0000,0x4000002,0xc8e70010,0x50a0000,0x4000008,0xc8810010,0x50a0000,0x4000008,0xc9410010,0x50a0000,0x4000010,0xc887140c,0x50a0000, +0x4000010,0xc8e7000c,0x50a0000,0x4000010,0xc920140c,0x50a0000,0x4000010,0xc927100c,0x50a0000,0x4000020,0xc8e0000c,0x50a0000,0x4000026,0xc8e7000c,0x50a0000,0x6800000, +0xc8e01c02,0x50a0000,0x6800000,0xc8e01c10,0x50a0000,0xc000010,0xc880ac0c,0x50a0000,0xc000010,0xc8b4800c,0x50a0000,0x24000000,0x4200000,0x50a0000,0x24000000,0x4e00000, +0x50a0000,0x24100000,0xc0810001,0x50a0000,0x24100000,0xc1410001,0x50a0005,0x7c00100,0xfce30400,0x50a0011,0x7c00300,0x10e30000,0x50a0011,0x7c00300,0xc8e30001,0x50a0011, +0x7c00300,0xfce30000,0x50a0011,0x7c00900,0xfd230400,0x50a0011,0x7c40300,0xfce30000,0x50a0012,0x2802400,0x18962460,0x50a0012,0x4000000,0xc8e00002,0x50a0012,0x4000000, +0xc8e00003,0x50a0012,0x7c00100,0xa130480,0x50a0012,0x7c00100,0xc8e30402,0x50a0012,0x7c80100,0xc4e30402,0x50a0012,0x7c80100,0xc6130480,0x50a0014,0x7c00100,0xfce30000, +0x50a0014,0x7c00100,0xfce30001,0x50a0014,0x7c00100,0xfe530000,0x50a0014,0x7c00900,0xfd230000,0x50a0014,0x7c00900,0xfd230001,0x50a0016,0x4000000,0xc8e00c03,0x50a0016, +0x4000000,0xc8e00c0d,0x50a0016,0x7c00100,0xfce30c00,0x50a0016,0x7c00100,0xfce30c01,0x50a0016,0x7c00100,0xfe530c00,0x50a0016,0x7c00900,0xfd230c00,0x50a0016,0x7c00900, +0xfd230c01,0x540000c,0x4000010,0x4b00000,0x540000c,0x4000010,0x5071400,0x5400018,0xc000010,0x4b48000,0x5400020,0x7c00900,0x8230400,0x540004d,0xc000010,0x4448000, +0x5400062,0xc000010,0x4448000,0x540009a,0x4000000,0x4200000,0x54000d7,0x4000000,0x4e00000,0x54400cc,0x4000008,0xc881000a,0x54400cc,0x4000008,0xc941000a,0x54400cc, +0x4000010,0xc887000a,0x54400cc,0x6800004,0xc920000a,0x54400cc,0xc000010,0xc884800a,0x54400d5,0x3802500,0xc926246a,0x54400d5,0x7c00d00,0xca530c0a,0x54a00cc,0x6800004, +0xf9200000,0x54a00cc,0x24000000,0x4810000,0x54a00cc,0x24000000,0x5410000,0x54a00cc,0x24000008,0x4810000,0x54a00cc,0x24000008,0x5410000,0x54a00cc,0x24000010,0x4870000, +0x54a00cc,0x2c000010,0x4848000,0x54a00d2,0x4000000,0x4e00000,0x54a00d2,0x24000000,0x4e00000,0x54a00d2,0x24000002,0x4e00000,0x54a00d2,0x24000002,0x5200000,0x54a00d2, +0x24000008,0x4810000,0x54a00d2,0x24000008,0x5410000,0x54a00d2,0x24000008,0xc810000,0x54a00d5,0x7000400,0xc9200c02,0x54a00d5,0x7c00900,0x10930c00,0x54a00d5,0x7c00900, +0x10e30c00,0x54a00d5,0x7c00d00,0xfe530c00,0x54a00d7,0x4000000,0x4e00000,0x54a00d7,0x4000000,0xc8e00002,0x54a00d7,0x4000000,0xc8e00003,0x54a00d7,0x4000000,0xc8e0000d, +0x54a00d7,0x4000000,0xc8e0000f,0x54a00d7,0x7c00300,0xfce30000,0x5500023,0x24000000,0x14810000,0x5500023,0x24000000,0x15410000,0x580000a,0x2802400,0x18962460,0x5800029, +0x2802100,0xfc962460,0x5800029,0x2802500,0xfc962460,0x5800034,0x2802400,0x8962460,0x5800041,0x2802400,0x8962460,0x5820000,0x2802400,0xfc962460,0x5820000,0x2802500, +0xfc962460,0x58a00d5,0x2802400,0xfc962460,0x58a00d8,0x2802400,0x10962460,0x5c00004,0x2802400,0x8962460,0x5c00008,0x2802400,0x18962460,0x5c0002e,0x6800000,0xfd329800, +0x5c00032,0xc000010,0x4b48000,0x5c0007d,0x6800000,0xfd329800,0x5c00082,0x6800000,0xfd329800,0x5c00086,0x6800000,0xfd329800,0x5c0008a,0x6800000,0xfd329800,0x5c0008e, +0x4000000,0x4200000,0x5c0008e,0x6800000,0xfd329800,0x5c00093,0x6800000,0xfd329800,0x5d00027,0x7c00100,0xc8230408,0x8000000,0x4000000,0x5600000,0x8000013,0x2802400, +0x20962460,0x8000013,0x2802500,0x20962460,0x8000019,0x7c00100,0xc8220401,0x8000027,0x2802100,0xc8962461,0x8000027,0x2802100,0xfc962460,0x8000027,0x2802400,0x10962460, +0x8000027,0x2802400,0x20962460,0x8000027,0x2802400,0xfc962460,0x8000027,0x2802500,0xfc962460,0x8000027,0x2806400,0xfc962460,0x8000027,0x2902100,0xc0962462,0x8000027, +0x4000000,0x4200000,0x8000027,0x4000000,0x4400000,0x8000027,0x4000000,0x4500000,0x8000027,0x4000000,0x4810000,0x8000027,0x4000000,0x4b00000,0x8000027,0x4000000, +0x5410000,0x8000027,0x4000000,0xc8c0000b,0x8000027,0x4000000,0xf8400000,0x8000027,0x4000010,0x4b00000,0x8000027,0x4000010,0x4c00000,0x8000027,0x6800000,0xfd329800, +0x8000027,0x6800100,0xfc462540,0x8000027,0x6800400,0xfc962540,0x8000027,0x7c00100,0xc8230401,0x8000027,0x7c00100,0xfc230400,0x8000067,0,0x1900000,0x8000067, +0x1000,0,0x8020067,0,0,0x80a0012,0x7c00100,0xfdf304c1,0x80a0012,0x7c00100,0xfe0304e1,0x9000000,0x4000000,0x4700000,0x9020000,0x4000000, +0x5600000,0xc000000,0,0x4918820,0xc000000,0x4000000,0x4200000,0xc000000,0x4000000,0x5600000,0xc000000,0x4000010,0x4400000,0xc000000,0x4000400,0x4200400, +0xc000000,0x7c00100,0xc8220405,0xc000000,0x7c00500,0x10230400,0xc000000,0x7c00500,0xfc230400,0xc000000,0x24000000,0x4200000,0xc000000,0x2c000010,0xc9248002,0xc000001, +0x2000,0x14962460,0xc000002,0x4000000,0xf8200000,0xc000002,0x7c00100,0xfc230400,0xc000003,0x4000006,0xf8400400,0xc000005,0x4000400,0x4200400,0xc000006,0x7c00100, +0x40250400,0xc000008,0x2000,0xc962460,0xc000008,0x7c00100,0xfc220400,0xc000008,0x7c00100,0xfc220401,0xc000008,0x7c00100,0xfc250400,0xc000008,0x7c00100,0xfc250401, +0xc00000b,0x4000000,0x4200000,0xc00000b,0x4000010,0x4200000,0xc00000b,0x4000010,0x4400000,0xc00000b,0x6800000,0x8200000,0xc00000b,0x7c00100,0xfc230400,0xc00000b, +0xc000010,0x4248000,0xc00000e,0x7c00100,0x8220400,0xc00000e,0x7c00100,0x10220400,0xc000013,0x7c00100,0xca633801,0xc000017,0x2802100,0xfd862460,0xc000017,0x2802400, +0x9862460,0xc000017,0x2802400,0x11862460,0xc000017,0x2802400,0x19862460,0xc000017,0x2802400,0xfd862460,0xc000017,0x2806400,0xfd862460,0xc000017,0x2882000,0xc5862460, +0xc000017,0x4000000,0x4200000,0xc000017,0x4000000,0x5600000,0xc000017,0x4000000,0xc400000,0xc000017,0x4000010,0x4400000,0xc000017,0x4000010,0x5200000,0xc000017, +0x6800000,0xfd329800,0xc000017,0x6800100,0xfd862540,0xc000017,0x7c00100,0x9830000,0xc000017,0x7c00100,0xfd830000,0xc000017,0x7d00100,0xc1830000,0xc000017,0xc000010, +0x4448000,0xc000019,0x7c00100,0x8220400,0xc000019,0x7c00100,0x8250400,0xc000019,0x7c00100,0x10220400,0xc000019,0x7c00100,0x18250400,0xc000019,0x7c00100,0x20220400, +0xc000019,0x7c00100,0x20250400,0xc000019,0x7c00100,0xfc220401,0xc000019,0x7c00100,0xfc250401,0xc00001b,0x80000,0xc4c18820,0xc00001b,0x2802100,0xa0962460,0xc00001b, +0x3c02100,0x80962460,0xc00001b,0x4000000,0x84200000,0xc00001b,0x4000006,0x84500000,0xc00001b,0x4000010,0x84400000,0xc00001b,0x4000010,0x84b70000,0xc00001b,0x4000800, +0x84200000,0xc00001b,0x6800000,0x81329800,0xc00001b,0x7c00100,0x80230400,0xc00001b,0x7c00900,0x80230400,0xc00001b,0xc000010,0x84b48000,0xc00001b,0x12882000,0xc4962460, +0xc00001c,0x2802100,0xfd862460,0xc00001c,0x2802400,0xfd862460,0xc00001c,0x2806400,0xfd862460,0xc00001c,0x4000000,0x4200000,0xc00001c,0x6800100,0xfd862400,0xc00001c, +0x6800100,0xfd862540,0xc00001c,0x7c00100,0xfd830000,0xc00001c,0x7c00100,0xfd830001,0xc00001c,0xc000010,0x4448000,0xc00001d,0x4000000,0x84810000,0xc00001d,0x4000000, +0x85410000,0xc00001d,0x4000001,0x84445800,0xc00001d,0x7c00100,0x80230400,0xc000020,0x7c00100,0x80230400,0xc000021,0x2802100,0x30962460,0xc000021,0x2802100,0xfc962460, +0xc000021,0x2806400,0xfc962460,0xc000021,0x4000000,0x4200000,0xc000021,0x6800100,0x30962540,0xc000021,0x6800100,0xfc962540,0xc000021,0x6800100,0xfc962541,0xc000021, +0x7c00100,0x30230400,0xc000021,0x7c00100,0xfc230400,0xc000022,0x2802100,0x40962460,0xc000022,0x2802400,0x50962460,0xc000022,0x2802500,0x40962460,0xc000022,0x4000000, +0x44200000,0xc000022,0x4000010,0x44200000,0xc000022,0x7c00100,0x40230400,0xc000022,0xc000010,0x44248000,0xc000022,0x80000000,0x44218560,0xc000025,0x2802500,0xfc962460, +0xc000025,0x7c00100,0xfc230400,0xc000027,0x2802100,0xfc962460,0xc000027,0x2802400,0xfc962460,0xc000027,0x4000000,0x4200000,0xc000027,0x4000000,0x4400000,0xc000027, +0x7c00100,0xfc230400,0xc000028,0x4000000,0x44200000,0xc000028,0x7c00100,0x40230400,0xc000028,0xc000010,0x44248000,0xc00002e,0x24000000,0x14200000,0xc020000,0x4000400, +0x4500400,0xc020001,0x2802400,0x10962460,0xc020001,0x2802400,0x10c62460,0xc0a0000,0x4008000,0x4e00000,0xc0a0000,0x4010000,0x4e00000,0xc0a0005,0x7c00100,0xfce30400, +0xc0a0011,0x4020000,0x4e00000,0xc0a0011,0x4020000,0xc8e00002,0xc0a0011,0x7c00300,0xc8e30002,0xc0a0011,0x7c40300,0xfce30000,0xc0a0029,0x4000000,0x44e00000,0xc0a0029, +0x7c00100,0x40e30400,0xc0a0029,0x7c00900,0x41230400,0xc4000a0,0x4000010,0x84400000,0xc4000a0,0x4000010,0x84b70000,0xc4000a0,0xc000010,0x84b48000,0xc4000c7,0x4000001, +0xc8c41c0b,0xc4a00d7,0x4000000,0x4e00000,0xc800029,0x2802100,0xfc962460,0xcc00098,0x6800000,0xfd329800,0xd000000,0x80000,0xc4918820,0xd000000,0x82000,0xc4962460, +0xd000000,0x180000,0xc0918820,0xd000000,0x2802000,0x10962460,0xd000000,0x2802400,0x10962460,0xd000000,0x4000000,0x14200000,0xd000000,0x4000000,0xc8200001,0xd000000, +0x4000020,0xc8200005,0xd000000,0x6800020,0xc9329805,0xd000000,0x7c00120,0xc8220405,0xd000000,0x7c00120,0xc8250405,0xd000001,0x2802400,0x10962460,0xd000009,0x7c00100, +0x80220400,0xd000009,0x7c00100,0x80250400,0xd00000d,0x7c00100,0x80230400,0xd00000e,0x7c00120,0xc8220402,0xd00000e,0x7c00120,0xc8250402,0xd00001e,0x4000000,0x84200000, +0xd00001e,0x7c00100,0x80230400,0xd000067,0x1000,0,0xd0a0011,0x7c00300,0xc8e30001,0xd0a0011,0x7c40300,0xfce30000,0xe000000,0x80000,0xc5e18820,0xe000000, +0x80020,0xc4218820,0xe000000,0x4000000,0x4200000,0xe000000,0x4000000,0x5600000,0xe000000,0x4000001,0xc8445802,0xe000000,0x4000020,0x4200000,0xe000000,0x4000020, +0xc8200005,0xe000000,0x7c00120,0xc8220405,0xe000000,0x7c00120,0xc8250405,0xe000000,0x24000000,0x4100000,0xe000000,0x24000000,0x4200000,0xe000000,0x24000000,0x4810000, +0xe000000,0x24000000,0x5410000,0xe000000,0x24000000,0xc9500002,0xe000000,0x24000020,0x4200000,0xe000000,0x24000020,0x4810000,0xe000000,0x24000020,0x5410000,0xe000000, +0x24000020,0xc8200001,0xe000000,0x24000020,0xc8200002,0xe000000,0x2c000010,0xc9248002,0xe000001,0x2000,0x14962460,0xe000001,0x2802000,0x10962460,0xe000001,0x2802020, +0x10962460,0xe000002,0x4000000,0xc9500008,0xe000002,0x7c00100,0x8230400,0xe000002,0x7c00100,0x10230400,0xe000008,0x7c00100,0x8220400,0xe000008,0x7c00100,0x8250400, +0xe000008,0x7c00100,0xfc220400,0xe000008,0x7c00100,0xfc250400,0xe00000c,0x7c00100,0xfc230400,0xe00000e,0x4000020,0x4200000,0xe00000e,0x7c00100,0x8220400,0xe00000e, +0x7c00100,0x8250400,0xe000019,0x7c00100,0x20250400,0xe000019,0x7c00100,0xc822040f,0xe000025,0x7c00100,0xfc230400,0xe00002a,0x2802100,0x80962460,0xe00002a,0x2806400, +0x80962460,0xe00002a,0x7c00100,0x80230400,0xe00002b,0x2802100,0x80962460,0xe00002b,0x2806400,0x80962460,0xe00002b,0x7c00100,0x80230400,0xe00002c,0x2802100,0x80962460, +0xe00002c,0x7c00100,0x80230400,0xe00002d,0x2802100,0x80962460,0xe00002d,0x7c00100,0x80230400,0xe020000,0x4000000,0x14100000,0xe020001,0x2882000,0xc4c62460,0xe020001, +0x12882000,0xc4962460,0xe060000,0x4000000,0xc8810011,0xe060000,0x4000000,0xc9410011,0xe080000,0x24000020,0x4810000,0xe080000,0x24000020,0x5410000,0xe0a0000,0x4000000, +0xc8e00003,0xe0a0000,0x24000020,0x4200000,0xe0a0011,0x7c00100,0x11230400,0xe0a0011,0x7c00300,0xc8e30001,0xe0a0014,0x7c00100,0xc8e30010,0xe0a0014,0x7c00100,0xfe530000, +0xe0a0016,0x7c00100,0xa530c00,0xe0a0016,0x7c00100,0xc8e30c10,0xe0a0029,0x4000000,0x44e00000,0xe40009c,0xc000010,0x84448000,0xe4a00d2,0x24000000,0x14e00000,0xe4a00d5, +0x4000002,0xf9200c00,0xe4a00da,0x4000000,0x4e00000,0xe4a00da,0x7c00100,0x11230400,0xe820001,0x2802100,0x8962460,0x10000000,0x4000000,0x14200000,0x10000000,0x4000000, +0xc8200002,0x10000000,0x4000400,0x4200400,0x10000000,0x6800000,0x20201c00,0x10000000,0x7c00120,0xc8220405,0x10000000,0x24000000,0x4200000,0x10000000,0x24000002,0x4200000, +0x10000000,0x24000020,0x4200000,0x10000002,0x2802100,0x20962460,0x10000002,0x2802400,0x20962460,0x10000002,0x2802500,0x20962460,0x10000002,0x4000000,0x4200000,0x10000002, +0x4000000,0x5071400,0x10000002,0x7c00100,0xfc230400,0x10000002,0x80000000,0x5329960,0x10000004,0x7c00100,0xfc230400,0x10000008,0x7c00100,0x10220400,0x10000009,0x7c00100, +0x80220400,0x10000009,0x7c00100,0x80250400,0x1000000a,0x7c00100,0xfc230400,0x1000000e,0x7c00100,0x8220400,0x1000000e,0x7c00100,0x8250400,0x1000000e,0x7c00100,0x10220400, +0x1000000e,0x7c00100,0xc8250402,0x1000000e,0x7c00500,0xc822040e,0x1000000e,0x7c00500,0xc822040f,0x1000000f,0x2802100,0xfc962460,0x1000000f,0x4000000,0x5600000,0x1000000f, +0x7c00100,0xfc230400,0x10000010,0x2802100,0xfc962460,0x10000010,0x6800100,0xfc962540,0x10000015,0x2802400,0xfc962460,0x10000015,0x7c00100,0xfc230400,0x10000017,0x2802400, +0x19862460,0x10000017,0x4000000,0x4200000,0x10000019,0x7c00100,0x10220400,0x10000019,0x7c00100,0x20220400,0x10000019,0x7c00500,0x10220400,0x10000019,0x7c00500,0xc822040e, +0x10000019,0x7c00500,0xc822040f,0x1000001f,0x7c00100,0xfc230400,0x10000022,0x7c00100,0x40230400,0x10000023,0x4000000,0x4200000,0x10000023,0x4000000,0x5600000,0x1000002f, +0x7c00100,0x80230400,0x10000030,0x2802100,0x40962460,0x10000030,0x2802400,0x40962460,0x10000030,0x4000000,0x44200000,0x10000030,0x6800000,0x41329800,0x10000030,0x6800100, +0x40962540,0x10000030,0x7c00100,0x40230400,0x10000030,0xc000010,0x44b48000,0x10000031,0x7c00100,0x80230400,0x10000032,0x6800000,0x81329800,0x10000032,0x7c00100,0x80230400, +0x10000033,0x7c00100,0x80230400,0x10000034,0x7c00100,0x41830000,0x10000035,0x4000010,0x84400000,0x10000035,0x7c00100,0x80230400,0x10020000,0x4000000,0x14200000,0x10020001, +0x2802400,0x10962460,0x10020001,0x2802400,0x10c62460,0x10020001,0x12882000,0xc4962460,0x100a0000,0x4000000,0xc8810010,0x100a0000,0x4000000,0xc8e0000d,0x100a0000,0x4000000, +0xc9410010,0x100a0000,0x24000000,0x4200000,0x100a0000,0x24000000,0x4e00000,0x100a0012,0x4000000,0xc8e00002,0x100a0012,0x4000000,0xc8e00003,0x10500029,0x4000000,0x84200000, +0x1050002c,0x4000000,0x84400000,0x1050002f,0x4000000,0x84200000,0x1050002f,0x4000000,0x84400000,0x10c0008e,0x4000000,0x4200000,0x10d00027,0x4000000,0x14200000,0x11000000, +0x4000000,0x4200000,0x11000000,0x4000000,0x5600000,0x11000000,0x4000400,0x14200400,0x11000000,0x7c00120,0xc8220405,0x11000000,0x24000000,0x4200000,0x11000000,0x24000000, +0x4e00000,0x11000000,0x24000000,0x5710000,0x11000000,0x24000000,0xc200000,0x11000000,0x24000000,0xc400000,0x11000000,0x24000000,0x1d710000,0x11000000,0x24000006,0x4400000, +0x11000000,0x24000020,0x4200000,0x11000000,0x24000020,0x4810000,0x11000000,0x24000020,0x5410000,0x11000001,0x2802000,0x18962460,0x11000001,0x2802020,0x10962460,0x11000002, +0x2802100,0x20962460,0x11000002,0x4000000,0x5500000,0x11000002,0x7c00100,0xfc230400,0x11000002,0xc000010,0x4b48000,0x11000004,0x7c00100,0xfc230400,0x11000007,0x4000000, +0x84200000,0x11000007,0x4000000,0x84400000,0x11000007,0x4000000,0x84b00000,0x11000007,0x7c00100,0x80220400,0x11000007,0x7c00100,0x80250400,0x11000008,0x7c00100,0xc822040f, +0x11000008,0x7c00100,0xfc220400,0x11000008,0x7c00100,0xfc250400,0x1100000a,0x7c00100,0xfc230400,0x1100000b,0x2802400,0xfc962460,0x1100000b,0x4000000,0x4200000,0x1100000b, +0x7c00100,0xfc230400,0x1100000c,0x7c00100,0x8220400,0x1100000c,0x7c00100,0xc822040f,0x1100000c,0x7c00100,0xfc230400,0x1100000e,0x2802000,0x18962460,0x1100000e,0x4000000, +0x4200000,0x1100000e,0x4000000,0xc200000,0x1100000e,0x7c00100,0x8230400,0x1100000e,0x7c00100,0xc822040f,0x1100000e,0x7c00100,0xfc220400,0x1100000e,0x7c00100,0xfc250400, +0x11000013,0x2802000,0x28962460,0x11000013,0x2802100,0x28962460,0x11000013,0x2802100,0x30962460,0x11000013,0x4000000,0xcb00000,0x11000019,0x7c00100,0x10220400,0x11000019, +0x7c00100,0x20220400,0x11000019,0x7c00100,0x20250400,0x11000019,0x7c00100,0xc822040e,0x11000019,0x7c00100,0xc822040f,0x11000023,0x7c00100,0xfc230400,0x11000027,0x4000000, +0x4500000,0x11000037,0x2802100,0x80962460,0x11000037,0x4000000,0x84200000,0x11000037,0x6800100,0x80962540,0x11000037,0x7c00100,0x80230400,0x11000038,0x7c00100,0x80220400, +0x11000038,0x7c00100,0x80250400,0x11000039,0x2802100,0x80962460,0x11000039,0x2802400,0x80962460,0x11000039,0x2806400,0x80962460,0x11000039,0x4000000,0x84200000,0x11000039, +0x4000000,0x84400000,0x11000039,0x7c00100,0x80230400,0x11000039,0xc000010,0x84448000,0x1100003a,0x2802100,0x40962460,0x1100003a,0x2806400,0x40962460,0x1100003a,0x4000000, +0x44200000,0x1100003a,0x6800100,0x40962540,0x1100003a,0x7c00100,0x40230400,0x1100003b,0x4000000,0x45800000,0x1100003b,0x6800000,0x41329800,0x1100003b,0x7c00100,0x41830000, +0x1100003b,0x7e00100,0x41830000,0x1100003c,0x7c00100,0x40230400,0x1100003c,0x7c00100,0xc823040f,0x1100003d,0x4000010,0x84400000,0x1100003d,0x7c00100,0x80230400,0x11020001, +0x2802000,0x10962460,0x11020001,0x2802000,0x10c62460,0x11020001,0x2802000,0x20962460,0x110a0000,0x4000000,0xc8800010,0x110a0000,0x4000000,0xc8810010,0x110a0000,0x4000000, +0xc8870010,0x110a0000,0x4000000,0xc8b00010,0x110a0000,0x4000000,0xc8f00010,0x110a0000,0x4000000,0xc9001410,0x110a0000,0x4000000,0xc9071010,0x110a0000,0x4000000,0xc9071410, +0x110a0000,0x4000000,0xc9410010,0x110a0000,0x24000000,0x4200000,0x110a0000,0x24000000,0x4e00000,0x110a0011,0x7c00300,0xc8e30001,0x110a0011,0x7c40300,0xfce30000,0x110a0012, +0x4000000,0xc8e00003,0x114000dd,0x4000400,0xc200000,0x114a00d7,0x4000000,0x4e00000,0x11800000,0x2802000,0x18962460,0x11c0008e,0x6800000,0xfd329800,0x14000000,0x4000000, +0x4200000,0x14000000,0x4000400,0x4200400,0x14000000,0x7c00120,0xc8220405,0x14000000,0x7c00120,0xc8250405,0x14000000,0x7c00500,0xfc230400,0x14000000,0x24000000,0x4200000, +0x14000000,0x24000020,0x4200000,0x14000001,0x2802020,0x10962460,0x14000001,0x2802400,0x10962460,0x14000008,0x7c00100,0xfc220400,0x14000008,0x7c00100,0xfc250400,0x1400000a, +0x7c00100,0xfc230400,0x1400000e,0x7c00100,0xfc220400,0x14000013,0x2802500,0x20962460,0x14000015,0x2802100,0xfc962460,0x14000015,0x7c00100,0xfc230400,0x14000019,0x7c00100, +0x8220400,0x14000019,0x7c00100,0x8250400,0x14000019,0x7c00100,0x10220400,0x14000019,0x7c00100,0x10250400,0x14000019,0x7c00100,0x20220400,0x14000019,0x7c00100,0x20250400, +0x1400003e,0x2802100,0x40962460,0x1400003e,0x2802400,0x40962460,0x1400003e,0x2802400,0x50962460,0x1400003e,0x2806400,0x42f62460,0x1400003e,0x4000000,0x44400000,0x1400003e, +0x4000000,0x44e00000,0x1400003e,0x4000010,0x44400000,0x1400003e,0x6800000,0x42d29800,0x1400003e,0x6800100,0x40962540,0x1400003e,0x6800100,0x40962541,0x1400003e,0x7c00100, +0x42b30400,0x1400003e,0x7c00100,0x42b30401,0x1400003e,0xc000010,0x44448000,0x14000057,0x2802400,0x40962460,0x14000057,0x4000000,0x44200000,0x14000057,0x4000010,0x45071400, +0x14000057,0x6800000,0x41329800,0x14000057,0x7c00100,0x40230400,0x14000057,0x7c00100,0x48230400,0x14000057,0x7c00500,0x40230400,0x14000057,0x7c00900,0x48230400,0x14000057, +0xc000010,0x44b48000,0x1400005a,0x4000000,0x84500000,0x1400005a,0x7c00100,0x80230400,0x1400005a,0xc000010,0x84b48000,0x1400005b,0x4000000,0x84200000,0x1400005b,0x4000010, +0x84400000,0x1400005b,0x7c00100,0x80230400,0x14000065,0x4000010,0x84400000,0x14000065,0x7c00100,0x80230400,0x144000d7,0x4000000,0x4200000,0x15000000,0x80020,0xc4218820, +0x15000000,0x4000000,0x4200000,0x15000000,0x4000000,0x4e00000,0x15000000,0x4000000,0xc200000,0x15000000,0x4000000,0x14200000,0x15000000,0x4000400,0x4200400,0x15000000, +0x7c00500,0xfc230400,0x15000000,0x24000000,0x4200000,0x15000000,0x24000000,0x4400000,0x15000000,0x24000000,0x4810000,0x15000000,0x24000000,0x4e00000,0x15000000,0x24000000, +0x5400000,0x15000000,0x24000000,0x5410000,0x15000000,0x24000000,0x5710000,0x15000000,0x24000000,0xc400000,0x15000000,0x24000000,0x84400000,0x15000000,0x24000002,0x4200000, +0x15000000,0x24000020,0x4200000,0x15000000,0x24000020,0x4810000,0x15000000,0x24000020,0x5410000,0x15000000,0x24000500,0xc230400,0x15000000,0x2c000010,0xcb48000,0x15000001, +0x2802000,0x8962460,0x15000001,0x2802000,0x10962460,0x15000001,0x2802000,0x18962460,0x15000001,0x2802100,0x18962460,0x15000001,0x2802400,0x10962460,0x15000001,0x2802400, +0x10c62460,0x15000001,0x2802400,0x18962460,0x15000002,0x2802100,0x20962460,0x15000002,0x4000000,0x5500000,0x15000002,0x4000020,0x4200000,0x15000002,0x7c00100,0xfc230400, +0x15000008,0x2000,0xc962460,0x15000008,0x2802100,0x8962460,0x15000008,0x2802400,0x20962460,0x15000008,0x4000000,0x4200000,0x15000008,0x4000000,0xc200000,0x15000008, +0x7c00100,0x8220400,0x15000008,0x7c00100,0x8230400,0x15000008,0x7c00100,0x8250400,0x15000008,0x7c00100,0xfc220400,0x15000008,0x7c00100,0xfc250400,0x15000008,0x7c00500, +0xfc230400,0x1500000a,0x7c00100,0xfc230400,0x1500000a,0x7c00500,0xfc230400,0x1500000e,0x7c00100,0x8220400,0x1500000e,0x7c00100,0x8250400,0x1500000e,0x7c00100,0x10250400, +0x15000010,0x2802100,0x20962460,0x15000019,0x7c00100,0x8220400,0x15000019,0x7c00100,0x8230400,0x15000019,0x7c00100,0x8250400,0x15000019,0x7c00100,0x10220400,0x15000019, +0x7c00100,0x10250400,0x15000019,0x7c00100,0x18220400,0x15000019,0x7c00100,0x18250400,0x15000019,0x7c00100,0x20220400,0x15000019,0x7c00100,0x20250400,0x15000019,0x7c00100, +0xc822040e,0x15000019,0x7c00100,0xc822040f,0x15000019,0x7c00100,0xfc250400,0x1500001a,0x2802100,0x20962460,0x1500001a,0x4000000,0x4200000,0x1500001a,0x4000000,0x5500000, +0x1500001a,0x7c00100,0xfc230400,0x1500001b,0x7c00100,0x80230400,0x1500001c,0x2802100,0xfd862460,0x1500001c,0x2802500,0xfd862460,0x1500001c,0x2806400,0xfd862460,0x1500001c, +0x4000000,0x5800000,0x1500001c,0x6800000,0xfd329800,0x1500001c,0x6800100,0xfd862400,0x1500001c,0x6800100,0xfd862540,0x1500001c,0x6800500,0xfd862400,0x1500001c,0x7c00100, +0xfd830000,0x1500001f,0x2802100,0x20962460,0x15000023,0x7c00100,0xfc230400,0x15000024,0x2802100,0x20962460,0x15000024,0x4000000,0x4200000,0x15000024,0x7c00100,0x8230400, +0x15000024,0x7c00100,0xfc230400,0x15000027,0x4000000,0x4200000,0x15000027,0x4000000,0x4400000,0x15000027,0x4000000,0x4500000,0x15000027,0x7c00100,0xfc230400,0x15000042, +0x2802100,0x40962460,0x15000042,0x4000000,0x44e00000,0x15000042,0x6800000,0x42d29800,0x15000042,0x6800100,0x40962540,0x15000042,0x7c00100,0x40430400,0x15000042,0x7c00100, +0x42d30400,0x15000042,0xc000010,0x44448000,0x1500004f,0x2802100,0x40962460,0x1500004f,0x2802400,0x40962460,0x1500004f,0x6800000,0x41329800,0x1500004f,0x7c00100,0x40230400, +0x1500004f,0xc000010,0x44448000,0x15000052,0x2802100,0x40962460,0x15000052,0x2802400,0x40962460,0x15000052,0x2802d00,0x40962460,0x15000052,0x4000010,0x44400000,0x15000052, +0x6800000,0x41329800,0x15000052,0x6800100,0x40962540,0x15000052,0x7c00100,0x40230400,0x15000052,0xc000010,0x44448000,0x15000063,0x4000010,0x44400000,0x15000063,0x6800000, +0x41329800,0x15000063,0x7c00100,0x40230400,0x15000063,0x7c00100,0x48230400,0x15000063,0x7c00900,0x40230400,0x15000063,0xc000010,0x44448000,0x15000063,0xc000010,0x44b48000, +0x15000068,0x7c00100,0x80230400,0x1500006b,0x7c00100,0x80230400,0x1500006c,0x4000000,0x84200000,0x1500006c,0x7c00100,0x80230400,0x1500006d,0x6800000,0x41329800,0x1500006d, +0x7c00100,0x40230400,0x1500006d,0x7c00500,0x40230400,0x1500006d,0x7c00d00,0x40230400,0x1500006d,0xc000010,0x44448000,0x1500006e,0x2802100,0x80962460,0x1500006e,0x2806400, +0x80962460,0x1500006e,0x4000000,0x84200000,0x1500006e,0x6800100,0x80962540,0x1500006e,0x7c00100,0x80230400,0x1500006f,0x2806400,0x40962460,0x1500006f,0x6800000,0x41329800, +0x1500006f,0x6800100,0x40962540,0x1500006f,0x7c00100,0x40230400,0x1500006f,0xc000010,0x44448000,0x15000071,0x2802100,0x40962460,0x15000071,0x2806400,0x40962460,0x15000071, +0x6800000,0x41329800,0x15000071,0x6800100,0x40962540,0x15000071,0x7c00100,0x40230400,0x15080000,0x24000020,0x4810000,0x15080000,0x24000020,0x5410000,0x150a0000,0x4000000, +0x4e00000,0x150a0000,0x24000000,0x4200000,0x150a0005,0x7c00100,0xfce30400,0x150a0011,0x7c40300,0xfce30000,0x154a00d7,0x4000000,0x4e00000,0x1550001e,0x4000400,0x4400000, +0x158000c9,0x2802000,0x10962460,0x15c00008,0x2802400,0x18962460,0x15c00008,0x2802400,0x20962460,0x16000000,0x4000000,0x4200000,0x16000000,0x4000000,0x5500000,0x16000000, +0x4000000,0x5600000,0x16000000,0x4000000,0xc8200003,0x16000000,0x4000000,0xc8200006,0x16000000,0x24000000,0x4200000,0x16000000,0x24000000,0xc400000,0x16000001,0x2802400, +0x10962460,0x16000002,0x4000000,0x4200000,0x16000004,0x4000000,0x5600000,0x16000007,0x2802400,0x80962460,0x16000007,0x2802400,0x90962460,0x16000007,0x7c00100,0x80220400, +0x16000007,0x7c00100,0x80250400,0x16000008,0x7c00100,0xfc220400,0x16000008,0x7c00100,0xfc250400,0x1600000a,0x2802100,0x20962460,0x1600000a,0x2802400,0x8962460,0x1600000a, +0x4000000,0xc200000,0x1600000a,0x6800100,0x8962540,0x1600000a,0x7c00100,0x8230400,0x1600000a,0x7c00100,0xfc230400,0x16000012,0x7c00100,0xa230500,0x16000012,0x7c00100, +0xa330520,0x16000019,0x7c00100,0x8250400,0x1600001c,0x2802100,0xfd862460,0x1600001c,0x4000000,0x5800000,0x1600001c,0x6800100,0xfd862400,0x1600001c,0x6800500,0xfd862400, +0x1600001c,0x7c00100,0xfd830000,0x1600001c,0x7c00900,0xfd830000,0x16000028,0x4000002,0x44400000,0x16000028,0x7c00100,0x40230400,0x1600003b,0x6800000,0x41800000,0x1600003b, +0x7c00100,0x41830000,0x16000047,0x7c00100,0x80230400,0x16000047,0x7c00100,0x80830400,0x16000047,0x7c00100,0x81430400,0x1600004e,0x2802100,0x40962460,0x1600004e,0x2802400, +0x40962460,0x1600004e,0x2806400,0x42f62460,0x1600004e,0x4000000,0x44e00000,0x1600004e,0x4000010,0x44400000,0x1600004e,0x6800000,0x42d29800,0x1600004e,0x6800100,0x40962540, +0x1600004e,0x7c00100,0x42b30400,0x1600004e,0xc000010,0x44448000,0x16000058,0x7c00100,0x80230400,0x1600005b,0x4000000,0x84200000,0x1600006a,0x2802100,0x41862460,0x1600006a, +0x2802400,0x40962460,0x1600006a,0x2802400,0x41862460,0x1600006a,0x2806400,0x41862460,0x1600006a,0x4000000,0x45800000,0x1600006a,0x6800000,0x41329800,0x1600006a,0x6800100, +0x41862400,0x1600006a,0x6800100,0x41862540,0x1600006a,0x7c00100,0x41830000,0x1600006a,0x7c00900,0x41830000,0x1600006a,0xc000010,0x45848000,0x16000073,0x2802100,0x40962460, +0x16000073,0x2806400,0x40962460,0x16000073,0x6800000,0x41329800,0x16000073,0x6800100,0x40962540,0x16000073,0x6800400,0x40962540,0x16000073,0x7c00100,0x40230400,0x16000073, +0xc000010,0x44448000,0x16000074,0x4000000,0x84200000,0x16000074,0x4000010,0x84400000,0x16000074,0x7c00100,0x80230400,0x16000075,0x4000000,0x84400000,0x16000075,0x4000010, +0x84400000,0x16000075,0x7c00100,0x80230400,0x16000078,0x2802100,0x80962460,0x16000078,0x2802400,0x80962460,0x16000078,0x2806400,0x80962460,0x16000078,0x4000000,0x84200000, +0x16000078,0x6800100,0x80962540,0x16000078,0x7c00100,0x80230400,0x16000078,0x7c00100,0x80230401,0x16000078,0xc000010,0x84448000,0x16000078,0x80000000,0x85329960,0x1600007a, +0x4000000,0x84200000,0x1600007a,0x7c00100,0x80230400,0x1600007d,0x4000000,0x84200000,0x1600007d,0x7c00100,0x80230400,0x1600007e,0x2802000,0x80962460,0x1600007e,0x2802100, +0x80962460,0x1600007e,0x2802400,0x80962460,0x1600007e,0x4000010,0x84200000,0x1600007e,0x7c00100,0x80230400,0x1600007e,0xc000010,0x84248000,0x1600007f,0x2802100,0x41862460, +0x1600007f,0x2802400,0x41862460,0x1600007f,0x4000000,0x45800000,0x1600007f,0x4000010,0x45800000,0x1600007f,0x7c00100,0x41830000,0x1600007f,0x7c00500,0x41830000,0x1600007f, +0x7c00900,0x41830000,0x1600007f,0x7e00100,0x41830000,0x16000082,0x2802400,0x40962460,0x16000082,0x4000000,0x44200000,0x16000082,0x4000010,0x44400000,0x16000082,0x7c00100, +0x40230400,0x16000082,0xc000010,0x44448000,0x16000083,0x4000010,0x44400000,0x16000083,0x7c00100,0x40230400,0x16000083,0xc000010,0x44448000,0x16000085,0x4000000,0x84200000, +0x16000085,0x7c00100,0x80230400,0x16020000,0x4000000,0x4100000,0x16020000,0x4000000,0xc8100002,0x16020000,0x4000000,0xc8100003,0x16020000,0x4000000,0xc8100006,0x16020000, +0x4000000,0xc810000d,0x16020000,0x4000100,0x4150400,0x16020000,0x4000100,0xc815040d,0x16020000,0x24000000,0x4100000,0x16020000,0x24000000,0x4e00000,0x16020000,0x24000000, +0x6800000,0x160a0000,0x4000000,0xc8e00002,0x160a0000,0x4000000,0xc8e0000d,0x160a0000,0x24000000,0x4100000,0x160a0000,0x24000000,0x4e00000,0x160a0011,0x7c00300,0xc8e30001, +0x160a0011,0x7c40300,0xfce30000,0x160a0012,0x7c00100,0xa130480,0x160a0014,0x4000000,0xc8e0000d,0x164000a2,0x7c00100,0x8230400,0x164000a7,0x4000400,0xc200000,0x164000a9, +0x6800400,0x8962540,0x164000a9,0x7c00100,0x8230400,0x164000b3,0x7c00100,0x8230400,0x164000b5,0x7c00100,0x8230400,0x164000df,0x4000000,0x4200000,0x164000ef,0x4000000, +0x4200000,0x164000fe,0x4000000,0x4200000,0x164a00d7,0x4000000,0xc8e00003,0x16500009,0x4000000,0x5500000,0x16500021,0x7c00900,0x60430400,0x168000a2,0x2802400,0x8962460, +0x168000a3,0x2802400,0x8962460,0x168000a9,0x2802400,0x8962460,0x168000ab,0x2802400,0x8962460,0x168000ad,0x2802400,0x8962460,0x16d00018,0x2802400,0x8962460,0x16d0001c, +0x7c00100,0x8230400,0x18000000,0x4000000,0x4200000,0x18000000,0x4000000,0x4e00000,0x18000000,0x4000000,0x5600000,0x18000000,0x4000000,0x6703580,0x18000000,0x24000000, +0x4200000,0x18000000,0x24000000,0x4e00000,0x18000000,0x24000000,0x5710000,0x18000000,0x24000020,0x4200000,0x18000001,0x2802400,0x10c62460,0x18000002,0x2802100,0x20962460, +0x18000002,0x4000000,0x14200000,0x18000002,0x7c00100,0xfc230400,0x18000008,0x7c00100,0x8220400,0x18000008,0x7c00100,0x8250400,0x18000008,0x7c00100,0xfc220400,0x18000008, +0x7c00100,0xfc250400,0x1800000a,0x2802100,0xfc962460,0x1800000a,0x6800100,0xfc962540,0x1800000a,0x7c00100,0xfc230400,0x1800000b,0x2802400,0xfc962460,0x1800000b,0x7c00100, +0xfc230400,0x18000019,0x7c00100,0x8220400,0x18000019,0x7c00100,0x8250400,0x18000019,0x7c00100,0x10220400,0x18000019,0x7c00100,0xc822040e,0x18000019,0x7c00100,0xfc250400, +0x1800001a,0x7c00100,0xfc230400,0x1800001a,0x7c00100,0xfc230560,0x1800001f,0x4000000,0x4200000,0x18000027,0x2802100,0xfc962460,0x18000027,0x4000000,0x4c00000,0x18000027, +0x7c00100,0xfc230400,0x1800003c,0x2806000,0x40962460,0x1800003c,0x4000000,0x44400000,0x1800003f,0x2802100,0x40962460,0x1800003f,0x2802400,0x40962460,0x1800003f,0x2806400, +0x42e62460,0x1800003f,0x4000000,0x44200000,0x1800003f,0x6800100,0x40962540,0x1800003f,0x7c00100,0x42d30400,0x18000041,0x2802100,0x80962460,0x18000041,0x2806400,0x82f62460, +0x18000041,0x4000000,0x84e00000,0x18000041,0x4000010,0x84e00000,0x18000041,0x6800000,0x82d29800,0x18000041,0x6800100,0x80962540,0x18000041,0x7c00100,0x82b30400,0x18000041, +0x7c00100,0x82c30400,0x18000041,0xc000010,0x84448000,0x18000054,0x2802000,0x40962460,0x18000054,0x4000010,0x44200000,0x18000054,0x7c00100,0x40230400,0x18000082,0x7c00100, +0x40230400,0x18020000,0x4000000,0x4100000,0x18020000,0x4000000,0xc810000d,0x18020000,0x4000100,0x4150400,0x18020000,0x4000100,0xc815040d,0x180a0000,0x4000000,0x4100000, +0x180a0000,0x4000000,0x4200000,0x180a0000,0x4000000,0x4e00000,0x180a0000,0x4000000,0x6800000,0x180a0000,0x4000000,0xc8e0000d,0x180a0000,0x24000000,0x4200000,0x180a0000, +0x24000000,0x4e00000,0x180a0000,0x24000000,0x6800000,0x180a0005,0x7c00100,0xfce30400,0x180a0011,0x7c40300,0xfce30000,0x180a0014,0x7c00100,0x8e30000,0x180a0016,0x7c00100, +0x8e30c00,0x184a00d7,0x4000000,0xc8e00003,0x19000000,0x4000000,0x4200000,0x19000000,0x4000000,0xc820000f,0x19000000,0x24000000,0x4200000,0x19000000,0x24000000,0x4400000, +0x19000000,0x24000000,0xc200000,0x19000000,0x24000002,0x4300000,0x19000000,0x24000020,0x4200000,0x19000002,0x2802400,0x20962460,0x19000002,0x2802500,0x20962460,0x19000002, +0x4000020,0x4200000,0x19000002,0x7c00100,0xfc230400,0x19000002,0x7c00120,0xc8230405,0x19000002,0x80000000,0x5329960,0x19000003,0x4000000,0x5600000,0x19000007,0x7c00100, +0x80220400,0x19000007,0x7c00100,0x80250400,0x19000008,0x2802100,0x8962460,0x1900000c,0x7c00100,0xfc220400,0x1900000c,0x7c00100,0xfc230400,0x1900000c,0x7c00100,0xfc250400, +0x1900000f,0x4000000,0x4200000,0x19000018,0x7c00100,0xfd830000,0x19000019,0x7c00100,0xfc220400,0x19000019,0x7c00100,0xfc250400,0x19000019,0x7c00500,0xc822040f,0x1900003c, +0x7c00100,0x40230400,0x19000056,0x7c00100,0x80230400,0x1900005c,0x2802500,0x40962460,0x1900005c,0x6800100,0x40962540,0x1900005c,0x7c00100,0x40230400,0x1900005c,0x7c00500, +0x40230400,0x19000071,0x2802100,0x40962460,0x19000071,0x2806400,0x40962460,0x19000071,0x4000000,0x44200000,0x19000071,0x7c00100,0x40230400,0x19000073,0x2802100,0x40962460, +0x19000073,0x2806400,0x40962460,0x19000073,0x6800100,0x40962540,0x19000073,0x7c00100,0x40230400,0x19000073,0x7c00900,0x40230400,0x19000073,0xc000010,0x44448000,0x19000076, +0x2802100,0x40962460,0x19000076,0x2802100,0x40962461,0x19000076,0x2806400,0x40962460,0x19000076,0x4000000,0x44400000,0x19000076,0x6800000,0x41329800,0x19000076,0x6800100, +0x40962540,0x19000076,0x7c00100,0x40230400,0x19000076,0xc000010,0x44448000,0x1900008d,0x7c00100,0x80230400,0x19000097,0x2802100,0x80962460,0x19000097,0x2806400,0x80962460, +0x19000097,0x4000000,0x84200000,0x19000097,0x4000000,0x84400000,0x19000097,0x6800000,0x81329800,0x19000097,0x6800100,0x80962540,0x19000097,0x7c00100,0x80230400,0x19000097, +0x7c00100,0x80230560,0x19000097,0xc000010,0x84448000,0x19000098,0x6800000,0x81329800,0x19000098,0x7c00100,0x80230400,0x19000099,0x2802100,0x80962460,0x19000099,0x2802400, +0x80962460,0x19000099,0x2806400,0x80962460,0x19000099,0x6800000,0x81329800,0x19000099,0x6800100,0x80962540,0x19000099,0x7c00100,0x80230400,0x190a0000,0x4000000,0x4e00000, +0x190a0011,0x7c00300,0xc8e30001,0x190a0011,0x7c40300,0xfce30000,0x194000a7,0x7c00100,0x8230400,0x194000a9,0x7c00100,0x8230400,0x198000c0,0x2802400,0x8962460,0x1a000000, +0x4000000,0x5600000,0x1b000000,0x80000,0xc4918820,0x1bc00016,0x80000,0xc4918820,0x1c000000,0x4000000,0x4100000,0x1c000000,0x4000000,0x4200000,0x1c000000,0x4000000, +0x4e00000,0x1c000000,0x4000000,0x5200000,0x1c000000,0x4000000,0x5500000,0x1c000000,0x4000000,0x5600000,0x1c000000,0x4000000,0x5710000,0x1c000000,0x4000000,0x6800000, +0x1c000000,0x4000400,0x4200400,0x1c000000,0x24000000,0x4200000,0x1c000000,0x24000000,0x4400000,0x1c000000,0x24000000,0x4e00000,0x1c000000,0x24000002,0x4400000,0x1c000000, +0x24000008,0x5410000,0x1c000000,0x24000010,0x4400000,0x1c000000,0x2c000010,0x4448000,0x1c000000,0x80000000,0x5329960,0x1c000001,0x2400,0x4962460,0x1c000001,0x2802100, +0x10962460,0x1c000001,0x2802400,0x8962460,0x1c000001,0x2802400,0x10962460,0x1c000002,0x2802100,0x20962460,0x1c000002,0x7c00100,0x8230400,0x1c000002,0x7c00100,0xfc230400, +0x1c000003,0x4000000,0x4200000,0x1c000004,0x7c00100,0x8230400,0x1c000008,0x7c00100,0x8220400,0x1c000008,0x7c00100,0x8250400,0x1c000008,0x7c00100,0xfc220400,0x1c000008, +0x7c00100,0xfc250400,0x1c000008,0x7c00500,0xc822040f,0x1c00000a,0x7c00100,0x8230400,0x1c00000e,0x4000000,0x4200000,0x1c00000e,0x7c00100,0x8220400,0x1c00000e,0x7c00100, +0x8250400,0x1c000015,0x2802100,0x8962460,0x1c000019,0x7c00100,0x8220400,0x1c000019,0x7c00100,0x8230400,0x1c000019,0x7c00100,0x8250400,0x1c000019,0x7c00500,0xc822040f, +0x1c00001a,0x2802100,0x8962460,0x1c00001c,0x2802500,0x9862460,0x1c00001c,0x2802500,0xfd862460,0x1c00001c,0x6800000,0xfd329800,0x1c00001c,0x6800500,0xfd862400,0x1c00001c, +0x7c00100,0x9830000,0x1c00001c,0x7c00100,0xfd830000,0x1c00001c,0x7c00900,0x9830000,0x1c00001e,0x7c00100,0x80230400,0x1c000020,0x7c00100,0x80230400,0x1c000021,0x4000000, +0x4200000,0x1c000021,0x6800000,0x9329800,0x1c000024,0x2802100,0x8962460,0x1c000024,0x7c00100,0x8230400,0x1c000030,0x7c00100,0x40230400,0x1c000041,0x2806000,0x80c62460, +0x1c00004b,0x2802400,0x80962460,0x1c00004b,0x4000000,0x84200000,0x1c00004b,0x4000010,0x84400000,0x1c00004b,0x6800000,0x81329800,0x1c00004b,0x7c00100,0x80230400,0x1c00004b, +0x7c00900,0x80230400,0x1c00004b,0xc000010,0x84448000,0x1c000053,0x7c00100,0x80230400,0x1c000059,0x2802100,0x80962460,0x1c000059,0x7c00100,0x80230400,0x1c000065,0x4000010, +0x84400000,0x1c000065,0x7c00100,0x80230400,0x1c000079,0x2802400,0x80962460,0x1c000079,0x4000000,0x84200000,0x1c000079,0x4000000,0x84f00000,0x1c000079,0x4000010,0x84400000, +0x1c000079,0x7c00100,0x80230400,0x1c00007b,0x4000000,0x84200000,0x1c00007b,0x4000010,0x84200000,0x1c00007b,0x7c00100,0x80230400,0x1c000086,0x2802400,0x80962460,0x1c000086, +0x7c00100,0x80230400,0x1c000086,0xc000010,0x84448000,0x1c000087,0x2802000,0x80962460,0x1c000087,0x2802100,0x80962460,0x1c000087,0x4000000,0x84200000,0x1c000087,0x7c00100, +0x80230400,0x1c000087,0xc000010,0x84448000,0x1c000088,0x7c00100,0x80230400,0x1c000089,0x2802100,0x80962460,0x1c000089,0x2802400,0x80962460,0x1c000089,0x2806400,0x82f62460, +0x1c000089,0x6800100,0x80962540,0x1c000089,0x6800100,0x80962541,0x1c000089,0x7c00100,0x80430400,0x1c000089,0x7c00100,0x82b30400,0x1c000089,0x7c00100,0x82d30400,0x1c000089, +0x7c00900,0x80430400,0x1c00008c,0x2802400,0x80962460,0x1c00008c,0x4000000,0x84200000,0x1c00008c,0x7c00100,0x80230400,0x1c00008e,0x4000000,0x84200000,0x1c00008e,0x7c00100, +0x80230400,0x1c00008f,0x4000000,0x84200000,0x1c00008f,0x7c00100,0x80230400,0x1c000090,0x4000000,0x84200000,0x1c000090,0x7c00100,0x80230400,0x1c000091,0x2802100,0x80962460, +0x1c000091,0x2802400,0x80962460,0x1c000091,0x2806400,0x80962460,0x1c000091,0x6800000,0x81329800,0x1c000091,0x6800100,0x80962540,0x1c000091,0x7c00100,0x80230400,0x1c000092, +0x4000000,0x84200000,0x1c000092,0x6800000,0x81329800,0x1c000092,0x7c00100,0x80220400,0x1c000092,0x7c00100,0x80230400,0x1c000092,0x7c00100,0x80250400,0x1c000095,0x6800000, +0xa1329800,0x1c000095,0x7c00100,0xa0230400,0x1c000095,0xc000010,0x84448000,0x1c000097,0x7c00100,0x80230400,0x1c000097,0xc000010,0x84248000,0x1c00009d,0x2802100,0x80962460, +0x1c00009d,0x2802400,0x80962460,0x1c00009d,0x2802900,0x80962460,0x1c00009d,0x2806400,0x80962460,0x1c00009d,0x4000000,0x84200000,0x1c00009d,0x4000010,0x84200000,0x1c00009d, +0x6800100,0x80962540,0x1c00009d,0x7c00100,0x80230400,0x1c00009d,0xc000010,0x84448000,0x1c00009e,0x2802100,0x80962460,0x1c00009e,0x2802400,0x80962460,0x1c00009e,0x2806400, +0x80962460,0x1c00009e,0x4000000,0x84200000,0x1c00009e,0x6800000,0x81329800,0x1c00009e,0x6800100,0x80962540,0x1c00009e,0x6800100,0x80962541,0x1c00009e,0x7c00100,0x80230400, +0x1c00009f,0x4000000,0x84200000,0x1c00009f,0x7c00100,0x80230400,0x1c0000a0,0x2802400,0x80962460,0x1c0000a0,0x4000000,0x84200000,0x1c0000a0,0x4000000,0x84500000,0x1c0000a0, +0x7c00100,0x80230400,0x1c0000a3,0x2802100,0x80962460,0x1c0000a3,0x2806400,0x80962460,0x1c0000a3,0x4000000,0x84200000,0x1c0000a3,0x6800000,0x81329800,0x1c0000a3,0x6800100, +0x80962540,0x1c0000a3,0x7c00100,0x80230400,0x1c0000a3,0xc000010,0x84448000,0x1c0000a5,0x7c00100,0x80230400,0x1c0000a6,0x2802100,0x80962460,0x1c0000a6,0x2802400,0x80962460, +0x1c0000a6,0x2806400,0x80962460,0x1c0000a6,0x4000000,0x84500000,0x1c0000a6,0x4000010,0x84b00000,0x1c0000a6,0x4000800,0x84200000,0x1c0000a6,0x6800100,0x80962540,0x1c0000a6, +0x6800100,0x80962541,0x1c0000a6,0x7c00100,0x80230400,0x1c0000a6,0xc000010,0x84448000,0x1c0a0000,0x4000000,0x4e00000,0x1c0a0000,0x4000000,0x6800000,0x1c500031,0x4000000, +0xc200000,0x1c500039,0x80000,0xc4918820,0x1c8000a7,0x2802400,0x8962460,0x1c900031,0x2802400,0x8962460,0x1cd00035,0x4000010,0x84400000,0x1cd00037,0x2802100,0xfc962460, +0x1cd00037,0x2802400,0xfc962460,0x1cd00037,0x6800100,0xfc962540,0x20000000,0x4000000,0x5500000,0x20000000,0x4000000,0x24200000,0x20000000,0x4000000,0x24e00000,0x20000000, +0x4000000,0x34200000,0x20000000,0x24000000,0x24200000,0x20000002,0x2802500,0x20962460,0x20000002,0x7c00100,0x20230400,0x20000006,0x7c00100,0x40220400,0x20000006,0x7c00100, +0x40250400,0x20000008,0x2802100,0x28962460,0x20000008,0x2802400,0x30962460,0x2000000a,0x4000000,0x2c500000,0x2000000a,0x7c00100,0x28230400,0x2000000f,0x7c00100,0x20230400, +0x20000019,0x7c00100,0x20220400,0x20000019,0x7c00100,0x20230400,0x20000019,0x7c00100,0x20250400,0x2000001a,0x7c00100,0x8230400,0x20000024,0x7c00100,0x20230400,0x2000004c, +0x4000000,0x84200000,0x2000004c,0x7c00100,0x80220400,0x2000004c,0x7c00100,0x80250400,0x20000065,0x7c00100,0x80230400,0x20000070,0x2802000,0x80962460,0x20000070,0x4000000, +0x84200000,0x20000070,0x4000010,0x84400000,0x20000070,0xc000010,0x84448000,0x20000089,0x2802100,0x80962460,0x20000089,0x7c00100,0x82d30400,0x2000008d,0x4000000,0x84200000, +0x20000097,0x2802000,0x80962460,0x20000097,0x2802400,0x80962460,0x20000097,0x4000000,0x84400000,0x20000097,0x4000000,0x84500000,0x20000097,0x7c00100,0x80230400,0x20000097, +0xc000010,0x84448000,0x2000009c,0x7c00100,0x80230400,0x2000009c,0x7c00100,0x80830400,0x2000009c,0x7c00100,0x81430400,0x200000a1,0x2802100,0x81862460,0x200000a1,0x2806400, +0x81862460,0x200000a1,0x4000000,0x85800000,0x200000a1,0x6800000,0x81329800,0x200000a1,0x6800100,0x81862400,0x200000a1,0x6800100,0x81862540,0x200000a1,0x7c00100,0x81830000, +0x200000a1,0xc000010,0x84448000,0x200000a2,0x4000000,0x84200000,0x200000a2,0x7c00100,0x80230400,0x200000a4,0x7c00100,0x80230400,0x200000a4,0xc000010,0x84448000,0x200000a6, +0x2802100,0x80962460,0x200000a6,0x7c00100,0x80230400,0x200000a6,0xc000010,0x84448000,0x200a0000,0x4000000,0x4e00000,0x200a0000,0x4000000,0x6800000,0x200a0000,0x4000000, +0x6902460,0x200a0011,0x7c40300,0xfce30000,0x24000000,0x4000000,0x4e00000,0x24000000,0x24000000,0x4200000,0x24000000,0x24000000,0x4400000,0x24000000,0x80000000,0x5329960, +0x24000001,0x2802400,0x10962460,0x24000002,0x2802000,0x20962460,0x24000002,0x2802100,0x20962460,0x24000002,0x7c00100,0xfc230400,0x24000008,0x7c00100,0x8220400,0x2400000e, +0x4000000,0x4200000,0x24000015,0x7c00100,0xfc230400,0x24000019,0x7c00100,0x10250400,0x2400001a,0x4000000,0x4200000,0x2400001a,0x7c00100,0xfc230400,0x2400001b,0x4000000, +0x84500000,0x24000038,0x2802100,0x80962460,0x2400006f,0x2802100,0x40962460,0x2400009d,0x2802100,0x80962460,0x240000a7,0x2802100,0x40962460,0x240000a7,0x2802400,0x40962460, +0x240000a7,0x2802c00,0x40962460,0x240000a7,0x4000000,0x45400000,0x240000a7,0x6800000,0x41329800,0x240000a7,0x7c00100,0x40220400,0x240000a7,0x7c00100,0x40250400,0x240000a8, +0x2802100,0x80962460,0x240000a8,0x2806400,0x80962460,0x240000a8,0x4000000,0x84200000,0x240000a8,0x4000000,0x84400000,0x240000a8,0x4000010,0x84400000,0x240000a8,0x6800000, +0x81329800,0x240000a8,0x6800100,0x80962540,0x240000a8,0x7c00100,0x80230400,0x240000a8,0xc000010,0x84448000,0x240000a9,0x2802100,0x80962460,0x240000a9,0x4000000,0x84500000, +0x240000a9,0x4000010,0x84b00000,0x240000a9,0x6800100,0x80962540,0x240000a9,0x7c00100,0x80230400,0x240000aa,0x2802100,0x40962460,0x240000aa,0x2802400,0x40962460,0x240000aa, +0x2806400,0x40962460,0x240000aa,0x4000000,0x44200000,0x240000aa,0x4000000,0x44400000,0x240000aa,0x4000010,0x44400000,0x240000aa,0x6800000,0x41329800,0x240000aa,0x6800100, +0x40962540,0x240000aa,0x7c00100,0x40230400,0x240000aa,0xc000010,0x44448000,0x240000ab,0x7c00100,0x40220400,0x240000ab,0x7c00100,0x40250400,0x24020000,0x4000000,0x4100000, +0x240a0000,0x4000000,0x4e00000,0x240a0000,0x4000000,0x6800000,0x240a0000,0x4000000,0xc8e0000d,0x240a009a,0x7c00300,0x80e30000,0x240a009a,0x7c00900,0x81230400,0x24400006, +0x24000000,0x4400000,0x28000000,0x4000000,0x4200000,0x28000000,0x4000000,0x4e00000,0x28000000,0x4000000,0x5600000,0x28000000,0x24000000,0x4200000,0x28000000,0x24000000, +0x4400000,0x28000001,0x2802400,0x10962460,0x28000004,0x4000000,0x4200000,0x28000004,0x7c00100,0x8230400,0x2800000f,0x2802100,0xfc962460,0x2800000f,0x2802400,0xfc962460, +0x2800000f,0x2802900,0xfc962460,0x2800001a,0x2802100,0xfc962460,0x2800001a,0x2806400,0x8962460,0x2800001e,0x7c00100,0x80230400,0x28000022,0x7c00100,0x40230400,0x280000af, +0x2802100,0x80962460,0x280000af,0x2802400,0x80962460,0x280000af,0x2806400,0x80962460,0x280000af,0x6800000,0x81329800,0x280000af,0x7c00100,0x80230400,0x280000af,0x7c00100, +0x80230560,0x280000b0,0x2802100,0x80962460,0x280000b0,0x2802800,0x80962460,0x280000b0,0x2806400,0x80962460,0x280000b0,0x4000000,0x84400000,0x280000b0,0x4000000,0x84500000, +0x280000b0,0x4000010,0x84400000,0x280000b0,0x6800100,0x80962540,0x280000b0,0x7c00100,0x80230400,0x280000b0,0x7c00100,0x80230560,0x280000b0,0xc000010,0x84448000,0x280000b1, +0x2802000,0x80962460,0x280000b1,0x2802100,0x80962460,0x280000b1,0x2806400,0x80962460,0x280000b1,0x4000000,0x84200000,0x280000b1,0x4000000,0x84400000,0x280000b1,0x4000000, +0x84500000,0x280000b1,0x6800100,0x80962540,0x280000b1,0x7c00100,0x80230400,0x280000b1,0x7c00100,0x80230560,0x280000b1,0xc000010,0x84448000,0x280a0000,0x4000000,0x4e00000, +0x280a0000,0x4000000,0x6800000,0x280a0005,0x7c00100,0x8e30400,0x280a0011,0x7c40300,0xfce30000,0x280a0014,0x7c00100,0x8e30000,0x280a0096,0x7c00300,0x80e30000,0x280a0096, +0x7c00900,0x81230400,0x284000c4,0x6800400,0x8962540,0x288000c5,0x2802400,0x10962460,0x2c000000,0x4000000,0x4200000,0x2c000000,0x4000000,0x4e00000,0x2c000000,0x4000000, +0x5500000,0x2c000000,0x24000000,0x4200000,0x2c000000,0x24000000,0x4400000,0x2c000000,0x24000010,0x4400000,0x2c000002,0x2802000,0x20962460,0x2c000003,0x7c00100,0x10220400, +0x2c000004,0x2802000,0xfc962460,0x2c00000a,0x2802100,0x8962460,0x2c00000a,0x7c00100,0x8230400,0x2c00000c,0x7c00100,0xfc230400,0x2c000010,0x4000000,0x4200000,0x2c000013, +0x7c00100,0xfe633800,0x2c000015,0x4000000,0x4500000,0x2c000019,0x7c00100,0x10220400,0x2c000019,0x7c00100,0x20220400,0x2c000019,0x7c00100,0x20250400,0x2c00001b,0x7c00100, +0x80230400,0x2c000024,0x2802100,0xfc962460,0x2c000039,0x4000000,0x84200000,0x2c000039,0x7c00100,0x80230400,0x2c000057,0x2802000,0x40962460,0x2c000057,0x4000000,0x45600000, +0x2c000076,0x6800100,0x40962540,0x2c000076,0x7c00100,0x40230400,0x2c000078,0x80000000,0x85329960,0x2c0000a1,0x7c00100,0x81830000,0x2c0000aa,0x2802000,0x40962460,0x2c0000b0, +0x7c00100,0x80230400,0x2c0000b2,0x2802100,0x80962460,0x2c0000b2,0x2802400,0x80962460,0x2c0000b2,0x2806400,0x80962460,0x2c0000b2,0x4000000,0x84200000,0x2c0000b2,0x6800100, +0x80962540,0x2c0000b2,0x7c00100,0x80230400,0x2c0000b3,0x2802100,0x40962460,0x2c0000b3,0x2806400,0x40962460,0x2c0000b3,0x6800000,0x41329800,0x2c0000b3,0x6800100,0x40962540, +0x2c0000b3,0x7c00100,0x40230400,0x2c0000b4,0x2802100,0x80962460,0x2c0000b4,0x6800100,0x80962540,0x2c0000b4,0x7c00100,0x80430400,0x2c0000b4,0x7c00100,0x82d30400,0x2c0000b4, +0xc000010,0x84448000,0x2c0000b5,0x4000000,0x84200000,0x2c0000b5,0x4000010,0x84400000,0x2c0000b5,0x7c00100,0x80220400,0x2c0000b5,0x7c00100,0x80250400,0x2c0000b5,0xc000010, +0x84448000,0x2c0000b6,0x2802500,0x40962460,0x2c0000b6,0x6800000,0x41329800,0x2c0000b6,0x7c00100,0x40230400,0x2c0000b6,0x7c00500,0x40230400,0x2c0000b7,0x2802400,0x80962460, +0x2c0000b7,0x4000000,0x84200000,0x2c0000b7,0x7c00100,0x80230400,0x2c0000b7,0xc000010,0x84248000,0x2c0000b8,0x4000000,0x84200000,0x2c0000b8,0x7c00100,0x80230400,0x2c0a0000, +0x4000000,0x4e00000,0x2c0a0000,0x4000000,0x6800000,0x2c0a0005,0x7c00100,0xfce30400,0x2c0a0011,0x7c40300,0xfce30000,0x2c0a009a,0x7c00300,0x80e30000,0x2c80008c,0x2802400, +0xfc962460,0x30000000,0x4000000,0x4200000,0x30000000,0x4000000,0xc820000f,0x30000000,0x24000000,0x4200000,0x30000000,0x24000010,0x4400000,0x30000018,0x2806400,0xfd862460, +0x30000018,0x7c00100,0xfd830000,0x30000019,0x7c00100,0x10220400,0x30000019,0x7c00100,0x10250400,0x30000019,0x7c00100,0xfc220400,0x30000019,0x7c00100,0xfc250400,0x30000023, +0x4000000,0x4200000,0x30000023,0x4000000,0x4400000,0x30000023,0x4000000,0x5500000,0x30000024,0x4000000,0x4500000,0x30000047,0,0x84818820,0x30000047,0, +0x84c18820,0x30000047,0,0x85418820,0x3000005c,0x2802100,0x40962460,0x3000005c,0x6800100,0x40962540,0x3000005c,0x7c00100,0x40230400,0x30000099,0x7c00100,0x80230400, +0x300000a7,0x7c00100,0x40230400,0x300000aa,0x7c00100,0x40230400,0x300000b0,0x7c00100,0x80230560,0x300000b9,0x7c00100,0x80230400,0x300000ba,0x2802400,0x40962460,0x300000ba, +0x4000000,0x44200000,0x300000ba,0x6800000,0x41329800,0x300000ba,0x7c00100,0x40230400,0x300000ba,0x7c00900,0x40230400,0x300000bb,0x2802100,0x80962460,0x300000bb,0x2806400, +0x80962460,0x300000bb,0x4000000,0x84500000,0x300000bb,0x6800100,0x80962540,0x300000bb,0x7c00100,0x80230400,0x300000bc,0x2802400,0x40962460,0x300000bc,0x4000000,0x45600000, +0x300000bc,0x6800000,0x41329800,0x300000bc,0x7c00100,0x40230400,0x300a0000,0x4000000,0x4e00000,0x300a0000,0x4000000,0x6800000,0x300a0011,0x4000000,0x5200000,0x300a0011, +0x7c00900,0x9230400,0x300a0014,0x7c00100,0xfe530000,0x300a0016,0x7c00100,0xfe530c00,0x300a009a,0x7c00300,0x80e30000,0x304000b4,0x7c00100,0x80230400,0x30c0008e,0x4000000, +0x4200000,0x314a00d7,0x4000000,0xc8e0000d,0x34000000,0x4000000,0x4200000,0x34000000,0x4000000,0x4e00000,0x34000000,0x4000400,0x4200000,0x34000000,0x6800000,0xc9329805, +0x34000000,0x24000000,0x4200000,0x34000001,0x2802100,0x10962460,0x34000002,0x7c00100,0xfc230400,0x34000019,0x7c00100,0x8220400,0x34000019,0x7c00100,0x8250400,0x34000019, +0x7c00100,0x10220400,0x34000019,0x7c00100,0xfc220400,0x34000019,0x7c00100,0xfc250400,0x34000019,0x7c00500,0xc822040f,0x3400001a,0x7c00100,0x18230400,0x3400001f,0x2802c00, +0xfc962460,0x34000021,0x2802100,0x10962460,0x3400003a,0x2806400,0x40962460,0x34000076,0x7c00100,0x40230400,0x34000083,0x7c00100,0x40230400,0x34000097,0x2802100,0x80962460, +0x34000097,0x6800100,0x80962540,0x340000aa,0x4000010,0x44400000,0x340000aa,0x7c00100,0x40230400,0x340000bd,0x4000000,0x84200000,0x340000bd,0x7c00100,0x80230400,0x340000be, +0x2802100,0x80962460,0x340000be,0x2802400,0x80962460,0x340000be,0x2806400,0x80962460,0x340000be,0x2806400,0x82f62460,0x340000be,0x4000000,0x84400000,0x340000be,0x6800000, +0x82d29800,0x340000be,0x6800100,0x80962540,0x340000be,0x6800100,0x80962541,0x340000be,0x7c00100,0x82b30400,0x340000be,0x7c00100,0x82c30560,0x340000be,0xc000010,0x84448000, +0x340000c0,0x2802100,0x80962460,0x340000c0,0x4000002,0x84400000,0x340000c0,0x7c00100,0x80230400,0x340a0000,0x4000000,0x4e00000,0x340a0000,0x4000000,0x6800000,0x340a0005, +0x7c00100,0xfce30400,0x340a0011,0x2802500,0xfc962460,0x340a0011,0x7c40300,0xfce30000,0x340a009a,0x7c00300,0x80e30000,0x340a00bf,0x2802200,0x80c62460,0x340a00bf,0x7c00300, +0x80230000,0x38000000,0x4000000,0x5500000,0x38000000,0x4000000,0x14200000,0x38000000,0x24000000,0x4810000,0x38000000,0x24000000,0x5410000,0x38000000,0x24000002,0x4400000, +0x38000000,0x2c000010,0x4b48000,0x38000001,0x2802100,0x20962460,0x38000001,0x2802400,0x10962460,0x38000001,0x2802400,0x20962460,0x38000002,0x2802400,0x20962460,0x38000002, +0x4000000,0x4200000,0x38000002,0x4000000,0x14200000,0x38000002,0x7c00100,0xfc230400,0x38000002,0x7c00500,0xfc230400,0x38000002,0xc000010,0x4b48000,0x38000002,0x80000000, +0x5329960,0x3800000b,0x7c00100,0xfc230400,0x38000015,0x7c00100,0xfc230400,0x38000019,0x7c00100,0xc822040f,0x38000019,0x7c00100,0xfc220400,0x38000019,0x7c00100,0xfc230400, +0x38000019,0x7c00100,0xfc250400,0x38000019,0x7c00500,0x20220400,0x38000019,0x7c00500,0xc822040f,0x38000019,0x7c00d00,0xc823040f,0x3800001b,0x12882000,0xc4962460,0x38000024, +0x2802400,0xfc962460,0x38000024,0x7c00100,0xfc230400,0x38000028,0x7c00100,0x40230400,0x3800002a,0x2806400,0x80962460,0x3800002a,0x7c00100,0x80230400,0x38000038,0x7c00100, +0x80220400,0x38000038,0x7c00100,0x80250400,0x3800003e,0x7c00100,0x42b30400,0x3800003e,0xc000010,0x44448000,0x38000041,0x2802100,0x80962460,0x38000041,0x2806400,0x80962460, +0x38000041,0x7c00100,0x82b30400,0x38000078,0x2802100,0x80962460,0x38000099,0x4000000,0x84200000,0x380000a1,0x7c00100,0x81830000,0x380000c1,0x4000000,0x84200000,0x380000c1, +0x7c00100,0x80230400,0x380000c2,0x2802400,0x80962460,0x380000c2,0x7c00100,0x80230400,0x380000c2,0xc000010,0x84248000,0x380000c3,0x6800000,0x81329800,0x380000c3,0x7c00100, +0x80230400,0x380000c4,0x2802400,0x80962460,0x380000c4,0x7c00100,0x80230400,0x380000c5,0x7c00100,0x80220400,0x380000c5,0x7c00100,0x80250400,0x380a0000,0x4000000,0x4e00000, +0x380a0000,0x4000000,0x6800000,0x380a0011,0x7c40300,0xfce30000,0x380a0014,0x7c00100,0xfce30000,0x380a0016,0x7c00100,0xfce30c00,0x380a0016,0x7c00500,0x20230c00,0x3880002a, +0x2802400,0x50962460,0x3c000000,0x4000000,0x4200000,0x3c000000,0x4000000,0x4e00000,0x3c000002,0x2802400,0x20962460,0x3c000008,0x2802100,0xfc962460,0x3c000008,0x7c00500, +0xc822040e,0x3c000008,0x7c00500,0xc822040f,0x3c00000a,0x4000000,0x4500000,0x3c000015,0x6800100,0xfc962540,0x3c000018,0x2802000,0xfd862460,0x3c000019,0x7c00100,0xfc220400, +0x3c000047,0,0x84818820,0x3c000047,0,0x84c18820,0x3c000047,0,0x85418820,0x3c000047,0x2802000,0x80962460,0x3c000047,0x2802400,0x80962460,0x3c000047, +0x7c00100,0x80230400,0x3c000047,0x7c00100,0x81430400,0x3c00009d,0x2802100,0x80962460,0x3c00009d,0x7c00100,0x80230400,0x3c0000c6,0x2802100,0x80962460,0x3c0000c6,0x2806400, +0x80962460,0x3c0000c6,0x2806400,0x82f62460,0x3c0000c6,0x4000000,0x84e00000,0x3c0000c6,0x6800000,0x82d29800,0x3c0000c6,0x6800100,0x80962540,0x3c0000c6,0x7c00100,0x82b30400, +0x3c0000c6,0x7c00100,0x82c30560,0x3c0000c6,0xc000010,0x84448000,0x3c0000c7,0x2802000,0x80962460,0x3c0000c7,0x6800000,0x81329800,0x3c0000c7,0x7c00100,0x80230400,0x3c0a0000, +0x4000000,0x4e00000,0x3c0a0000,0x4000000,0x6800000,0x3c0a0011,0x7c40300,0xfce30000,0x3c0a0014,0x7c00100,0xfe530000,0x3c0a0016,0x7c00100,0xfe530c00,0x3d0a0000,0x4000000, +0x4e00000,0x3d0a0000,0x4008000,0x4e00000,0x3d0a0011,0x7c40300,0xfce30000,0x40000000,0x4000000,0x4200000,0x40000000,0x4000000,0xc8200005,0x40000000,0x6800000,0xc9329805, +0x40000000,0x24000000,0x4200000,0x40000002,0x2802100,0x20962460,0x40000002,0x7c00100,0xfc230400,0x40000008,0x7c00100,0xfc220400,0x40000008,0x7c00100,0xfc250400,0x40000015, +0x7c00100,0xfc230400,0x40000019,0x7c00100,0xfc220400,0x40000019,0x7c00100,0xfc250400,0x4000001c,0x6800000,0xfd329800,0x40000024,0x7c00100,0xfc230400,0x4000003e,0x4000000, +0x44400000,0x40000047,0x7c00100,0x80230400,0x400000c6,0x2802400,0x80962460,0x400000c9,0x2802400,0x80962460,0x400000c9,0x2802500,0x80962460,0x400000c9,0x2802c00,0x80962460, +0x400000c9,0x4000002,0x84400000,0x400000c9,0x4000020,0x84200000,0x400000c9,0x6800000,0x81329800,0x400000c9,0x7c00100,0x80220400,0x400000c9,0x7c00100,0x80230400,0x400000c9, +0x7c00100,0x80250400,0x400000c9,0x7c00900,0x80230400,0x400000c9,0x7c00d00,0x80230400,0x400000ca,0x2802100,0x80962460,0x400000ca,0x2802100,0x80962461,0x400000ca,0x2806400, +0x80962460,0x400000ca,0x6800000,0x82d29800,0x400000ca,0x6800100,0x80962540,0x400000ca,0x7c00100,0x82d30400,0x400000cb,0x4000000,0x84200000,0x400000cb,0x4000000,0x84400000, +0x400000cb,0x6800000,0x81329800,0x400000cb,0x7c00100,0x80230400,0x400000cb,0x7c00100,0x80230520,0x400000cb,0x7c00100,0x80230521,0x400000cb,0x7c00500,0x80230400,0x400000cc, +0x2802400,0x80962460,0x400000cc,0x2802c00,0x80962460,0x400000cc,0x4000000,0x84200000,0x400000cc,0x6800000,0x81329800,0x400000cc,0x7c00100,0x80230400,0x400000cd,0x4000000, +0x84200000,0x400000cd,0x6800000,0x81329800,0x400000cd,0x7c00100,0x80230400,0x400000ce,0x7c00100,0x80230400,0x400000ce,0x7c00100,0x80230401,0x400000cf,0x2802100,0x80962460, +0x400000cf,0x2802100,0x80962461,0x400000cf,0x2802400,0x80962460,0x400000cf,0x2802c00,0x80962460,0x400000cf,0x2806400,0x80962460,0x400000cf,0x2806400,0x82f62460,0x400000cf, +0x4000000,0x84e00000,0x400000cf,0x6800100,0x80962540,0x400000cf,0x7c00100,0x80e30400,0x400000cf,0x7c00100,0x82b30400,0x400000cf,0x7c00100,0x82c30560,0x400000cf,0x7c00100, +0x82d30400,0x400000cf,0x7c00100,0x82d30401,0x400000cf,0x7c00d00,0x80e30400,0x400a0000,0x4000000,0x4e00000,0x400a00bf,0x7c00100,0x80230400}; -static const int32_t countPropsVectors=7746; +static const int32_t countPropsVectors=6285; static const int32_t propsVectorsColumns=3; static const uint16_t scriptExtensions[314]={ 0x800e,0x8019,8,0x8059,8,2,8,0x8038,8,6,8,0x8019,2,0x22,0x25,0x57, @@ -4152,6 +3973,266 @@ static const uint16_t scriptExtensions[314]={ 0x804f,0x37,0x804e,2,0x8057,2,0x8025,2,0x125,0x2f,0x31,0x8053,0x2f,0x31,0x80c1,0x2f, 0x8031,2,0x8007,0x79,0x80c2,0x79,0x133,0x89,0x8c,0x8087}; -static const int32_t indexes[UPROPS_INDEX_COUNT]={0x2e8e,0x2e8e,0x2e8e,0x2e8e,0x705e,3,0x8ea0,0x8f3d,0x8f3d,0x8f3d,0xb52cf,0x2f75a31,0,0,0,0}; +static const uint16_t block_trieIndex[817]={ +0,0x40,0x80,0xc0,0x100,0x140,0x180,0x1c0,0x200,0x240,0x280,0x2c0,0x300,0x340,0x340,0x340, +0x340,0x340,0x340,0x364,0x384,0x384,0x384,0x384,0x384,0x384,0x384,0x384,0x384,0x384,0x384,0x384, +0x384,0x384,0x384,0x384,0x384,0x384,0x384,0x384,0x3c4,0x3fb,0x43b,0x47b,0x47b,0x47b,0x47b,0x47b, +0x47b,0x47b,0x47b,0x47b,0x47b,0x480,0x4c0,0x500,0x540,0x540,0x540,0x540,0x540,0x540,0x570,0x5a5, +0x2df,0x2f9,0x2f9,0x309,0x329,0,0x10,0x20,0x30,0x40,0x50,0x60,0x70,0x80,0x90,0xa0, +0xb0,0xc0,0xd0,0xe0,0xf0,0x100,0x110,0x120,0x130,0x140,0x150,0x160,0x170,0x180,0x190,0x1a0, +0x1b0,0x1c0,0x1d0,0x1e0,0x1f0,0x200,0x210,0x220,0x230,0x240,0x250,0x260,0x270,0x280,0x290,0x2a0, +0x2b0,0x2c0,0x2d0,0x2e0,0x2f0,0x300,0x310,0x320,0x330,0x340,0x350,0x360,0x370,0x340,0x350,0x360, +0x370,0x340,0x350,0x360,0x370,0x364,0x374,0x384,0x394,0x384,0x394,0x3a4,0x3b4,0x384,0x394,0x3a4, +0x3b4,0x384,0x394,0x3a4,0x3b4,0x384,0x394,0x3a4,0x3b4,0x384,0x394,0x3a4,0x3b4,0x384,0x394,0x3a4, +0x3b4,0x384,0x394,0x3a4,0x3b4,0x384,0x394,0x3a4,0x3b4,0x3c4,0x3d4,0x3e4,0x3f4,0x3fb,0x40b,0x41b, +0x42b,0x43b,0x44b,0x45b,0x46b,0x47b,0x48b,0x49b,0x4ab,0x47b,0x48b,0x49b,0x4ab,0x47b,0x48b,0x49b, +0x4ab,0x47b,0x48b,0x49b,0x4ab,0x47b,0x48b,0x49b,0x4ab,0x480,0x490,0x4a0,0x4b0,0x4c0,0x4d0,0x4e0, +0x4f0,0x500,0x510,0x520,0x530,0x540,0x550,0x560,0x570,0x540,0x550,0x560,0x570,0x540,0x550,0x560, +0x570,0x540,0x550,0x560,0x570,0x540,0x550,0x560,0x570,0x540,0x550,0x560,0x570,0x570,0x580,0x590, +0x5a0,0x5a5,0x5b5,0x5c5,0x5d5,0x5e5,0x5f5,0x605,0x615,0x625,0x635,0x645,0x64d,0x65d,0x66d,0x67d, +0x68d,0x69d,0x6ad,0x6b7,0x6c7,0x6d7,0x6e7,0x6f7,0x707,0x717,0x725,0x735,0x745,0x755,0x765,0x775, +0x785,0x795,0x7a5,0x7b0,0x7c0,0x7d0,0x7d0,0x7d0,0x7d0,0x7e0,0x7eb,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0, +0x7f0,0x7f0,0x7f0,0x7f0,0x7f7,0x807,0x807,0x807,0x807,0x814,0x81a,0x81a,0x81a,0x81a,0x81a,0x81a, +0x81a,0x81a,0x81a,0x81a,0x81a,0x82a,0x82a,0x832,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0, +0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0, +0x7f0,0x842,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x852,0x852,0x85e,0x86e,0x7f0,0x87a,0x886,0x896, +0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6,0x8a6, +0x8b6,0x8b6,0x8b6,0x8c6,0x8c6,0x8d6,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0, +0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x8de,0x8ee,0x8fe,0x905,0x7f0,0x7f0,0x7f0,0x7f0, +0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x915,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0, +0x7f0,0x7f0,0x925,0x925,0x929,0x939,0x949,0x959,0x969,0x979,0x989,0x989,0x989,0x989,0x999,0x999, +0x99e,0x7f0,0x7f0,0x7f0,0x7f0,0x9ae,0x9be,0x9ce,0x9d5,0x7f0,0x9e5,0x9f5,0x7f0,0xa05,0xa15,0xa25, +0x7f0,0x7f0,0xa2e,0xa3e,0xa4e,0x7f0,0xa5e,0xa6e,0xa7e,0xa8e,0xa8e,0xa8e,0xa9e,0xaae,0xabe,0xace, +0xade,0xaee,0x7f0,0x7f0,0x7f0,0x7f0,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe, +0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xafe, +0xafe,0xafe,0xafe,0xafe,0xafe,0xafe,0xb00,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10, +0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb10,0xb1c,0xb2a,0xb2c,0xb2c,0xb2c,0xb2c,0xb2c,0xb2c,0xb2c, +0xb2c,0xb2c,0xb2c,0xb2c,0xb2c,0xb2c,0xb2c,0xb31,0xb3c,0xb3c,0xb3c,0xb3c,0xb3c,0xb3c,0xb3c,0xb3c, +0xb3c,0xb3c,0xb3c,0xb3c,0xb3c,0xb3c,0xb3c,0xb3c,0xb3c,0xb3d,0xb4c,0xb4c,0xb56,0x7f0,0x7f0,0x7f0, +0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0xb66,0xb66,0xb74,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0xb84,0xb84, +0xb84,0xb84,0xb84,0xb84,0xb84,0xb84,0xb84,0xb84,0xb84,0xb84,0xb84,0xb84,0xb84,0xb84,0xb84,0xb84, +0xb84,0xb8f,0xb94,0xb94,0xb94,0xb94,0xb94,0xb94,0xb94,0xb94,0xb94,0xb94,0xb94,0xb94,0xb99,0x7f0, +0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0, +0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0xba9, +0xbb9,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0, +0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0x7f0,0xbc9, +0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9, +0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbc9,0xbd9, +0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9, +0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0xbd9,0x45, +0x65,0x79,0x89,0x89,0xa9,0xb5,0xd5,0xf5,0x115,0x131,0x150,0x168,0x179,0x196,0x1b6,0x1d6, +0x1d6,0x1d6,0x1d6,0x1d6,0x1f0,0x209,0x21e,0x23e,0x25b,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f, +0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f, +0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f,0x27f,0x25f,0x25f,0x25f,0x25f,0x25f,0x25f, +0x25f,0x29f,0x29f,0x29f,0x29f,0x29f,0x29f,0x29f,0x29f,0x2bf,0x2bf,0x2bf,0x2bf,0x2bf,0x2bf,0x2bf, +0x2bf +}; + +static const uint16_t block_trieData[3051]={ +1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2, +3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4, +4,4,4,4,4,5,5,5,5,5,5,6,6,6,6,6, +7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8, +9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, +0x61,0x61,0x61,0xa,0xa,0xa,0xa,0xa,0xa,0xb,0xb,0xb,0xb,0xb,0xb,0xb, +0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc, +0xd,0xd,0xd,0xd,0xd,0x80,0x80,0x80,0xe,0xe,0xe,0xe,0x92,0x92,0x92,0x92, +0xac,0xac,0xac,0xac,0xc6,0xc6,0x117,0x135,0x135,0x135,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2, +0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10, +0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12, +0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14, +0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16, +0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18, +0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a, +0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b, +0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d, +0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e, +0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f, +0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x86,0x86,0x20,0x20,0x20,0x20,0x20,0x20, +0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21, +0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21, +0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x22,0x22,0x23,0x23,0x23,0x23,0x23,0x23, +0x62,0x62,0x63,0x63,0x64,0x64,0x65,0x65,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24, +0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0xad,0xad,0xad,0xad,0xad, +0x6f,0x6f,0x6f,0x6f,0x6f,0x70,0x70,0x70,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x71,0x71, +0x81,0x81,0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xe0,0xe0,0xe0,0xe0,0xe0, +0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x9b,0x9b,0x9b,0x9b,0xc7,0xc7,0xc7,0xc7, +0x9c,0x9c,0x9c,0x9c,0x9c,0x9d,0x9d,0x9d,0x109,0x11b,0x11b,0x11b,0xdb,0xaf,0xaf,0xaf, +0x72,0x72,0x72,0x72,0x72,0x72,0x72,0x72,0x8d,0x8d,0x8d,0x8d,0x83,0x83,0x83,0x83, +0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26, +0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27, +0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x29,0x29,0x29,0x2a,0x2a,0x2a,0x2b,0x2b,0x2b, +0x2c,0x2c,0x2c,0x2c,0x2c,0x2d,0x2d,0x2d,0x2d,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e, +0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f, +0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30, +0x31,0x31,0x31,0x31,0x32,0x32,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33, +0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x35,0x35,0x36,0x36,0x36,0x36,0x36,0x36, +0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37, +0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x66,0x66,0x66,0x67, +0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39, +0x68,0x68,0x68,0x68,0x68,0x68,0x68,0x68,0x69,0x69,0x69,0x69,0x69,0x69,0x69,0x69, +0x6a,0x6a,0x6a,0x6a,0x6a,0x6a,0x6a,0x6a,0x6a,0x6a,0x6a,0x6a,0x6a,0x6a,0x6a,0x6a, +0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73, +0x88,0x88,0x88,0x88,0x88,0x88,0x94,0x94,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84, +0x87,0x87,0x87,0x90,0x90,0x90,0x90,0x90,0x85,0x85,0x85,0x85,0x85,0x85,0x9e,0x9e, +0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a, +0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0,0x3c, +0x3d,0x3d,0x3d,0x3d,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f, +0x40,0x40,0x40,0x41,0x41,0x41,0x41,0x41,0x41,0x42,0x43,0x43,0x82,0x82,0x82,0x6b, +0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44, +0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45, +0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46, +0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46, +0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46, +0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46, +0x74,0x74,0x74,0x74,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47, +0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47, +0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47, +0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47, +0x47,0x47,0x47,0x47,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48, +0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48, +0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48, +0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48, +0x48,0x48,0x48,0x48,0x49,0x49,0x49,0x49,0xb0,0xb0,0xb0,0x9f,0x9f,0x9f,0x9f,0x9f, +0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xa0, +0xa0,0xa0,0xa0,0xa0,0xa0,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0x8a,0x8a,0x95,0x95,0x95, +0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x8f,0x8f,0x8f,0xb2,0x96, +0x96,0x96,0x96,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xb3,0xb3,0xa2,0xa2,0xa2,0xa3,0xa3, +0xa3,0xb4,0xb4,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xee,0xee,0xa4,0xa4,0xa4,0xa4,0xa4, +0xa4,0xb6,0xb6,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xd5,0xd5,0xc8,0xc8,0xc8,0xe7,0xe7, +0xe7,0xe7,0xff,0xff,0xff,0xff,0xff,0xb8,0xb8,0xb8,0xb8,0x4a,0x4a,0x4a,0x4a,0x4a, +0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a, +0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a, +0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a, +0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0xb9,0xb9,0xb9,0xb9,0xb9, +0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b, +0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b, +0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b, +0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c, +0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d, +0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d, +0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d, +0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d, +0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e, +0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e, +0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e, +0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e, +0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f, +0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f, +0x50,0x50,0x50,0x50,0x50,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51, +0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51, +0x51,0x51,0x51,0x51,0x51,0x6c,0x91,0x52,0x53,0x53,0x54,0x54,0x55,0x55,0x55,0x55, +0x55,0x55,0x55,0x55,0x55,0x57,0x57,0x57,0x57,0x57,0x57,0x57,0x57,0x57,0x57,0x57, +0x57,0x57,0x57,0x57,0x56,0x75,0x75,0x75,0x75,0x75,0x75,0x75,0x75,0x76,0x76,0x76, +0x76,0x76,0x76,0x76,0x76,0x77,0x77,0x77,0x77,0x7f,0x7f,0x7f,0x7f,0x7f,0xa5,0xa5, +0xa5,0xa5,0xa6,0xa6,0xa6,0,0,0,0,0,0,0,0,0xa7,0xa7,0xa8, +0xa8,0xa8,0xa8,0xdf,0xdf,0x58,0x58,0x58,0x59,0x59,0xf1,0xf1,0xf1,0x78,0x78,0x8c, +0x8c,0x8c,0x8c,0,0,0x5a,0x5a,0x5a,0x5a,0x5a,0x79,0x79,0x79,0x7a,0x7a,0x7a, +0x10f,0x10f,0x10f,0x10f,0x10f,0xe2,0xe2,0xe2,0xde,0xde,0xde,0xde,0x13f,0x13f,0x13f,0x13f, +0x13f,0x151,0x151,0x151,0x151,0xe8,0xe8,0xe8,0xe8,0xe8,0xe8,0xe8,0xe8,0xe8,0xe8,0xe8, +0xe8,0xe8,0xe8,0xe8,0xe8,0x139,0x139,0x139,0x139,0,0,0,0,0x7b,0x7b,0x7b, +0x7b,0xba,0xba,0xf4,0xf4,0xef,0xef,0xef,0,0,0,0x102,0x102,0x97,0x97,0xa9, +0xa9,0,0,0,0,0xd7,0xd7,0xd6,0xd6,0xd6,0xd6,0xd6,0xd6,0x89,0x89,0x89, +0x89,0x89,0x89,0xbb,0xbb,0xf0,0xf0,0,0,0xea,0xea,0xea,0xea,0xbc,0xbc,0xbc, +0xbc,0xbd,0xbd,0xbe,0xbe,0xf6,0xf6,0xf6,0,0,0,0,0,0xbf,0xbf,0xbf, +0xbf,0xbf,0,0,0,0x104,0x104,0x104,0x104,0x104,0x104,0x104,0x104,0x11d,0x11d,0x11d, +0x11d,0x14a,0x14a,0x14a,0x14a,0x14a,0,0,0,0,0,0,0,0xc0,0xc0,0x134, +0x134,0x134,0x134,0x141,0x141,0x141,0x141,0x122,0x122,0x122,0x123,0x123,0x123,0x123,0x13b,0x13b, +0x13b,0x13b,0x12d,0x12d,0x12d,0x125,0x125,0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,0xc1, +0xc1,0xc1,0xc1,0xc1,0xda,0xda,0xda,0xd4,0xd4,0xd4,0xd4,0xd4,0xe9,0xe9,0xe9,0xd9, +0xd9,0xd9,0xd9,0xd9,0xd9,0xf9,0xf9,0xe5,0xe5,0xe5,0xe5,0xe5,0,0,0,0x103, +0x103,0x103,0xe6,0xe6,0xe6,0xe6,0xe6,0xe4,0xe4,0xe4,0xe4,0xe4,0xe4,0xe4,0xe4,0x152, +0x152,0x152,0x152,0x152,0x152,0x152,0x152,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0x10e,0xfb, +0xfb,0xfb,0xfb,0xfb,0xfb,0,0,0,0,0,0,0,0,0xf8,0xf8,0xf8, +0xf8,0xf8,0xf8,0xf8,0xf8,0xec,0xec,0xec,0xec,0xec,0xec,0x10d,0x10d,0xdc,0xdc,0xdc, +0xdc,0xdc,0x14d,0x14d,0x14d,0xfd,0xfd,0xfd,0xfd,0xfd,0,0,0,0,0,0, +0,0,0,0,0,0x11a,0x11a,0x11a,0x11a,0x11a,0,0,0,0,0,0xfc, +0xfc,0xfc,0xfc,0xfc,0xfc,0x12f,0x12f,0x12f,0x12f,0x12f,0x12f,0,0,0,0,0x126, +0x126,0x126,0x126,0x126,0x126,0x118,0x118,0x118,0x118,0x118,0x116,0x116,0x116,0x116,0x116,0x116, +0x13e,0xf5,0xf5,0xf5,0xf5,0x144,0x144,0x144,0x144,0x144,0x144,0,0,0,0,0, +0,0x14f,0x14f,0x14f,0x14f,0x108,0x108,0x108,0x108,0x108,0x108,0x108,0x10c,0x10c,0x10c,0x10c, +0x10c,0,0,0,0,0x114,0x114,0x114,0x114,0x114,0x114,0x11c,0x11c,0x11c,0x11c,0x11c, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x11f,0x11f, +0x146,0x146,0x146,0x146,0x146,0x146,0,0,0,0,0,0x131,0x12b,0x12b,0x12b,0x12b, +0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98, +0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x101,0x101,0x101,0x101,0x101,0x101,0x101,0x101, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0x136,0x136,0x136,0x136,0x136,0x136,0x136,0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,0xc2, +0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,0x124,0x124,0x124,0x149,0x149,0x149,0x149,0x149,0x149, +0x149,0x149,0x149,0x149,0x149,0x149,0x149,0x149,0x149,0x149,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, +0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0,0,0,0,0,0, +0,0,0x14b,0x14b,0x14b,0x14b,0,0,0,0,0,0,0,0,0,0, +0,0,0xca,0xca,0xca,0xca,0xca,0xca,0xca,0xca,0xca,0xca,0xca,0xca,0xca,0xca, +0xca,0xca,0xed,0xed,0xed,0x13c,0x13c,0x13c,0x13c,0x13c,0x13c,0xdd,0xdd,0xdd,0xf3,0xf3, +0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0,0,0,0,0,0,0,0x14c,0x14c, +0x14c,0x14c,0,0,0,0,0,0,0,0,0x121,0x121,0x121,0x121,0x121,0x121, +0,0,0,0,0,0,0xd8,0xd8,0xd8,0xd8,0xd8,0xd8,0xd8,0xd8,0xd8,0xd8, +0,0,0,0,0x10b,0x10b,0x110,0x110,0x110,0x110,0x110,0x110,0x110,0x110,0x110,0x110, +0x110,0x110,0x110,0x110,0x110,0x110,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x111,0x111, +0x111,0x111,0x111,0x111,0x111,0x111,0x130,0x130,0x130,0x130,0x130,0x130,0x130,0x130,0x130,0x130, +0x130,0x130,0x130,0x130,0x130,0x130,0x133,0x133,0x133,0x133,0x133,0x133,0x133,0x133,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0x138,0xcb,0xcb, +0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0x113,0x113, +0x113,0x129,0x129,0x129,0x129,0x115,0x115,0x115,0x115,0x115,0x115,0x115,0x115,0x115,0x115,0x115, +0x115,0x115,0x115,0x115,0x115,0xe1,0xe1,0xe1,0xe1,0xe1,0xe1,0xe1,0xe1,0xe1,0xe1,0xf7, +0,0,0,0,0,0x150,0x150,0x150,0x150,0x150,0x150,0x150,0x150,0x150,0x150,0x150, +0x150,0x150,0x150,0x150,0x150,0,0,0,0,0x140,0x140,0x140,0x140,0x140,0x140,0x140, +0x140,0x140,0x140,0x140,0x140,0x140,0,0,0,0x5b,0x5b,0x5b,0x5b,0x5b,0x5b,0x5b, +0x5b,0x5b,0x5b,0x5b,0x5b,0x5b,0x5b,0x5b,0x5b,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c, +0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x7e,0x7e,0x7e,0x7e,0x7e,0,0, +0,0,0,0,0,0x145,0x145,0x120,0x120,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x9a, +0x9a,0,0,0,0,0,0,0,0,0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,0x5d, +0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,0x106,0x106,0x106,0x106,0x106,0x106,0x106, +0x106,0x106,0x106,0x106,0x106,0x106,0x106,0x106,0x106,0,0,0,0,0,0x13a,0x13a, +0x13a,0x13a,0x13a,0x13a,0x13a,0x13a,0x13a,0x13a,0x13a,0x13a,0x13a,0x13a,0x13a,0x13a,0x10a,0x10a, +0x10a,0x143,0x143,0x143,0x143,0x143,0x143,0,0,0,0,0,0,0,0x127,0x127, +0x127,0x127,0x127,0,0,0,0,0,0,0,0,0,0,0,0x13d,0x13d, +0x13d,0x12c,0x12c,0x12c,0x12c,0,0,0,0,0,0,0,0,0,0,0, +0,0,0x147,0x147,0x147,0,0,0,0,0,0,0,0,0,0,0, +0,0,0x14e,0x14e,0x14e,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0x137,0x137,0xeb,0xeb,0xeb,0xeb,0xeb,0xeb,0xeb,0xeb,0xeb,0xeb,0xeb, +0xeb,0xeb,0xeb,0,0,0x107,0x107,0x107,0x107,0x107,0x107,0,0,0,0,0, +0,0,0,0,0,0x11e,0x11e,0x11e,0x11e,0x11e,0,0,0,0,0x128,0x128, +0x128,0x128,0x128,0,0,0,0,0,0,0,0,0,0,0,0xd3,0xd3, +0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xaa,0xaa, +0xaa,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xc3,0xc3, +0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc4,0xc4, +0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xcd,0xcd, +0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xce,0xce, +0xce,0xce,0xce,0xf2,0xf2,0xf2,0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xd0,0xd0, +0xd0,0xd0,0xd0,0xd0,0xd0,0xd0,0xe3,0xe3,0xe3,0xe3,0xe3,0xe3,0xe3,0xe3,0xfa,0xfa, +0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0x105,0x105, +0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x105,0x119,0x119, +0x119,0x119,0x119,0x119,0x119,0x12a,0x12a,0x12a,0x12a,0x12a,0x12a,0x12a,0x12a,0x12a,0x132,0x132, +0x132,0x132,0x132,0x132,0x132,0x132,0x132,0x132,0x132,0x132,0x132,0x132,0x132,0x132,0x5e,0x5e, +0x5e,0x5e,0x5e,0x5e,0x5e,0x5e,0x5e,0x5e,0x5e,0x5e,0x5e,0x5e,0x5e,0x5e,0,0, +0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5, +0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0x100,0x100,0x100,0x100, +0x100,0x100,0x100,0x100,0x100,0x100,0x100,0x100,0x100,0x100,0x100,0x100,0x112,0x112,0x112,0x112, +0x112,0x112,0x112,0x112,0x112,0x112,0x112,0x112,0x112,0x112,0x112,0x112,0x148,0x148,0x148,0x148, +0x148,0x148,0x148,0x148,0x148,0x148,0x148,0x148,0x148,0x148,0x148,0x148,0,0,0,0, +0,0,0,0,0,0,0x5f,0x5f,0x5f,0x5f,0x5f,0x5f,0x5f,0x5f,0x5f,0x5f, +0x5f,0x5f,0x5f,0x5f,0x5f,0x5f,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0x12e,0x12e,0x12e,0x12e,0x12e,0x12e,0x12e,0x12e,0x12e,0x12e,0x12e,0x12e, +0x12e,0x12e,0x12e,0x12e,0x142,0x142,0x142,0x142,0x142,0x142,0x142,0x142,0x142,0x142,0x142,0x142, +0x142,0x142,0x142,0x142,0,0,0,0,0,0x60,0x60,0x60,0x60,0x60,0x60,0x60, +0x60,0,0,0,0,0,0,0,0,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d, +0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0,0x6d,0x6d,0x6d,0x6d,0x6d,0x6d,0x6d, +0x6d,0x6d,0x6d,0x6d,0x6d,0x6d,0x6d,0x6d,0x6d,0x6e,0x6e,0x6e,0x6e,0x6e,0x6e,0x6e, +0x6e,0x6e,0x6e,0x6e,0x6e,0x6e,0x6e,0x6e,0x6e,0,0 +}; + +static const UCPTrie block_trie={ + block_trieIndex, + { block_trieData }, + 817, 3051, + 0x11000, 0x11, + 1, 0, + 0, 0, + 0x25f, 0x7f0, + 0x0, +}; + +static const int32_t indexes[UPROPS_INDEX_COUNT]={0x2e8e,0x2e8e,0x2e8e,0x2e8e,0x6daa,3,0x8637,0x86d4,0x8e66,0x8e66,0xa00cf,0x2f75a31,0x152,0,0,0}; #endif // INCLUDED_FROM_UCHAR_C diff --git a/icu4c/source/common/uprops.cpp b/icu4c/source/common/uprops.cpp index c87eeff3810e..3ce01e894372 100644 --- a/icu4c/source/common/uprops.cpp +++ b/icu4c/source/common/uprops.cpp @@ -544,6 +544,14 @@ static int32_t biDiGetMaxValue(const IntProperty &/*prop*/, UProperty which) { return ubidi_getMaxValue(which); } +static int32_t getBlock(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) { + return (int32_t)ublock_getCode(c); +} + +static int32_t blockGetMaxValue(const IntProperty &/*prop*/, UProperty /*which*/) { + return uprv_getMaxValues(UPROPS_MAX_VALUES_OTHER_INDEX) & UPROPS_MAX_BLOCK; +} + #if UCONFIG_NO_NORMALIZATION static int32_t getCombiningClass(const IntProperty &, UChar32, UProperty) { return 0; @@ -683,7 +691,7 @@ static const IntProperty intProps[UCHAR_INT_LIMIT-UCHAR_INT_START]={ * For them, column is the UPropertySource value. */ { UPROPS_SRC_BIDI, 0, 0, getBiDiClass, biDiGetMaxValue }, - { 0, UPROPS_BLOCK_MASK, UPROPS_BLOCK_SHIFT, defaultGetValue, defaultGetMaxValue }, + { UPROPS_SRC_BLOCK, 0, 0, getBlock, blockGetMaxValue }, { UPROPS_SRC_NFC, 0, 0xff, getCombiningClass, getMaxValueFromShift }, { 2, UPROPS_DT_MASK, 0, defaultGetValue, defaultGetMaxValue }, { 0, UPROPS_EA_MASK, UPROPS_EA_SHIFT, defaultGetValue, defaultGetMaxValue }, diff --git a/icu4c/source/common/uprops.h b/icu4c/source/common/uprops.h index bcae38056da4..065b4bcaf250 100644 --- a/icu4c/source/common/uprops.h +++ b/icu4c/source/common/uprops.h @@ -39,16 +39,18 @@ enum { UPROPS_SCRIPT_EXTENSIONS_INDEX, - UPROPS_RESERVED_INDEX_7, + UPROPS_BLOCK_TRIE_INDEX, UPROPS_RESERVED_INDEX_8, - /* size of the data file (number of 32-bit units after the header) */ + /** size of the data file (number of 32-bit units after the header) */ UPROPS_DATA_TOP_INDEX, - /* maximum values for code values in vector word 0 */ + /** maximum values for code values in vector word 0 */ UPROPS_MAX_VALUES_INDEX=10, - /* maximum values for code values in vector word 2 */ + /** maximum values for code values in vector word 2 */ UPROPS_MAX_VALUES_2_INDEX, + /** maximum values for other code values */ + UPROPS_MAX_VALUES_OTHER_INDEX, UPROPS_INDEX_COUNT=16 }; @@ -117,6 +119,7 @@ enum { /* number of properties vector words */ #define UPROPS_VECTOR_WORDS 3 +// TODO: merge scx+Script bit sets together /* * Properties in vector word 0 * Bits @@ -129,7 +132,7 @@ enum { * 0: Script=bits 21..20 & 7..0 * 21..20 Bits 9..8 of the UScriptCode, or index to Script_Extensions * 19..17 East Asian Width - * 16.. 8 UBlockCode + * 16.. 8 reserved since format version 9; was UBlockCode * 7.. 0 UScriptCode, or index to Script_Extensions */ @@ -150,8 +153,8 @@ enum { #define UPROPS_EA_MASK 0x000e0000 #define UPROPS_EA_SHIFT 17 -#define UPROPS_BLOCK_MASK 0x0001ff00 -#define UPROPS_BLOCK_SHIFT 8 +// fine UPROPS_BLOCK_MASK 0x0001ff00 +// fine UPROPS_BLOCK_SHIFT 8 #define UPROPS_SCRIPT_LOW_MASK 0x000000ff @@ -319,6 +322,17 @@ inline constexpr uint8_t uprops_idTypeToEncoded[] = { #define UPROPS_DT_MASK 0x0000001f +#ifdef __cplusplus + +namespace { + +// Bits 9..0 in UPROPS_MAX_VALUES_OTHER_INDEX +inline constexpr uint32_t UPROPS_MAX_BLOCK = 0x3ff; + +} // namespace + +#endif // __cplusplus + /** * Gets the main properties value for a code point. * Implemented in uchar.c for uprops.cpp. @@ -392,6 +406,8 @@ enum { ZWNBSP =0xfeff }; +// TODO: Move these two functions into a different header file (new unames.h?) so that uprops.h +// need not be C-compatible any more. /** * Get the maximum length of a (regular/1.0/extended) character name. * @return 0 if no character names available. @@ -445,6 +461,7 @@ enum UPropertySource { UPROPS_SRC_EMOJI, UPROPS_SRC_IDSU, UPROPS_SRC_ID_COMPAT_MATH, + UPROPS_SRC_BLOCK, /** One more than the highest UPropertySource (UPROPS_SRC_) constant. */ UPROPS_SRC_COUNT }; @@ -476,6 +493,13 @@ upropsvec_addPropertyStarts(const USetAdder *sa, UErrorCode *pErrorCode); U_CFUNC void U_EXPORT2 uprops_addPropertyStarts(UPropertySource src, const USetAdder *sa, UErrorCode *pErrorCode); +#ifdef __cplusplus + +U_CFUNC void U_EXPORT2 +ublock_addPropertyStarts(const USetAdder *sa, UErrorCode &errorCode); + +#endif // __cplusplus + /** * Return a set of characters for property enumeration. * For each two consecutive characters (start, limit) in the set, @@ -488,6 +512,8 @@ uprops_addPropertyStarts(UPropertySource src, const USetAdder *sa, UErrorCode *p uprv_getInclusions(const USetAdder *sa, UErrorCode *pErrorCode); */ +// TODO: Move this into a different header file (udataswp.h? new unames.h?) so that uprops.h +// need not be C-compatible any more. /** * Swap the ICU Unicode character names file. See uchar.c. * @internal diff --git a/icu4c/source/data/in/uprops.icu b/icu4c/source/data/in/uprops.icu index 9014ab4adb23..39a02b5a587c 100644 Binary files a/icu4c/source/data/in/uprops.icu and b/icu4c/source/data/in/uprops.icu differ diff --git a/icu4c/source/data/unidata/changes.txt b/icu4c/source/data/unidata/changes.txt index 35474395b6a6..e151341e253a 100644 --- a/icu4c/source/data/unidata/changes.txt +++ b/icu4c/source/data/unidata/changes.txt @@ -72,7 +72,7 @@ export CLDR_SRC=~/cldr/uni/src export ICU_ROOT=~/icu/uni export ICU_SRC=$ICU_ROOT/src export ICU_OUT=$ICU_ROOT/dbg -export ICUDT=icudt75b +export ICUDT=icudt76b export ICU4C_DATA_IN=$ICU_SRC/icu4c/source/data/in export ICU4C_UNIDATA=$ICU_SRC/icu4c/source/data/unidata export LD_LIBRARY_PATH=$ICU_OUT/icu4c/lib @@ -86,7 +86,7 @@ export CLDR_SRC=~/oss/cldr/mine/src export ICU_ROOT=~/oss/icu export ICU_SRC=$ICU_ROOT export ICU_OUT=$ICU_ROOT -export ICUDT=icudt75b +export ICUDT=icudt76b export ICU4C_DATA_IN=$ICU_SRC/icu4c/source/data/in export ICU4C_UNIDATA=$ICU_SRC/icu4c/source/data/unidata export LD_LIBRARY_PATH=$ICU_OUT/icu4c/lib @@ -326,14 +326,14 @@ TODO output: ... make[1]: Entering directory '/usr/local/google/home/mscherer/icu/uni/dbg/icu4c/data' - mkdir -p ./out/icu4j/com/ibm/icu/impl/data/icudt75b - mkdir -p ./out/icu4j/tzdata/com/ibm/icu/impl/data/icudt75b - LD_LIBRARY_PATH=../lib:../stubdata:../tools/ctestfw:$LD_LIBRARY_PATH ../bin/icupkg ./out/tmp/icudt75l.dat ./out/icu4j/icudt75b.dat -s ./out/build/icudt75l -x '*' -tb -d ./out/icu4j/com/ibm/icu/impl/data/icudt75b - mv ./out/icu4j/"com/ibm/icu/impl/data/icudt75b/zoneinfo64.res" ./out/icu4j/"com/ibm/icu/impl/data/icudt75b/metaZones.res" ./out/icu4j/"com/ibm/icu/impl/data/icudt75b/timezoneTypes.res" ./out/icu4j/"com/ibm/icu/impl/data/icudt75b/windowsZones.res" "./out/icu4j/tzdata/com/ibm/icu/impl/data/icudt75b" - jar cf ./out/icu4j/icudata.jar -C ./out/icu4j com/ibm/icu/impl/data/icudt75b/ + mkdir -p ./out/icu4j/com/ibm/icu/impl/data/icudt76b + mkdir -p ./out/icu4j/tzdata/com/ibm/icu/impl/data/icudt76b + LD_LIBRARY_PATH=../lib:../stubdata:../tools/ctestfw:$LD_LIBRARY_PATH ../bin/icupkg ./out/tmp/icudt76l.dat ./out/icu4j/icudt76b.dat -s ./out/build/icudt76l -x '*' -tb -d ./out/icu4j/com/ibm/icu/impl/data/icudt76b + mv ./out/icu4j/"com/ibm/icu/impl/data/icudt76b/zoneinfo64.res" ./out/icu4j/"com/ibm/icu/impl/data/icudt76b/metaZones.res" ./out/icu4j/"com/ibm/icu/impl/data/icudt76b/timezoneTypes.res" ./out/icu4j/"com/ibm/icu/impl/data/icudt76b/windowsZones.res" "./out/icu4j/tzdata/com/ibm/icu/impl/data/icudt76b" + jar cf ./out/icu4j/icudata.jar -C ./out/icu4j com/ibm/icu/impl/data/icudt76b/ mkdir -p /tmp/icu4j/main/shared/data cp ./out/icu4j/icudata.jar /tmp/icu4j/main/shared/data - jar cf ./out/icu4j/icutzdata.jar -C ./out/icu4j/tzdata com/ibm/icu/impl/data/icudt75b/ + jar cf ./out/icu4j/icutzdata.jar -C ./out/icu4j/tzdata com/ibm/icu/impl/data/icudt76b/ mkdir -p /tmp/icu4j/main/shared/data cp ./out/icu4j/icutzdata.jar /tmp/icu4j/main/shared/data make[1]: Leaving directory '/usr/local/google/home/mscherer/icu/uni/dbg/icu4c/data' @@ -343,8 +343,8 @@ TODO cp -v com/ibm/icu/impl/data/$ICUDT/brkitr/* $ICU_SRC/icu4j/main/core/src/main/resources/com/ibm/icu/impl/data/$ICUDT/brkitr cp -v com/ibm/icu/impl/data/$ICUDT/confusables.cfu $ICU_SRC/icu4j/main/core/src/main/resources/com/ibm/icu/impl/data/$ICUDT cp -v com/ibm/icu/impl/data/$ICUDT/*.nrm $ICU_SRC/icu4j/main/core/src/main/resources/com/ibm/icu/impl/data/$ICUDT - cd com/ibm/icu/impl/data/$ICUDT/ - ls *.icu | egrep -v "cnvalias.icu" | awk '{print "cp " $0 " $ICU_SRC/icu4j/main/core/src/main/resources/com/ibm/icu/impl/data/$ICUDT";}' | sh + cd com/ibm/icu/impl/data/icudata/ + ls *.icu | egrep -v "cnvalias.icu" | awk '{print "cp " $0 " $ICU_SRC/icu4j/main/core/src/main/resources/com/ibm/icu/impl/data/icudata";}' | sh - The procedure above is very conservative: It refreshes only the parts of the ICU4J data that we think are affected by a Unicode data update. It avoids dealing with any other discrepancies diff --git a/icu4c/source/test/cintltst/udatatst.c b/icu4c/source/test/cintltst/udatatst.c index 0a10ddd0b5f6..548971b17df0 100644 --- a/icu4c/source/test/cintltst/udatatst.c +++ b/icu4c/source/test/cintltst/udatatst.c @@ -46,6 +46,7 @@ #include "ucol_imp.h" #include "ucol_swp.h" #include "ucnv_bld.h" +#include "udataswp.h" #include "sprpimpl.h" #include "rbbidata.h" diff --git a/icu4c/source/test/depstest/dependencies.txt b/icu4c/source/test/depstest/dependencies.txt index 200c806e885e..7e23ce700bf6 100644 --- a/icu4c/source/test/depstest/dependencies.txt +++ b/icu4c/source/test/depstest/dependencies.txt @@ -440,7 +440,7 @@ group: script_runs group: uchar uchar.o deps - utrie2 + ucptrie utrie2 group: messagepattern # for MessageFormat and tools messagepattern.o diff --git a/icu4c/source/tools/toolutil/swapimpl.cpp b/icu4c/source/tools/toolutil/swapimpl.cpp index 678c2bf07024..6c5f6d94b0db 100644 --- a/icu4c/source/tools/toolutil/swapimpl.cpp +++ b/icu4c/source/tools/toolutil/swapimpl.cpp @@ -296,13 +296,21 @@ uprops_swap(const UDataSwapper *ds, // SCX const uint16_t scriptExtensions[2*(i7-i6)]; ds->swapArray16(ds, inData32+dataIndexes[UPROPS_SCRIPT_EXTENSIONS_INDEX], - 4*(dataIndexes[UPROPS_RESERVED_INDEX_7]-dataIndexes[UPROPS_SCRIPT_EXTENSIONS_INDEX]), + 4*(dataIndexes[UPROPS_BLOCK_TRIE_INDEX]-dataIndexes[UPROPS_SCRIPT_EXTENSIONS_INDEX]), outData32+dataIndexes[UPROPS_SCRIPT_EXTENSIONS_INDEX], pErrorCode); + + // Swap the Block UCPTrie=CodePointTrie. + int32_t partOffset = dataIndexes[UPROPS_BLOCK_TRIE_INDEX]; + int32_t nextOffset = dataIndexes[UPROPS_RESERVED_INDEX_8]; + int32_t partLength = 4 * (nextOffset - partOffset); + if (partLength >= 0) { + utrie_swapAnyVersion(ds, inData32 + partOffset, partLength, + outData32 + partOffset, pErrorCode); + } } - /* i7 reservedIndex7; -- 32-bit unit index to the top of the Script_Extensions data */ - return headerSize+4*dataIndexes[UPROPS_RESERVED_INDEX_7]; + return headerSize+4*dataIndexes[UPROPS_RESERVED_INDEX_8]; } /* Unicode case mapping data swapping --------------------------------------- */ diff --git a/icu4j/main/core/src/main/java/com/ibm/icu/impl/CharacterPropertiesImpl.java b/icu4j/main/core/src/main/java/com/ibm/icu/impl/CharacterPropertiesImpl.java index 14e2ab4ff4e4..3860cda97100 100644 --- a/icu4j/main/core/src/main/java/com/ibm/icu/impl/CharacterPropertiesImpl.java +++ b/icu4j/main/core/src/main/java/com/ibm/icu/impl/CharacterPropertiesImpl.java @@ -82,6 +82,9 @@ private static UnicodeSet getInclusionsForSource(int src) { case UCharacterProperty.SRC_ID_COMPAT_MATH: UCharacterProperty.mathCompat_addPropertyStarts(incl); break; + case UCharacterProperty.SRC_BLOCK: + UCharacterProperty.INSTANCE.ublock_addPropertyStarts(incl); + break; default: throw new IllegalStateException("getInclusions(unknown src " + src + ")"); } diff --git a/icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterProperty.java b/icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterProperty.java index ab225a93a289..77771297429e 100644 --- a/icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterProperty.java +++ b/icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterProperty.java @@ -114,8 +114,9 @@ public final class UCharacterProperty public static final int SRC_EMOJI=15; public static final int SRC_IDSU=16; public static final int SRC_ID_COMPAT_MATH=17; + public static final int SRC_BLOCK=18; /** One more than the highest UPropertySource (SRC_) constant. */ - public static final int SRC_COUNT=18; + public static final int SRC_COUNT=19; private static final class LayoutProps { private static final class IsAcceptable implements ICUBinary.Authenticate { @@ -736,7 +737,24 @@ int getValue(int c) { return UBiDiProps.INSTANCE.getClass(c); } }, - new IntProperty(0, BLOCK_MASK_, BLOCK_SHIFT_), + new IntProperty(SRC_BLOCK) { // BLOCK + @Override + int getValue(int c) { + // We store Block values indexed by the code point shifted right 4 bits + // and use a "small" UCPTrie=CodePointTrie for minimal data size. + // This works because blocks have xxx0..xxxF ranges. + int c4 = c; + // Shift unless out of range, in which case we fetch the trie's error value. + if (c4 <= 0x10ffff) { + c4 >>= 4; + } + return m_blockTrie_.get(c4); + } + @Override + int getMaxValue(int which) { + return m_maxValuesOther_ & MAX_BLOCK; + } + }, new CombiningClassIntProperty(SRC_NFC) { // CANONICAL_COMBINING_CLASS @Override int getValue(int c) { @@ -1273,13 +1291,17 @@ public double getUnicodeNumericValue(int c) { * Maximum values for script, bits used as in vector word * 0 */ - int m_maxJTGValue_; + int m_maxJTGValue_; + /** maximum values for other code values */ + int m_maxValuesOther_; /** * Script_Extensions data */ public char[] m_scriptExtensions_; + CodePointTrie m_blockTrie_; + // private variables ------------------------------------------------- /** @@ -1346,7 +1368,8 @@ private static final int ntvGetType(int ntv) { /* * Properties in vector word 0 * Bits - * 31..24 DerivedAge version major/minor one nibble each + * 31..26 Age major version (0..63) + * 25..24 Age minor version (0..3) * 23..22 3..1: Bits 21..20 & 7..0 = Script_Extensions index * 3: Script value from Script_Extensions * 2: Script=Inherited @@ -1354,7 +1377,7 @@ private static final int ntvGetType(int ntv) { * 0: Script=bits 21..20 & 7..0 * 21..20 Bits 9..8 of the UScriptCode, or index to Script_Extensions * 19..17 East Asian Width - * 16.. 8 UBlockCode + * 16.. 8 reserved since format version 9; was UBlockCode * 7.. 0 UScriptCode, or index to Script_Extensions */ @@ -1381,16 +1404,6 @@ private static final int ntvGetType(int ntv) { * Equivalent to icu4c UPROPS_EA_SHIFT */ private static final int EAST_ASIAN_SHIFT_ = 17; - /** - * Integer properties mask and shift values for blocks. - * Equivalent to icu4c UPROPS_BLOCK_MASK - */ - private static final int BLOCK_MASK_ = 0x0001ff00; - /** - * Integer properties mask and shift values for blocks. - * Equivalent to icu4c UPROPS_BLOCK_SHIFT - */ - private static final int BLOCK_SHIFT_ = 8; /** * Integer properties mask and shift values for scripts. * Equivalent to icu4c UPROPS_SHIFT_LOW_MASK. @@ -1549,6 +1562,8 @@ public static final int mergeScriptCodeOrIndex(int scriptX) { */ private static final int AGE_SHIFT_ = 24; + // Bits 9..0 in UPROPS_MAX_VALUES_OTHER_INDEX + private static final int MAX_BLOCK = 0x3ff; // private constructors -------------------------------------------------- @@ -1577,12 +1592,13 @@ private UCharacterProperty() throws IOException int additionalVectorsOffset = bytes.getInt(); m_additionalColumnsCount_ = bytes.getInt(); int scriptExtensionsOffset = bytes.getInt(); - int reservedOffset7 = bytes.getInt(); - /* reservedOffset8 = */ bytes.getInt(); + int blockTrieOffset = bytes.getInt(); + int reservedOffset8 = bytes.getInt(); /* dataTopOffset = */ bytes.getInt(); m_maxBlockScriptValue_ = bytes.getInt(); m_maxJTGValue_ = bytes.getInt(); - ICUBinary.skipBytes(bytes, (16 - 12) << 2); + m_maxValuesOther_ = bytes.getInt(); + ICUBinary.skipBytes(bytes, (16 - 13) << 2); // read the main properties trie m_trie_ = Trie2_16.createFromSerialized(bytes); @@ -1614,10 +1630,20 @@ private UCharacterProperty() throws IOException } // Script_Extensions - int numChars = (reservedOffset7 - scriptExtensionsOffset) * 2; + int numChars = (blockTrieOffset - scriptExtensionsOffset) * 2; if(numChars > 0) { m_scriptExtensions_ = ICUBinary.getChars(bytes, numChars, 0); } + + // Read the blockTrie. + int partLength = (reservedOffset8 - blockTrieOffset) * 4; + int triePosition = bytes.position(); + m_blockTrie_ = CodePointTrie.fromBinary(null, CodePointTrie.ValueWidth.BITS_16, bytes); + trieLength = bytes.position() - triePosition; + if (trieLength > partLength) { + throw new ICUUncheckedIOException("uprops.icu: not enough bytes for blockTrie"); + } + ICUBinary.skipBytes(bytes, partLength - trieLength); // skip padding after trie bytes } private static final class IsAcceptable implements ICUBinary.Authenticate { @@ -1794,6 +1820,19 @@ static void mathCompat_addPropertyStarts(UnicodeSet set) { } } + public void ublock_addPropertyStarts(UnicodeSet set) { + // Add the start code point of each same-value range of the trie. + // We store Block values indexed by the code point shifted right 4 bits; + // see ublock_getCode(). + CodePointMap.Range range = new CodePointMap.Range(); + int start = 0; + while (start < 0x11000 && // limit: (max code point + 1) >> 4 + m_blockTrie_.getRange(start, null, range)) { + set.add(start << 4); + start = range.getEnd() + 1; + } + } + public boolean hasIDType(int c, int typeIndex) { if (typeIndex < 0 || typeIndex >= idTypeToEncoded.length) { return false; diff --git a/icu4j/main/core/src/main/resources/com/ibm/icu/impl/data/icudata/uprops.icu b/icu4j/main/core/src/main/resources/com/ibm/icu/impl/data/icudata/uprops.icu index 917f70e683df..9313463b2a3e 100644 Binary files a/icu4j/main/core/src/main/resources/com/ibm/icu/impl/data/icudata/uprops.icu and b/icu4j/main/core/src/main/resources/com/ibm/icu/impl/data/icudata/uprops.icu differ diff --git a/tools/unicode/c/genprops/corepropsbuilder.cpp b/tools/unicode/c/genprops/corepropsbuilder.cpp index c689ce17e98f..c22d6638baa1 100644 --- a/tools/unicode/c/genprops/corepropsbuilder.cpp +++ b/tools/unicode/c/genprops/corepropsbuilder.cpp @@ -22,7 +22,9 @@ #include #include "unicode/utypes.h" #include "unicode/uchar.h" +#include "unicode/ucptrie.h" #include "unicode/udata.h" +#include "unicode/umutablecptrie.h" #include "unicode/uniset.h" #include "unicode/unistr.h" #include "unicode/usetiter.h" @@ -81,13 +83,14 @@ Formally, the file contains the following structures: i5 additionalVectorsColumns; -- number of 32-bit words per properties vector i6 scriptExtensionsIndex; -- 32-bit unit index to the Script_Extensions data - i7 reservedIndex7; -- 32-bit unit index to the top of the Script_Extensions data - i8 reservedIndex8; -- for now: i7, i8 and i9 have the same values + i7 blockTrieIndex; -- 32-bit unit index to the Block property trie (format version 9+) + i8 reservedIndex8; -- top of the previous part of the data; i8 and i9 have the same values i9 dataTopIndex; -- size of the data file (number of 32-bit units after the header) i10 maxValues; -- maximum code values for vector word 0, see uprops.h (new in format version 3.1+) i11 maxValues2; -- maximum code values for vector word 2, see uprops.h (new in format version 3.2) - i12..i15 reservedIndexes; -- reserved values; 0 for now + i12 maxValuesOther; -- additional maximum values, see uprops.h (format version 9+) + i13..i15 reservedIndexes; -- reserved values; 0 for now PT serialized properties trie, see utrie2.h (byte size: 4*(i0-16)) @@ -114,6 +117,10 @@ Formally, the file contains the following structures: vs. another value (and the index is to a pair). (See UPROPS_SCRIPT_X_WITH_COMMON etc. in uprops.h.) + blockTrie serialized CodePointTrie/UCPTrie for the Block property (format version 9+) + + Indexed by (code point >> 4). Takes advantage of each Block having xxx0..xxxF boundaries. + Trie lookup and properties: In order to condense the data for the 21-bit code space, several properties of @@ -299,6 +306,10 @@ ICU 75 uses the vector word 2 bits 31..26 for encoded Identifier_Type bit sets. Age major:minor version bit fields changed from 4:4 to 6:2 so that age=16.0 fits. +Block data moved from props vector 0 into its own new CodePointTrie. +Reserve 10 bits in the new indexes[UPROPS_MAX_VALUES_OTHER_INDEX] for the max Block value, +although the trie can hold 16-bit values. + ----------------------------------------------------------------------------- */ U_NAMESPACE_USE @@ -343,7 +354,11 @@ class CorePropsBuilder : public PropsBuilder { UTrie2 *pTrie; UTrie2 *props2Trie; UPropsVectors *pv; + UMutableCPTrie *mutableBlockTrie = nullptr; + UCPTrie *blockTrie = nullptr; UnicodeString scriptExtensions; + uint8_t blockTrieBytes[100000]; + int32_t blockTrieSize = 0; }; CorePropsBuilder::CorePropsBuilder(UErrorCode &errorCode) @@ -358,12 +373,19 @@ CorePropsBuilder::CorePropsBuilder(UErrorCode &errorCode) fprintf(stderr, "genprops error: corepropsbuilder upvec_open() failed - %s\n", u_errorName(errorCode)); } + mutableBlockTrie = umutablecptrie_open(0, 0, &errorCode); + if (U_FAILURE(errorCode)) { + fprintf(stderr, "genprops/Block error: umutablecptrie_open() failed: %s\n", + u_errorName(errorCode)); + } } CorePropsBuilder::~CorePropsBuilder() { utrie2_close(pTrie); utrie2_close(props2Trie); upvec_close(pv); + umutablecptrie_close(mutableBlockTrie); + ucptrie_close(blockTrie); } void @@ -693,7 +715,6 @@ struct PropToEnum { const PropToEnum propToEnums[]={ - { UCHAR_BLOCK, 0, UPROPS_BLOCK_SHIFT, UPROPS_BLOCK_MASK }, { UCHAR_EAST_ASIAN_WIDTH, 0, UPROPS_EA_SHIFT, UPROPS_EA_MASK }, { UCHAR_DECOMPOSITION_TYPE, 2, 0, UPROPS_DT_MASK }, { UCHAR_GRAPHEME_CLUSTER_BREAK, 2, UPROPS_GCB_SHIFT, UPROPS_GCB_MASK }, @@ -755,6 +776,16 @@ CorePropsBuilder::setProps(const UniProps &props, const UnicodeSet &newValues, 0, version< UPROPS_MAX_BLOCK) { + fprintf(stderr, "genprops error: %04lX..%04lX Block 0x%x cannot be encoded\n", + (long)start, (long)end, (int)value); + errorCode = U_ILLEGAL_ARGUMENT_ERROR; + return; + } + umutablecptrie_setRange(mutableBlockTrie, start >> 4, end >> 4, value, &errorCode); + } // Set the script value if the Script_Extensions revert to {Script}. // Otherwise we would have to duplicate the code for doing so. @@ -895,6 +926,24 @@ CorePropsBuilder::build(UErrorCode &errorCode) { scriptExtensions.append((char16_t)0); } + blockTrie = umutablecptrie_buildImmutable( + mutableBlockTrie, UCPTRIE_TYPE_SMALL, UCPTRIE_VALUE_BITS_16, &errorCode); + if (U_FAILURE(errorCode)) { + fprintf(stderr, + "genprops/Block error: umutablecptrie_buildImmutable() failed: %s\n", + u_errorName(errorCode)); + return; + } + blockTrieSize = ucptrie_toBinary(blockTrie, + blockTrieBytes, sizeof(blockTrieBytes), &errorCode); + if (U_FAILURE(errorCode)) { + fprintf(stderr, + "genprops/Block error: ucptrie_toBinary() failed: %s (length %ld)\n", + u_errorName(errorCode), (long)trieSize); + return; + } + U_ASSERT((blockTrieSize & 3) == 0); // multiple of 4 bytes + /* set indexes */ int32_t offset=sizeof(indexes)/4; /* uint32_t offset to the properties trie */ offset+=trieSize>>2; @@ -909,14 +958,14 @@ CorePropsBuilder::build(UErrorCode &errorCode) { offset+=pvCount; indexes[UPROPS_SCRIPT_EXTENSIONS_INDEX]=offset; offset+=scriptExtensions.length()/2; - indexes[UPROPS_RESERVED_INDEX_7]=offset; + indexes[UPROPS_BLOCK_TRIE_INDEX]=offset; + offset+=blockTrieSize/4; indexes[UPROPS_RESERVED_INDEX_8]=offset; indexes[UPROPS_DATA_TOP_INDEX]=offset; totalSize=4*offset; indexes[UPROPS_MAX_VALUES_INDEX]= (((int32_t)U_EA_COUNT-1)<