From 0d8a3ccd111b35a295a571db1f5c79cd20525b6d Mon Sep 17 00:00:00 2001 From: Markus Scherer Date: Fri, 31 May 2024 16:12:16 -0700 Subject: [PATCH] ICU-22785 move Block bits from propsvec0 to new trie --- icu4c/source/common/characterproperties.cpp | 3 + icu4c/source/common/uchar.cpp | 28 +- icu4c/source/common/uchar_props_data.h | 5213 +++++++++-------- icu4c/source/common/uprops.cpp | 10 +- icu4c/source/common/uprops.h | 40 +- icu4c/source/data/in/uprops.icu | Bin 146708 -> 145848 bytes icu4c/source/data/unidata/changes.txt | 20 +- icu4c/source/test/cintltst/udatatst.c | 1 + icu4c/source/test/depstest/dependencies.txt | 2 +- icu4c/source/tools/toolutil/swapimpl.cpp | 14 +- .../ibm/icu/impl/CharacterPropertiesImpl.java | 3 + .../com/ibm/icu/impl/UCharacterProperty.java | 77 +- .../com/ibm/icu/impl/data/icudata/uprops.icu | Bin 146720 -> 145856 bytes tools/unicode/c/genprops/corepropsbuilder.cpp | 67 +- 14 files changed, 2864 insertions(+), 2614 deletions(-) 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 9014ab4adb233c6d79eb1199b62346b597cc46bb..39a02b5a587c68e04c4be5fc325f355dcc395de2 100644 GIT binary patch literal 145848 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 QArX1~3FHm3uxKs+8)aJy&j0`b literal 146708 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, 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 917f70e683df4fbf903d2c1aa1d76616176163d0..9313463b2a3e08bea8cbebc96578c0283be48ee0 100644 GIT binary patch literal 145856 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 aEty5~3Fb6v7pFygnDfl}$vHQx|Nbw1m6V16 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)<